aliles / filemagic

File type identification using libmagic
http://pypi.python.org/pypi/filemagic
Other
47 stars 10 forks source link

filemagic

filemagic is a ctypes wrapper for libmagic <http://www.darwinsys.com/file/>_, the library that supports the file command on most Unix systems. The package provides a simple Python API for identifying files using the extensive database of magic strings that ships with libmagic.

filemagic has been tested against libmagic 5.11. It supports both Python2 and Python3, as well as CPython and PyPy.

|build_status| |coverage| |pypi_version|

Example

Below is a short snippet of code showing how to use filemagic to identifying this README file. ::

>>> import magic
>>> with magic.Magic() as m:
...     m.id_filename('setup.py')
...
'ASCII text'

It is recommended that magic.Magic be used with a context manager (the with statement) to avoid leaking resources from libmagic when instances go out of scope. Otherwise the close() method must be called explicitly.

Further Reading

Refer to the filemagic documenation <http://filemagic.readthedocs.org>_ for further references.

.. |build_status| image:: https://secure.travis-ci.org/aliles/filemagic.png?branch=master :target: http://travis-ci.org/#!/aliles/filemagic :alt: Current build status

.. |coverage| image:: https://coveralls.io/repos/aliles/filemagic/badge.png?branch=master :target: https://coveralls.io/r/aliles/filemagic?branch=master :alt: Coverage status

.. |pypi_version| image:: https://pypip.in/v/filemagic/badge.png :target: https://crate.io/packages/filemagic/ :alt: Latest PyPI version