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

2024-03-16 pytaglib-3.0.0 has been released. Major improvements:

  • !123: upgrade to Taglib 2.0

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_native_taglib.py in this directory to automatically download and build the latest Taglib version into the lib/taglib-cpp 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

If you just want to create a binary wheel for your platform, use build:

    pip install --upgrade build # ensure build is installed
    python -m build

which will place the wheel inside the dist directory.

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_native_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-3.0.1.tar.gz (500.6 kB view details)

Uploaded Source

Built Distributions

pytaglib-3.0.1-cp313-cp313-win_amd64.whl (256.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

pytaglib-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pytaglib-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pytaglib-3.0.1-cp313-cp313-macosx_11_0_arm64.whl (790.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pytaglib-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl (765.2 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pytaglib-3.0.1-cp312-cp312-win_amd64.whl (256.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

pytaglib-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pytaglib-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pytaglib-3.0.1-cp312-cp312-macosx_11_0_arm64.whl (791.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pytaglib-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl (766.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pytaglib-3.0.1-cp311-cp311-win_amd64.whl (256.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

pytaglib-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pytaglib-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pytaglib-3.0.1-cp311-cp311-macosx_11_0_arm64.whl (791.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pytaglib-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl (766.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pytaglib-3.0.1-cp310-cp310-win_amd64.whl (256.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

pytaglib-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pytaglib-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pytaglib-3.0.1-cp310-cp310-macosx_11_0_arm64.whl (731.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pytaglib-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl (766.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pytaglib-3.0.1-cp39-cp39-win_amd64.whl (256.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

pytaglib-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pytaglib-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pytaglib-3.0.1-cp39-cp39-macosx_11_0_arm64.whl (792.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pytaglib-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl (766.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pytaglib-3.0.1-cp38-cp38-win_amd64.whl (256.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

pytaglib-3.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pytaglib-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pytaglib-3.0.1-cp38-cp38-macosx_11_0_arm64.whl (58.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pytaglib-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl (767.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pytaglib-3.0.1.tar.gz
  • Upload date:
  • Size: 500.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytaglib-3.0.1.tar.gz
Algorithm Hash digest
SHA256 b9255765d72e237e8b2843f2df3763f7ad3fdc6b6b3ffdd027c3f373c9bdd787
MD5 d2624c442afdfb0fac72151a7bc2d26b
BLAKE2b-256 2af590d40088d4839b50b6aaa1de403d12053acfc7724901f7749d9724039882

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pytaglib-3.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 256.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytaglib-3.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a65f310df7cd78e4218a7bb581da7775192fc81dfcb2612da1ed93091c8671b9
MD5 3fe5b4a3f48752474605743185fee887
BLAKE2b-256 87d9a81226deee5f687edc5e914b7c0a4f1f2cfd1302fb265be37025cf9b352b

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08e513093a1e3859b6d10319f8dc2509891b0b602b0ed84cad64b59d5e0a87e2
MD5 0b099062f37503c5a4d339740c2316f2
BLAKE2b-256 b7897c43fbe9f5c89c552ff5ea4bdfdc9e73f343a764d4dca67583ad293dd1f2

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 041a559015167691b14ac017657e0f7ab5e5398ebe7936dbbcd9940cd4277e24
MD5 63e9c0671d4db7b57580552db3ef5637
BLAKE2b-256 bacc2bf2511ab9a4adbd4eb3cdf35a6ec429e629bf5212d59c50b0ee4de3ede6

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b56cdbd3c029308634f4efa2134d91f74714eacfb6f43c0ed430fe74fa5cc09
MD5 4aec999ae61ad7f69777eed9d5efb8ea
BLAKE2b-256 947e739313be7611fd6f6d18407059255118ff4d09576afeacdd6246c2c98f1e

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1173675b8868498ed135cc488abfc70bc2016dc78f615a5b27adc042afd3ef9a
MD5 8e3fcb19a0e2cc48040deab28c667d51
BLAKE2b-256 baf8a2a9eaa79d200f5acf1d8a48b38db042668dc3e67bf56b569b11c5d30349

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pytaglib-3.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 256.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytaglib-3.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61aa47ef754962f7d46f4287abcfe7a8f220f5db2f04f725afc4d6de786b4cf6
MD5 785fa6a1acf7635358d076c76a7a56d3
BLAKE2b-256 da285270e183f7cf13d92b19c94e9e5375afd43ee13c2bff6cb59d8e47989691

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c89a1a52e3788783edc2dd7f010dcea62f8d98c53dcd0c7ce3a0f4f49c6c8c1
MD5 79f907fac91a6f9fcd01d06e864e1419
BLAKE2b-256 98d0c8f9374fcb4c5c7bbf7241b856d2cf32fb7f9af87b559a2a03a430b1c11d

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b21122ab52ebdbdf5e55779ceed4be2069d0e1dc1fe7a3541320f0492e4d3636
MD5 0059ee42520ab62aec53fb9d4d8b2696
BLAKE2b-256 82b0c8f0e96aedb985364cc9c0fafaeae99a372c3a25f7d40156e5f2ce1cc845

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27f47b1d4e8ac303910b04beb2dd69527a3ce85b5cd72bf205051d8529db4a06
MD5 410fe53b53d4ffca4b2d57d5fdd4a974
BLAKE2b-256 e7e4efe3ff2fbd8e5cd893ebbe4b7b666b98ec8688717769ea0b30dda2d041f0

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 76250c8091712edb9d27841adb45722109676f179dd22ca8bd5aa001677649bb
MD5 fd43fbc6929de4baf24e615bd551510a
BLAKE2b-256 5de8be9ca44616ddb5018b2d2eb29fd0a66f5fef1b9f675fff0c7ecfec7e8c81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytaglib-3.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 256.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytaglib-3.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aaa0c47db92e234b2906389deb48aed1d495ddbec556e2c367cbdce1dc343062
MD5 5d7afa9bc62ad12c3a8c65932ac05d37
BLAKE2b-256 ba5822d34f6910fbb4a209fdcaa83de81222071fba9db1db05ddbf7a4c3cd728

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1fd3c40534ecd1c63a7a6a18e1a7594deab9e67355871561c279f90b42c6b75
MD5 485c29ce2a22dec6f294b8691d37fb62
BLAKE2b-256 4189023ef99c1c670059aa28e05ac83e424f10d822887b883bbb7589ef6657c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fb1cc5680b362d7ae0aa78160a34b2611149c25e519566962e55deff24d2d32
MD5 614812f718acb96a8dc890b4f913d2ef
BLAKE2b-256 26d7bbda54002ddc30bb736079f0b84ccf03f6a6968d2683d71f8bf75cc7c44c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa88a0d58a7ab5b78ae6a571ef2e697b3b5fa5995da917244b100b0fe55f12c4
MD5 ce6b3ed1dc7742969fdbf9be6c7fc495
BLAKE2b-256 98d67a524501a09bb1b87a08cc50072b8e288fe9961f6977ce08c2415dd10ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 489f27677d03d16963fc2f815607297cf74415240069c16fb8b5cab307236935
MD5 076729f3c251b8d14b0658eca4380b59
BLAKE2b-256 20c965776046be31a2db5d54523465827ebf40ebdae2c7c67181f3e1467b8d5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytaglib-3.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 256.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytaglib-3.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40d130873535bf6dae6b7f210f13881f08aa02f71123052d0f711e82172915d9
MD5 04b1bbe595ca5ba94b8b985518d84358
BLAKE2b-256 e9cc751ce44a7ebdb29ed5545928c9659b22cdebad52cdb5a322076eae094fb3

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 069993cd036a59ebac2a5c56cfeae8ecca9f0c34a58753a2bd140c5a27c36a63
MD5 bcc872be4ec243c2d96378c1f5be5ee5
BLAKE2b-256 5957c698e75b666e2623d7ad454c976fc77e28d3a953134d5cf5dea1134ea90f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f1901109ce6fba648081fa17f595bc2cd38ada6373d2673c2ce501359370994
MD5 e8faf9f8c88db124d7c3704e19eda878
BLAKE2b-256 16ad15d5ba75a58f4793467ffd065b6d7fbc58fae819e0f99b669dbed82cb2fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b79d47f1ec2253fc01aa8bf5e05553dbe432874bdfc56a80686997e75d433e38
MD5 32a86fb7358df486c9fd6e2bf959c8d7
BLAKE2b-256 adb8527d861ac9e199fa0cd91fa723dffe572aeae484ddbbadd50cda31bbbaf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2f49ba26a0d7c27d7ec2ec7707fb34d26837a068dd2a20bdb40b6ed37231ab0
MD5 d9ad278e69ac775ad6a6c903cc1af1a8
BLAKE2b-256 e3f0f981e758f7b4d00d073aa07a2229c2d03588da66897c76876ca56f67ed66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytaglib-3.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 256.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytaglib-3.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bc6bf0724d6c8df0afc88d63835fdf5b151eea9915b634dc5f5076df5b9eca05
MD5 0ac7b1eb159cb3010257de7843f9a593
BLAKE2b-256 32cc218cce87d1fe781ff13701508b690040a0fc8bde9373b6cfdcbd8221dd6f

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75f537182d1bea2dcb3fac09348fb7d244352e1abe68294e1df90a42569e2886
MD5 a30cfd173c11cbe7fef7c6ff226f92cf
BLAKE2b-256 13bf3a2458dcac5901711c92ec44e96a25ae64db7c65863d8ea436f98d8176d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7d72252c421270901fb32866d08b030934b313836787db7b63442ef05240488
MD5 6df73eac777f3acb943f0ae3e0e05cc2
BLAKE2b-256 5e2400f038ce2fbffc389d67febc20efb020a2295dfef9e7a07da9843b14b409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e37d13dc1445073ced44b0b34e06b4986b21cf98284c04a6328200b96a48a35f
MD5 e84151d1e3032729e7b9204684db5559
BLAKE2b-256 fad126a1e3ae0313c13beac2aa52e76f1bb2e2fafccacd38e062553c122e95ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31bcdc2882aba1d0e7c6575b4b971413629ce5ecf6588994111e6154567be2b6
MD5 6f893f7fd10aa728a01568b1b916e5fd
BLAKE2b-256 2706f500642f4ee0b3e2f95af4881f297b37d67b06d13afc32b0f4d0e0f5b100

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytaglib-3.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 256.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytaglib-3.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b9a927df304dcefdc9ea1176e779115e3276f44e7ad5a16d1e6daa15d984dfa9
MD5 024e081861bd829491d9ef063a84fe69
BLAKE2b-256 10e7a15fb9bbe555c732ea5792627cd8510b14f8ef70c36503dd71a7b914274a

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e5f12df7fef0e75589df9a05d892d170b0516c28a496c6300fcef93118bff72
MD5 30e8c223efaaac1384316579acfcbffd
BLAKE2b-256 9c1ea90877182e7a1d52cfca18e0173d9eb0ae256146de87565409742b00c258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a40bc8a88c52d6be9bac95daa4d0c8d6a6c194243e4a4ab677a0ed036b84a362
MD5 38a04acbf55933a9e55599c7104646a3
BLAKE2b-256 8b5a13067179aa090c157c1d08f8623392a99fab3b791e64d72839405475b29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c76255e86dd8664787e8b97d53e7f33ce585b89ae96f7cbeb330a93aa71560d
MD5 6c5dcbbdd0aa20254e660e03df59e5ce
BLAKE2b-256 ded4ebfe1e3fffff650116d6c1c373e3ece224c50ca424c77545d362de50e1fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15aebacd1cdedd2d1cc103179e6ac430410bb3091f673594374026d23b1219ac
MD5 c0e102afca13025eadccac7e978a0c2f
BLAKE2b-256 9988991e0ae5864e50c36b0d7c360c6f4f08461e0daee46c3ff4fda56565181f

See more details on using hashes here.

Supported by

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