freebsd-skq/python
Eitan Adler ad1ba6e1e0 vendor/file: add 5.34
gpg: Good signature from "Christos Zoulas (personal key)
<christos@zoulas.com>" [unknown]
gpg:                 aka "Christos Zoulas (NetBSD key)
<christos@netbsd.org>" [unknown]

Obtained from:	ftp://ftp.astron.com/pub/file/
2018-07-29 05:53:49 +00:00
..
CHANGELOG.md vendor/file: add 5.34 2018-07-29 05:53:49 +00:00
example.py Vendor import of file 5.19. 2014-06-24 21:24:48 +00:00
LICENSE vendor/file: add 5.34 2018-07-29 05:53:49 +00:00
magic.py vendor/file: add 5.34 2018-07-29 05:53:49 +00:00
Makefile.am vendor/file: add 5.34 2018-07-29 05:53:49 +00:00
Makefile.in vendor/file: add 5.34 2018-07-29 05:53:49 +00:00
README.md vendor/file: add 5.34 2018-07-29 05:53:49 +00:00
setup.py vendor/file: add 5.34 2018-07-29 05:53:49 +00:00
tests.py vendor/file: add 5.34 2018-07-29 05:53:49 +00:00

file-magic: Python Bindings

This library is a Python ctypes interface to libmagic.

Installing

You can install file-magic either with:

python setup.py install
# or
easy_install .
# or
pip install file-magic

Using

import magic

detected = magic.detect_from_filename('magic.py')
print 'Detected MIME type: {}'.format(detected.mime_type)
print 'Detected encoding: {}'.format(detected.encoding)
print 'Detected file type name: {}'.format(detected.name)

Developing/Contributing

To run the tests:

python setup.py test