Sophie

Sophie

distrib > Mageia > 6 > i586 > media > core-release > by-pkgid > f3ffe88f628bd4bf572dd3539641804a > files > 7

python-magic-5.25-5.mga6.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()