003 File Manager
Current Path:
/usr/src/contrib/file/python
usr
/
src
/
contrib
/
file
/
python
/
📁
..
📄
CHANGELOG.md
(402 B)
📄
LICENSE
(1.4 KB)
📄
Makefile.am
(87 B)
📄
Makefile.in
(11.92 KB)
📄
README.md
(584 B)
📄
example.py
(207 B)
📄
magic.py
(8.24 KB)
📄
setup.py
(824 B)
📄
tests.py
(964 B)
Editing: 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()
Upload File
Create Folder