HOME


5h-3LL 1.0
DIR: /usr/share/doc/python3-file-magic
/usr/share/doc/python3-file-magic/
Upload File:
Current File : /usr/share/doc/python3-file-magic/example.py
#! /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()