Skip to main content

cross-platform, Python audio metadata ("tagging") library based on TagLib

Project description

pytaglib

PyPI

pytaglib is a Python audio tagging library. It is cross-platform and very simple to use yet fully featured:

pytaglib is a very thin wrapper (≈150 lines of code) around the fast and rock-solid TagLib C++ library.

News

2023-03-26 pytaglib-2.0.0 has been released. Major improvements:

  • binary wheels are shipped for all Python versions and platforms
  • breaking change: File.path is now a Path object
  • support using File as context manager

For a full list of changes in this and previous releases, see the Changelog.

Install

Use pip:

    pip install pytaglib

In most cases, this should pick a provided binary wheel that bundles the native TagLib library suitable for your platform. If it doesn't, and the installation fails, see below.

Usage

>>> import taglib
>>> with taglib.File("/path/to/my/file.mp3", save_on_exit=True) as song:
>>>     song.tags
{'ARTIST': ['piman', 'jzig'], 'ALBUM': ['Quod Libet Test Data'], 'TITLE': ['Silence'], 'GENRE': ['Silence'], 'TRACKNUMBER': ['02/10'], 'DATE': ['2004']}

>>>     song.length
239
>>>     song.tags["ALBUM"] = ["White Album"] # always use lists, even for single values
>>>     del song.tags["DATE"]
>>>     song.tags["GENRE"] = ["Vocal", "Classical"]
>>>     song.tags["PERFORMER:HARPSICHORD"] = ["Ton Koopman"]
>>> # with save_on_exit=True, file will be saved at the end of the 'with' block

For detailed API documentation, use the docstrings of the taglib.File class or view the source code directly.

pyprinttags

This package also installs the pyprinttags script. It takes one or more files as command-line parameters and will display all known metadata of that files on the terminal. If unsupported tags (a.k.a. non-textual information) are found, they can optionally be removed from the file.

Installation Notes

Things are a bit more complicated than usual with Python because pytaglib requires the native (C++) TagLib library.

If there are no binary wheels for your platform, or you want to manually compile pytaglib, you will need to have Taglib installed with development headers,and also development tools for Python.

On Ubuntu, Mint and other Debian-Based distributions, install the libtag1-dev and python-dev packages. On Fedora and friends, these are called taglib-devel and python-devel, respectively. On a Mac, use HomeBrew to install the taglib package. For Windows, see below.

As an alternative, run python build_taglib.py in this directory to automatically download and build the latest Taglib version into the build subdirectory (also works on Windows). This requires Python and a suitable compiler to be installed; specific instructions are beyond the scope of this README.

Linux: Distribution-Specific Packages

  • Debian- and Ubuntu-based linux flavors have binary packages for the Python 3 version, called python3-taglib. Unfortunatelly, they are heavily outdated, so you should instally the recent version via pip whenever possible.
  • For Arch users, there is a package in the user repository (AUR).

Manual Compilation: General

You can download or checkout the sources and compile manually:

    pip install .
    # if you want to run the unit tests, use these commands instead
    # pip install .[tests]
    # python -m pytest

Compilation: Windows

Install MS Visual Studio Build Tools (or the complete IE) and include the correct compiler version as detailed here. Also enable cmake in the Visual Studio Installer.

Then:

  • open the VS native tools command prompt
  • navigate to the pytaglib repository
  • run python build_taglib.py which will download and build the latest official TagLib release
  • run python setup.py install

Contact

For bug reports or feature requests, please use the issue tracker on GitHub. For anything else, contact me by email.

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

pytaglib-2.0.0.tar.gz (69.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pytaglib-2.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (688.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytaglib-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (615.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pytaglib-2.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (688.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytaglib-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (616.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pytaglib-2.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (733.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytaglib-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (616.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pytaglib-2.0.0-cp311-cp311-win_amd64.whl (227.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pytaglib-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pytaglib-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (903.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pytaglib-2.0.0-cp311-cp311-macosx_11_0_arm64.whl (46.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pytaglib-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl (624.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pytaglib-2.0.0-cp310-cp310-win_amd64.whl (227.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pytaglib-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pytaglib-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (894.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pytaglib-2.0.0-cp310-cp310-macosx_11_0_arm64.whl (46.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pytaglib-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl (623.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pytaglib-2.0.0-cp39-cp39-win_amd64.whl (228.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pytaglib-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pytaglib-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (902.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pytaglib-2.0.0-cp39-cp39-macosx_11_0_arm64.whl (46.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pytaglib-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl (624.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pytaglib-2.0.0-cp38-cp38-win_amd64.whl (228.1 kB view details)

Uploaded CPython 3.8Windows x86-64

pytaglib-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pytaglib-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (905.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pytaglib-2.0.0-cp38-cp38-macosx_11_0_arm64.whl (46.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pytaglib-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl (623.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pytaglib-2.0.0-cp37-cp37m-win_amd64.whl (227.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

pytaglib-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pytaglib-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (893.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pytaglib-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (623.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file pytaglib-2.0.0.tar.gz.

File metadata

  • Download URL: pytaglib-2.0.0.tar.gz
  • Upload date:
  • Size: 69.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for pytaglib-2.0.0.tar.gz
Algorithm Hash digest
SHA256 f62f45b7dd998ea81705bd228c2643ed743f5537543988d918955d5662b80737
MD5 94c4e56531e526c24d3298b5f16becd5
BLAKE2b-256 5cad38d631f242648200a5c8800c15ad3fd1b5390871b05563c2bed680ada75b

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eddbcb05d9cf52d5ed1a080d2b8c4eab1068e702cb33087f8c1d29ad8fad09a
MD5 43bc39174ebd25f79d18034cdc1c8093
BLAKE2b-256 56e23b5e9e58516b0064387d259525e39b159a04f967e3ba60d004a80ad1b421

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4ad15bf7a0f8f451a8cbbac32bc599af06118b99c418bf352f25d1c7782843a
MD5 02872ee55dc3578e175bbeb2a49094ca
BLAKE2b-256 2c84c78ba2275e219cc3418bb37ff0e6ac087bab84f3fb0e1533a369599c3c7c

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ca00157213982519119f9a798456db989b0b14bf1612a58bc7101195bc123c3
MD5 5ab03a488fc6aaaa7ca732b009c28ad1
BLAKE2b-256 86a1da61333dc0da962270d34d807c8533ed9435401b57ee2262f649367c8c1c

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6adca15a436acf9db15aea9730c95bc7dcacd054ac1e91a92c273939b9ee65fa
MD5 2832ef8b1c4370073b740f2e631b0e22
BLAKE2b-256 f2171cd804987681cfef2fd98a0fe5d389a4e22ac67e157cdeb569fd77195702

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5d0c1c27f44c298547fd5dda767cc76372bb8f29acfddd5909d93d0689bc6f7
MD5 e6f3baeeb3435bb9102d5117522f61b0
BLAKE2b-256 77eac7962d406d4b66ba5243ae952ea5c85a64d024320aae6167238aa5a0f4fe

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a62a5301ae625828d0d24e2821600a8b6c8c70375cc618fa8445a42e6935ce96
MD5 b6c3525820b5c03afcfe1a98c62f3b7d
BLAKE2b-256 b5abda304c2b3e56222bca4d83419727c7940ad8fc417b223798bb606bd8beec

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pytaglib-2.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 227.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for pytaglib-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c98c86c04c544d1910a9af07ad9c951144c1f249d456ce3d09ec8af1aab5d4e
MD5 a06498b7e560ae1e5bba66f21d3c0d90
BLAKE2b-256 be72e94d9ad43a3722b58b100ab03b597ff2e050dc4d42f1c775b2b7fd2dbbce

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a532665f95571878bba9b9b4799cc093c718f76bfe77db440e9b81b5ea8c5ef
MD5 be73511dfaa842da607961336754f97d
BLAKE2b-256 1a903afefc57bc6e6d7a2dc39b32cf89ec7917cbf046971382045124ced98b40

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cbc60a9e3acbd2cf703c3b04c7ea1b888e8b76c4517bc8e3373b41c461ae295
MD5 6dfd0a652c785cd0076890ebc1704dd5
BLAKE2b-256 20d79e0a8b2b94b68c8d3452ab9a7f097b1bedf2127caa31e2bae7482f310037

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b39a23f3f0b565239ea8a252bae4e8a4fc94ca5cd3f0b78afbb5c8fa7f28fb91
MD5 1e4128683c22b5622737db51c045d3c0
BLAKE2b-256 a539befda27d7e5bbbabb05485d5f5c2f11250b454c0026afc1481943a02c917

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f96f08d4648f8e74a4f951877e77e5c774b712cf710ca6c153df0755a1861071
MD5 f4d90a846ba25673806e2bd5778e1d77
BLAKE2b-256 5bb6d56eda7b34482770847575d45b56a403db60d96b8cf75838b23369beb5d1

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pytaglib-2.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 227.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for pytaglib-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5671961fb475bef11ccfe9a76fad0b0ce2df8213eeab1dbdd54e859341797472
MD5 bae3be92257c7f42d3039c30d07635da
BLAKE2b-256 094a48be86d54c9d2f7b1270caee436a2db71dc65b565eca29ab611dcba26088

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6dbe79567a2e933f5df8dd665424e530e6e9f3fc54da5b6c40c8ad451ed9e612
MD5 ad6072d7612e274faf2d421597cd5ae3
BLAKE2b-256 d250a3a4d886fa49a6a0152e4951104efd54cf0a3cbd22b719b00f77cd722805

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba9083f0c9b60600f79befb775595f8339407076d30f1d05500ee588a5e3bf2e
MD5 5f9a373597afd60afc879bfc2027f990
BLAKE2b-256 40fcfc8abf3d0e325b455e241835f0b9ea5ef206cc5aaa9ba0bda300cffdd9fa

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b79819c9b79ab64860c6ffac57f43299f759ce37e520abd162132d49fa8e5b53
MD5 15ba101d7d9f83cbbe89fb6c1511178d
BLAKE2b-256 04986ecb50046b9639499b878d8ebd8c374cb35dabdb19ab79787e9e0c8125d2

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fd398ed65806ae4ff4adfc12cfc4a7645b51355d19f334ea3573ef01a9515a8
MD5 c0398da5626737d78cbf61e8472813ab
BLAKE2b-256 b1621bcf522061183a085328ab26c82e383cfc13c390a6b7a514baa0bd1c8178

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pytaglib-2.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 228.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for pytaglib-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 63c70a26fc08d2f3c6c8d9a361b57cf7af6362f6931276fc28cbd8f26062efee
MD5 5d3f9e9d7a99ac7b90642f9f7213ff99
BLAKE2b-256 1a8be78b59ce264a2d883d574e9a32ecfb9786c09fa6db8c72556dcc104afdb9

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 757bf7be89eea76fa7886830e737a86cc42e657c0bfe398a2a82af802cd4074c
MD5 312e76347021049667d7fb70011018b9
BLAKE2b-256 7c867ea82e1a19355d9ef94de604857bc6178c2fc604af5a4c063d891218135d

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2aa2c4ac5389b22b4b891ca7a9d9906d5a008b8797997add2a883fcea72c439f
MD5 df1ba871116e7c0bafa4a3fd12369f7b
BLAKE2b-256 b23039f053e997400592ddf02d80d973ef30fb5bf9bd01e0163264dd4bd23b13

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8f8853de3d6a12ba91103bedf5f6b4199697f5ebb50f8026d050949bd298652
MD5 c1a931694f27039e94931e16af80f547
BLAKE2b-256 d2cfedb9bd4f138bd35cbc0162b32bc479dee2cc90cf2f901e9f4b2dfe9b34e2

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cfec52044570e058a9918a23a2c9c6a630401d1c5830c58be0a6ed9de3178678
MD5 c4be4ebd1268da37235f452f027a4c85
BLAKE2b-256 bef1e49c86a1d39d5321f0be3c9a6bd2c5753f9ff6d17e3cca299f09c84da9f6

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pytaglib-2.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 228.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for pytaglib-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 877a9342b2aea30f42c000fca61fa7aeb47a94441f6f502e76447e1c8b3ba0d8
MD5 99b4a565144ea5a0a18d584a840567c9
BLAKE2b-256 29e3bb4d09f577a7bafdcadb91ef5ba25b4bcee44f09f64c659218794c00b78c

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2bd293b01fd276cc2cae48fb5c435c955184ff36eed7b3d5a1e67649cd0fb877
MD5 efb925c819bb22d81897423e625a8e35
BLAKE2b-256 4ba54669eff6b2eb705165d95d4f9bae92d83187555816ee059cdf21c45d9c80

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0a147257b592aa64689cd42a5efdefabef23615adebdf6ad582b80f64696753
MD5 7d525a8700bdd65c58cc47035487a6f8
BLAKE2b-256 2444f6f9637227e9003776e761c57c51793bb03b193786f7bb9971dea9a0c54e

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adc2a15348c737c90c1e1968848671e7fe7aa7d50166ad13848d9d32c281fc63
MD5 c40e7e5bb36efa23a021fd17bb8b70ce
BLAKE2b-256 6bec96dc759dbe4464cb673e6065bcdbfdc6cf97bf093002887016e983c93f2a

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df0e26db35a1fa10601ac09afaa6466022db0a8a14bbc5deb023e22e679a3696
MD5 5308981b665db86bd7b606f44869922c
BLAKE2b-256 0df9ef74b75b5717241ea1dcc6f5880819bede400e4a31a46fa6f8902ff6df66

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pytaglib-2.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 227.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for pytaglib-2.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 dbe25c2395eb1717c88f204d2fe0190d000bf9fd86a00f3edb0b4c1d3b15c141
MD5 c4474a3f4420390612a4099683548e4b
BLAKE2b-256 80d03b3399251d41fe67cf4025402ef4dad6928f9ed3e177190ace50bdd8c6d7

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e465b39fca4e24bf22f733f9a1377dddb488e1beb8f67e8d1cb6c3925ed12efd
MD5 4bea89ecee27e6c8ccf017ea0624aa63
BLAKE2b-256 aa007b4b63183e078d08e5ae1f838fc79493cfd3a1437189a6381edfe1fcd9be

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae2acb0d85b7bc37cfeafeb372e5899e3a64bb5abd1b2787c5df50f0bcde31ff
MD5 42ab0b863a342f08468f3bc738d64fdd
BLAKE2b-256 3a55bc6b5525c27511470e0b8dc2b993198fcff9e58f9628ec63f1dc6e7eba3c

See more details on using hashes here.

File details

Details for the file pytaglib-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4b1a80808628967b02a42be43d82704a22016045ca68b58fa7a0466af4c330e
MD5 d9b82a09c7c63fdf022edcfc805e7c35
BLAKE2b-256 d64fa2cb2928efd578c1b54f66ba360427b09c2be65155efa272a48e91e2cbea

See more details on using hashes here.

Supported by

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