Skip to main content

File type identification using libmagic

Project description

magicfile (A CFFI fork of python-magic)

PyPI version

magicfile is a python interface to the libmagic file type identification library. libmagic identifies file types by checking their headers according to a predefined list of file types. This functionality is exposed to the command line by the Unix command file.

Usage

>>> import magicfile as magic
>>> magic.from_file("testdata/test.pdf")
'PDF document, version 1.2'
>>> magic.from_buffer(open("testdata/test.pdf").read(1024))
'PDF document, version 1.2'
>>> magic.from_file("testdata/test.pdf", mime=True)
'application/pdf'

There is also a Magic class that provides more direct control, including overriding the magic database file and turning on character encoding detection. This is not recommended for general use. In particular, it's not safe for sharing across multiple threads and will fail throw if this is attempted.

>>> f = magic.Magic(uncompress=True)
>>> f.from_file('testdata/test.gz')
'ASCII text (gzip compressed data, was "test", last modified: Sat Jun 28
21:32:52 2008, from Unix)'

You can also combine the flag options:

>>> f = magic.Magic(mime=True, uncompress=True)
>>> f.from_file('testdata/test.gz')
'text/plain'

Versioning

Minor version bumps should be backwards compatible. Major bumps are not.

Name Conflict

There are, sadly, two libraries which use the module name magic. Both have been around for quite a while.If you are using this module and get an error using a method like open, your code is expecting the other one. Hopefully one day these will be reconciled.

Installation

The current stable version of magicfile is available on pypi and can be installed by running pip install magicfile.

Other sources:

Troubleshooting

  • 'MagicException: could not find any magic files!': some installations of libmagic do not correctly point to their magic database file. Try specifying the path to the file explicitly in the constructor: magic.Magic(magic_file="path_to_magic_file").

  • 'WindowsError: [Error 193] %1 is not a valid Win32 application': Attempting to run the 32-bit libmagic DLL in a 64-bit build of python will fail with this error. Here are 64-bit builds of libmagic for windows: https://github.com/pidydx/libmagicwin64

  • 'WindowsError: exception: access violation writing 0x00000000 ' This may indicate you are mixing Windows Python and Cygwin Python. Make sure your libmagic and python builds are consistent.

Author

Written by Adam Hupp in 2001 for a project that never got off the ground. It originally used SWIG for the C library bindings, but switched to ctypes once that was part of the python standard library.

You can contact me via my website or github.

Contributors

Thanks to these folks on github who submitted features and bugfixes.

License

magicfile is distributed under the MIT license. See the included LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

magicfile-0.4.22.tar.gz (303.2 kB view details)

Uploaded Source

Built Distributions

magicfile-0.4.22-cp38-cp38-manylinux1_x86_64.whl (574.6 kB view details)

Uploaded CPython 3.8

magicfile-0.4.22-cp38-cp38-manylinux1_i686.whl (572.7 kB view details)

Uploaded CPython 3.8

magicfile-0.4.22-cp38-cp38-macosx_10_15_x86_64.whl (394.7 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

magicfile-0.4.22-cp38-cp38-macosx_10_13_x86_64.whl (395.1 kB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

magicfile-0.4.22-cp37-cp37m-manylinux1_x86_64.whl (574.2 kB view details)

Uploaded CPython 3.7m

magicfile-0.4.22-cp37-cp37m-manylinux1_i686.whl (572.3 kB view details)

Uploaded CPython 3.7m

magicfile-0.4.22-cp37-cp37m-macosx_10_14_x86_64.whl (394.6 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

magicfile-0.4.22-cp37-cp37m-macosx_10_13_x86_64.whl (395.1 kB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

magicfile-0.4.22-cp36-cp36m-manylinux1_x86_64.whl (574.2 kB view details)

Uploaded CPython 3.6m

magicfile-0.4.22-cp36-cp36m-manylinux1_i686.whl (572.3 kB view details)

Uploaded CPython 3.6m

magicfile-0.4.22-cp36-cp36m-macosx_10_14_x86_64.whl (394.6 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

magicfile-0.4.22-cp36-cp36m-macosx_10_13_x86_64.whl (395.1 kB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

magicfile-0.4.22-cp35-cp35m-manylinux1_x86_64.whl (574.2 kB view details)

Uploaded CPython 3.5m

magicfile-0.4.22-cp35-cp35m-manylinux1_i686.whl (572.3 kB view details)

Uploaded CPython 3.5m

magicfile-0.4.22-cp34-cp34m-manylinux1_x86_64.whl (574.2 kB view details)

Uploaded CPython 3.4m

magicfile-0.4.22-cp34-cp34m-manylinux1_i686.whl (572.3 kB view details)

Uploaded CPython 3.4m

File details

Details for the file magicfile-0.4.22.tar.gz.

File metadata

  • Download URL: magicfile-0.4.22.tar.gz
  • Upload date:
  • Size: 303.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for magicfile-0.4.22.tar.gz
Algorithm Hash digest
SHA256 3e55131ccd5dad2fc83a7d5c9b3d1a5afbbe0857dc04720d0763f7bac6f35d68
MD5 1d99f05a45afc673fd76bcb4e373239e
BLAKE2b-256 9a7b2f8451654f0d3e686728aaf07c17055d6cf6bcdcee3f6efc4133efaa883b

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 574.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for magicfile-0.4.22-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fff20c6d1204f00181085f78c8057bb505b2a462cc5851ff005f3b85471ffb44
MD5 f92f1b5ee303639a40aea0dcef2db4d1
BLAKE2b-256 f870661e505c294b6ad9a1f0c388a25743b7969eab8e7c72135f3d5a93954a54

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp38-cp38-manylinux1_x86_64.manylinux1_i686.whl.

File metadata

File hashes

Hashes for magicfile-0.4.22-cp38-cp38-manylinux1_x86_64.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e61bde222738d767bf189fb1e0d7c541e4524f981709ce9cc318f1d97e8dd65d
MD5 c9d6ce962ed33781f1affcd0e6fb8de5
BLAKE2b-256 8435211f11f6ebd6a956f32a8e2abf2520c2da0c248b3125084cc05211ff25a6

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 572.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for magicfile-0.4.22-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6cfd40d8743c9c67cffb6cfed1f5aad6a8719b67e739427ea3bd11a30428959
MD5 b7fe49169a36d7be2bbd977831b87dd7
BLAKE2b-256 fdbf9ca7efc9c4282cb0af0318702665c2268e979a2eb2da5e4bc24d8d64b64f

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 394.7 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for magicfile-0.4.22-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6a42ea23dabb3539969efdf9bc82e34116c24653cca4a5eb5dc09190ff79f5b0
MD5 f8fdfb07765fa53f4de0c30ff51fc639
BLAKE2b-256 f6f4f5a46363ee03c6ecaa61b76a7580df211053916af6d9a6510784f7846acd

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp38-cp38-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 395.1 kB
  • Tags: CPython 3.8, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1

File hashes

Hashes for magicfile-0.4.22-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c6f17dce2ba4d357f87153e92d02427f515b9552e472082913836f7284c04722
MD5 ca60aa0dd1eb6a33b855eb1908cd7c72
BLAKE2b-256 cbe5445e55668a5fb63e79d5839011ba21a75a1fbbb1b6ffe598c3cf87e6cde8

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 574.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for magicfile-0.4.22-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9e2d97032da03e025640adf04f7561a016a3f20c3f41ed4361462bfd4943b7a3
MD5 7ed4396d84a1f633c2eb7555f216b909
BLAKE2b-256 7c05c0388af4260ad3871ef625ff70f34294830f92148585d953c352709d38db

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp37-cp37m-manylinux1_x86_64.manylinux1_i686.whl.

File metadata

File hashes

Hashes for magicfile-0.4.22-cp37-cp37m-manylinux1_x86_64.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89e75e5787722078c80244f484dab0f23ee2e9e9391d882dbdb0c255600d96c1
MD5 1551cda2117464be1a570623f1a3cf8f
BLAKE2b-256 771285b99e809923f262e3a8b35474ad597f51d93fa1362bff6cea0e8b1e4f0f

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 572.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for magicfile-0.4.22-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 024ea115e68e6094b75b8b2efec5a9185dc231e636073a06e06c1979046cf9c8
MD5 b8a012279edd77456c0a80bf596d5e48
BLAKE2b-256 15f035694f4180ac2c24d74b7978ee91f95303b904e8c1a6764fdd6436fb3b83

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 394.6 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for magicfile-0.4.22-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 79fda6477520b56562926c5843b004ca890738eff9a4eaf570c79cf71c0b8b3a
MD5 3ec11782ecfed66c58f6cf7854408bbd
BLAKE2b-256 861b9ce2a2293403e6a8ade5dfa9d0ffd082dbdc8c6048ae83226558557ab6b9

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 395.1 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for magicfile-0.4.22-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ace1063291608df32e9c55c11487dba6cc72c0c60716f88ff5320e9de595162d
MD5 c77d7a9780779966511d71b3875b6979
BLAKE2b-256 65e8c6bf87edfc7fb1e5f7f9758f4ed4acf93189e9b551cc84bbf035db6c9ec2

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 574.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for magicfile-0.4.22-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a5e6192020b808c6a44937e769952038d9029c9497e61d2945ffe694a69cf627
MD5 89d71ff72accd4092c1fc73a413c391d
BLAKE2b-256 263aab53e456876455747cbf5a1c71deba263f28fb7bcd0cd8591e781e018a08

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 572.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for magicfile-0.4.22-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5592c0630efed62acd91b75c7eca0971dd1f6bc809cbbdb39ba0c942c5ee77c2
MD5 ee59ab5b06357b2abca6db5d7b9b74d9
BLAKE2b-256 2b7a7822971e6363cd0b7dcdd59b6e9d3ee3618704f375b9c37ea8e87bbdc99d

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp36-cp36m-manylinux1_i686.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for magicfile-0.4.22-cp36-cp36m-manylinux1_i686.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8b844edad3db550d73c859bb2e8a8dbcf34101c8699ed72152c905fb8e9a61e1
MD5 d04c69790080139321907ae4665724b2
BLAKE2b-256 dc864e1ff1be19f59c4d883ab696245d741565db9804402e9aaf1ea9f4857f42

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 394.6 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for magicfile-0.4.22-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 658bf36c3de54c159acac40772ae1b6210d46a0d67c6715d76d2db336fb90f4a
MD5 7749312d4b9f5a1661b455757260aa81
BLAKE2b-256 c79d7d2674ae463e6751e186da9fa29c7d912f0367e98e980e285d19b801f7ca

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp36-cp36m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 395.1 kB
  • Tags: CPython 3.6m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.10

File hashes

Hashes for magicfile-0.4.22-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b7ee5c53555c29b5967db71d7159f27b469e818ef0e40b5b4cffcbf1f4e4dc56
MD5 2b8e9124593115d4270ad2708a1f0bcd
BLAKE2b-256 db393ec5b56172feae02b6c65466fc71e1ed1de3a5731c48f3a95c8c8485f572

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 574.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for magicfile-0.4.22-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4b0f28f9d1273f6fab95dfd50038361fe3e4308adfe93b70752421aa47faddf6
MD5 ad30dd28714d58de680d40818afb5fa8
BLAKE2b-256 3ab4223197e88f962a69fd0f2da98f4bb286dafc75b47b45aac082f312da1b2e

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp35-cp35m-manylinux1_x86_64.manylinux1_i686.whl.

File metadata

File hashes

Hashes for magicfile-0.4.22-cp35-cp35m-manylinux1_x86_64.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03f967067d68b03922fef9584e3029b211aa35972e73cc15773e9805164c2a96
MD5 fcfb6fb1c7c74d570cacd49c23dea4e4
BLAKE2b-256 6027548aef9ef66abbcfb0ba2ca670157492eb126271f78e16db2e1270ee5a2d

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 572.3 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for magicfile-0.4.22-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 890ddee94fa9b7bc2af18b58ea2be4d9923ff0c88cbcd1495da4bc87796a9699
MD5 875ea7977bb434a0faf1db4ef294f784
BLAKE2b-256 5ae7f39b0939d83f8185f58519e2487c825477d27e82296b6d88ef203dc7c7fc

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 574.2 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.16

File hashes

Hashes for magicfile-0.4.22-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 84ad72f356d05cc154b68f466d7e4a20bfb1fddc49a7f549bf3c05e602b0134e
MD5 7156344a1c88df862b99ed14607fff4b
BLAKE2b-256 2a41bc8619c82f8981c9d72cef396d04172f207b9cf8ad8103f52dbda05f71bc

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp34-cp34m-manylinux1_x86_64.manylinux1_i686.whl.

File metadata

File hashes

Hashes for magicfile-0.4.22-cp34-cp34m-manylinux1_x86_64.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc26c30eca2b203a6a4322aa60a528e42cfeee5acfdcfdbc9d2fb5446e13c0b1
MD5 5d1642112170fceb0428111e11c58a78
BLAKE2b-256 0c4b1c8ac665c90e6b93b89390d51c147f99216f266efefd67629e2d26264258

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: magicfile-0.4.22-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 572.3 kB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for magicfile-0.4.22-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 69cceb79f757b59a0f8e6caaea3722baba6ca432c22adf2513370c39a87bfa94
MD5 3bf6364cdc9415daac57d09bbeb017b0
BLAKE2b-256 85209775eafdf31d08921dec57955e55848d4ecdb4b05878de4da36bdc27fc46

See more details on using hashes here.

File details

Details for the file magicfile-0.4.22-cp34-cp34m-manylinux1_i686.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for magicfile-0.4.22-cp34-cp34m-manylinux1_i686.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8f0e9efd05aac1d206454a5d7d938243e667b76b748b66f8c2e4b6df8b1d5966
MD5 0550251cfb2bc87582fb077b033a3370
BLAKE2b-256 ab55406457b02b9b154b2046d82882bf137725d97c09ab1bfa9784bf2325e0fb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page