Home | History | Annotate | only in /src/external/bsd/file/dist/python
Up to higher level directory
NameDateSize
CHANGELOG.md24-Sep-2022495
example.py12-May-2011207
file_magic/25-Feb-2026
LICENSE18-Oct-20181.4K
magic.py24-Sep-202210.4K
Makefile.am24-Sep-2022110
Makefile.in18-Aug-202312.1K
README.md18-Oct-2018584
setup.py18-Oct-2018824
tests.py24-Sep-2022983

README.md

      1 # `file-magic`: Python Bindings
      2 
      3 This library is a Python ctypes interface to `libmagic`.
      4 
      5 
      6 ## Installing
      7 
      8 You 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 
     29 To run the tests:
     30 
     31     python setup.py test
     32