Obsolete unused backup project such as OK6410
guowenxue
2019-08-02 d304465ae7e95190acc898051acb4d7e4542a794
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import magic
 
ms = magic.open(magic.MAGIC_NONE)
ms.load()
type =  ms.file("/path/to/some/file")
print type
 
f = file("/path/to/some/file", "r")
buffer = f.read(4096)
f.close()
 
type = ms.buffer(buffer)
print type
 
ms.close()