├── .coveragerc ├── .travis.yml ├── CHANGELOG ├── CONTRIBUTORS ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile └── source │ ├── _templates │ └── page.html │ ├── api.rst │ ├── command.rst │ ├── conf.py │ ├── guide.rst │ ├── guide_content │ └── index.rst ├── magic ├── __init__.py ├── api.py ├── command.py ├── compatability.py ├── flags.py ├── identify.py └── version.py ├── requirements ├── development.txt └── production.txt ├── setup.py └── tests ├── __init__.py ├── magic └── python └── test_magic.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/.coveragerc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/docs/source/_templates/page.html -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/docs/source/command.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/docs/source/guide.rst -------------------------------------------------------------------------------- /docs/source/guide_content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/docs/source/guide_content -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /magic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/magic/__init__.py -------------------------------------------------------------------------------- /magic/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/magic/api.py -------------------------------------------------------------------------------- /magic/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/magic/command.py -------------------------------------------------------------------------------- /magic/compatability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/magic/compatability.py -------------------------------------------------------------------------------- /magic/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/magic/flags.py -------------------------------------------------------------------------------- /magic/identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/magic/identify.py -------------------------------------------------------------------------------- /magic/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.6" 2 | -------------------------------------------------------------------------------- /requirements/development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/requirements/development.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/magic/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/tests/magic/python -------------------------------------------------------------------------------- /tests/test_magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliles/filemagic/HEAD/tests/test_magic.py --------------------------------------------------------------------------------