Name Date Size #Lines LOC

..22-Aug-2023-

file_magic/H22-Aug-2023-21

CHANGELOG.mdH A D22-Aug-2023495 2213

LICENSEH A D22-Aug-20231.4 KiB2623

Makefile.amH A D22-Aug-2023110 52

Makefile.inH A D22-Aug-202312 KiB447379

README.mdH A D22-Aug-2023584 3218

example.pyH A D22-Aug-2023207 1811

magic.pyH A D22-Aug-20239.8 KiB340266

setup.pyH A D22-Aug-2023824 2821

tests.pyH A D22-Aug-2023964 3322

README.md

1# `file-magic`: Python Bindings
2
3This library is a Python ctypes interface to `libmagic`.
4
5
6## Installing
7
8You can install `file-magic` either with:
9
10    python setup.py install
11    # or
12    easy_install .
13    # or
14    pip install file-magic
15
16
17## Using
18
19    import magic
20
21    detected = magic.detect_from_filename('magic.py')
22    print 'Detected MIME type: {}'.format(detected.mime_type)
23    print 'Detected encoding: {}'.format(detected.encoding)
24    print 'Detected file type name: {}'.format(detected.name)
25
26
27## Developing/Contributing
28
29To run the tests:
30
31    python setup.py test
32