diff options
author | delphij <delphij@FreeBSD.org> | 2014-07-11 00:00:00 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2014-07-11 00:00:00 +0000 |
commit | a8fc83ae7c6014d3e0809848ce57e6dbd9e6b430 (patch) | |
tree | 942bc382f7aca8fc1809046d5db53f7a55fae1f0 /contrib/file/python/example.py | |
parent | 8674b3c2aa3ad356a99168b86179e3ae4d898506 (diff) | |
download | FreeBSD-src-a8fc83ae7c6014d3e0809848ce57e6dbd9e6b430.zip FreeBSD-src-a8fc83ae7c6014d3e0809848ce57e6dbd9e6b430.tar.gz |
MFC r267897: MFV r267843:
Update file/libmagic to 5.19.
Diffstat (limited to 'contrib/file/python/example.py')
-rw-r--r-- | contrib/file/python/example.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/file/python/example.py b/contrib/file/python/example.py new file mode 100644 index 0000000..0cd0b5e --- /dev/null +++ b/contrib/file/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() |