From a8fc83ae7c6014d3e0809848ce57e6dbd9e6b430 Mon Sep 17 00:00:00 2001 From: delphij Date: Fri, 11 Jul 2014 00:00:00 +0000 Subject: MFC r267897: MFV r267843: Update file/libmagic to 5.19. --- contrib/file/python/example.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 contrib/file/python/example.py (limited to 'contrib/file/python/example.py') 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() -- cgit v1.1