Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > e60e46106581e33847f5e8ad9c351d17 > files > 7

python-magic-5.16-1.10.mga4.noarch.rpm

#! /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()