diff options
author | delphij <delphij@FreeBSD.org> | 2014-06-24 21:24:48 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2014-06-24 21:24:48 +0000 |
commit | 02573f2d7154bbe159ba99728d5db9be8a29bd9b (patch) | |
tree | ead59ace1b329d9a88b559f04c98f06ac67556a6 /python/example.py | |
parent | 15f98df7891f1853090ecb6c4a9cc734e671ef6b (diff) | |
download | FreeBSD-src-02573f2d7154bbe159ba99728d5db9be8a29bd9b.zip FreeBSD-src-02573f2d7154bbe159ba99728d5db9be8a29bd9b.tar.gz |
Vendor import of file 5.19.
Diffstat (limited to 'python/example.py')
-rw-r--r-- | python/example.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/python/example.py b/python/example.py new file mode 100644 index 0000000..0cd0b5e --- /dev/null +++ b/python/example.py @@ -0,0 +1,17 @@ +#! /usr/bin/python + +import magic + +ms = magic.open(magic.NONE) +ms.load() +tp = ms.file("/bin/ls") +print (tp) + +f = open("/bin/ls", "rb") +buf = f.read(4096) +f.close() + +tp = ms.buffer(buf) +print (tp) + +ms.close() |