SkillAgentSearch skills...

Filemagic

File type identification using libmagic

Install / Use

/learn @aliles/Filemagic
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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.

  • Documentation for filemagic is hosted on Read the Docs <http://filemagic.readthedocs.org>_.
  • Packages are hosted by the Python Package Index <http://pypi.python.org/pypi/filemagic>_.

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

View on GitHub
GitHub Stars54
CategoryDevelopment
Updated6mo ago
Forks12

Languages

Python

Security Score

72/100

Audited on Sep 15, 2025

No findings