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.0.tar.gz (500.5 kB view details)

Uploaded Source

Built Distributions

pytaglib-3.0.0-pp310-pypy310_pp73-win_amd64.whl (250.6 kB view details)

Uploaded PyPy Windows x86-64

pytaglib-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pytaglib-3.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (792.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pytaglib-3.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (760.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pytaglib-3.0.0-pp39-pypy39_pp73-win_amd64.whl (250.6 kB view details)

Uploaded PyPy Windows x86-64

pytaglib-3.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pytaglib-3.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (792.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pytaglib-3.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (760.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pytaglib-3.0.0-pp38-pypy38_pp73-win_amd64.whl (250.4 kB view details)

Uploaded PyPy Windows x86-64

pytaglib-3.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pytaglib-3.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (792.6 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pytaglib-3.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (760.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pytaglib-3.0.0-cp312-cp312-win_amd64.whl (254.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

pytaglib-3.0.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pytaglib-3.0.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (799.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pytaglib-3.0.0-cp312-cp312-macosx_10_9_x86_64.whl (768.7 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pytaglib-3.0.0-cp311-cp311-win_amd64.whl (253.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

pytaglib-3.0.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pytaglib-3.0.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (799.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pytaglib-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl (768.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pytaglib-3.0.0-cp310-cp310-win_amd64.whl (253.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

pytaglib-3.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pytaglib-3.0.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (799.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pytaglib-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl (768.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pytaglib-3.0.0-cp39-cp39-win_amd64.whl (254.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

pytaglib-3.0.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pytaglib-3.0.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (800.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pytaglib-3.0.0-cp39-cp39-macosx_10_9_x86_64.whl (768.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pytaglib-3.0.0-cp38-cp38-win_amd64.whl (254.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pytaglib-3.0.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pytaglib-3.0.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (58.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pytaglib-3.0.0-cp38-cp38-macosx_10_9_x86_64.whl (769.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pytaglib-3.0.0.tar.gz
  • Upload date:
  • Size: 500.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for pytaglib-3.0.0.tar.gz
Algorithm Hash digest
SHA256 b1e666ba77f34493841c1165d9b5559c87ea7c9f9e03ddbb8d11008855d5398c
MD5 7adfc926dfce1b328aae3ec57b2a43c3
BLAKE2b-256 69ed95c07cabdbe7ddd0deb4f4590d04b75fc207195c78511a7822c7efb22784

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cf2711b47f4995ebf3b5174986faf17abb7bf8b8fd207ec6bdc82d2d180ea83e
MD5 66b097e017d27a34285fd37bc7fdcc3a
BLAKE2b-256 0e14abc13859cc362f84cba67e782a576aee2ad481f2372e1b23f6184c38afdc

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f652eca86928cc8bcb74667db77322fd7d5301d30e207025d0e87a5579f85f94
MD5 55d8df928cc2d91d7da8824a71955701
BLAKE2b-256 32e4baaa138d0b1abb63d8f93fdf449039934569704d191c3ea34a4de7c978be

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 818727622ccf68ff275a2fc712f4c977bc21227249ce9149ee91cd407b2c39bb
MD5 52ba11b4dd1c363b20a9d638199b3a9f
BLAKE2b-256 bd8eaef2811b53862d292be87786dcb079ae26c35f76782f4ed384ac30d7b038

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b286b7f409d3a9c19695a21487238b91d97734a2013551526bea5d563d616fbe
MD5 30a1481c494e11e293054ea09f105b0c
BLAKE2b-256 448f366b90015ac462c1bc2e436a6af4e01abf94ccd68814bcc57c0ea2dfe57a

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 292d413b5c8f64e4ee3fbfc723f1203c126342a3b054fb023052a0e1dcaac803
MD5 efff8daf99778f151992c37dce23e1ff
BLAKE2b-256 ed8fc157fbfa9307802fc1b02f2f0f5154184be210b7eed723c6cbd5fd242f47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a779b3b5d6b18406fbfd02a751e96b7829fe850754125f12a1062043f928e07
MD5 385316e52e78f02629ae4ab7e396fe82
BLAKE2b-256 fc96ee7c8276e2f750b2ab8ee37bf3a616e2569fd11abff46e5ecaeaa1514d5c

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9dd787f5fc3b33d9f861c1cd87a630136022c531080eaa88d7ac761f192cb5a
MD5 fbab943c562573e5e67e0aa79d4744a5
BLAKE2b-256 b2275bba2e61c03dd7f7d645014029f050b371ad8b4b8319e144309a87c82165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a28319dbf11ee479f65283cac90b81984dfdc7d4b6254f8c5867cc982d3014b9
MD5 13889649c8c1ec102306fb226aa702a7
BLAKE2b-256 972faec526462c6a9ac69c82412f8337d04c700eab2a32978af2156898236b07

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fbb1ae40348258104035c32d629758591a4f7c2a69f827d158d29ac6745ba8d5
MD5 28f9cdcc7bba850d87d78b851e7a3647
BLAKE2b-256 171923256e3357f40aa81809fa956125b40287fa3d79d330f5eda20f3863d7ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 343ff7291f2869cdea4f06de67bec115817f02b2e1c9ac92f5f25f46700af2cc
MD5 0991a97e77a75e143e00cba6e7a14e04
BLAKE2b-256 ebd4f137deb005b894ccbd0a1011d7d8952a777e63fc59b06de5ac3204a46ec2

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a4729e2005e711930467003729e5cbcdae1eecace40628f5afa0ef5b2f05c8e
MD5 bdff05864aa7a85b9459036a5148dc25
BLAKE2b-256 644b9da01da77b2e7791366dfe645fe334a8346766b9b8676932c526d29b65d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28c70531da92b96c564b797d1e6646bf1549da13c0bc312c8c0a0f5c7998b598
MD5 e441ad8da3ba5b898bd46006a9c41928
BLAKE2b-256 0ba3b33a0c567cb4c8e4ea11f431ae9f7cf13e359eceee6fd14579b76cdf7ee1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytaglib-3.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 254.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for pytaglib-3.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f80deb28c0d81f2d4b294f4a4d5f9a291a4bdb7fa13984453c4f8d8034ae671e
MD5 4f44ec917c81e6de3ef320b0b946b688
BLAKE2b-256 4a90756767863e4f2d39a2946cb0b0ead17f8fe7a237cb6724033cd630cf23ed

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d6885c3c3aea225594b4e861f9b84f58bffb088ce20b86be6d6ca7618aa0719
MD5 154a36c1f98bfca513980ae50d445835
BLAKE2b-256 b3bcf3f30dd5574f486d5923fb9dd1febcfa1772e5d6e24d7fd9d467946b74e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c566d95adedb20d77a1110cc6ed2b34773779710b985f3a92aceafc4917df025
MD5 d847c688bb1f49793b41332bd5743b0c
BLAKE2b-256 6c49abce9de58c7b48548d6c2caee5d4dba49ffbc07fa69e43421dea17db0728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f89c0da136cca832405a2fae449e6b41cb8b493f8c0a947acb29268af893cdd
MD5 2486492edcd147e9557fc1f6fa385d04
BLAKE2b-256 f6391eb9b8e7011bf14bfad02e9f50b2d9859a384929c5b0069a2879ddcba843

See more details on using hashes here.

File details

Details for the file pytaglib-3.0.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 913402cd6c7d1fd09d2407886924c3ad74eae8c015443000c41a59088031124a
MD5 a8cd0a2ef8188ebf49d55e288bb86cbf
BLAKE2b-256 f0e0b4d19bf0cd7795316813c8d71d09876789cf73ce96c9f95be01a922326c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytaglib-3.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 253.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for pytaglib-3.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c09be1d51aa58efad2c4ba6524f054caa646b0c9f5a5fa9aad6c532e7c6e3934
MD5 47323402e23324e98651dbbfef968ee2
BLAKE2b-256 544cd4b8e8e3e587bbed51ea7ed701e000c5de9d2e1a7b8854130124583b76da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 16c1441ee5301eb340751642cce11dd3c3f9af97775b11aa7130d83774d571fd
MD5 786a93d501f4efb0dc7ccf32fece07c9
BLAKE2b-256 6c559e712a868b5651dea9cbd9a4b0e4ab3316285fe4999a3675566ba4a93511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0510f39a93a4b49ab959b10f4b2b30f2290081cbdf5e5838ac4a003b33e3cd9b
MD5 f439fb90199060f824c45a381e645ced
BLAKE2b-256 8da1ae220f7071186f41c842c4701bb2263012e21bc54c3264ab61dcf3d8f2e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d4c8ef3038025a611caed9d31905f56e623c9d0b8238d2b195c5b3e2a96fb2d
MD5 168b872007bb86f051c76bca7e484f61
BLAKE2b-256 b6234636b26b18c094bec4f81b7054148ed715c33cc71cca0bad31d4be016a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92da8c4ae0d15fc1036f2a61d77d66a623740db501300f34f9fdaab573e68d08
MD5 5e8fd9ead7ebb92b4771e00fe3d25c0f
BLAKE2b-256 47f244c953d8ae8cac6b9eaa657757709ca77ad6530a9c3febdc42011bfa871f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytaglib-3.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 253.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for pytaglib-3.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6363cbc6075fec16c7feb055e3d244dd73a31076ee62edd7c5dad01f12eb3f31
MD5 171e6a55e592baa9305f00d96ad4f8a7
BLAKE2b-256 47a110cec8be8e5db5ed10a862ab793476a9e200cfdbe120ed130d740645421f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b793d60d94757b579d42f0de201ff993b26a65bb92c4dd3d6214af64c9d305c
MD5 405677dda478c8f724ab89e0b5fe3f17
BLAKE2b-256 6aac1f670ced33a96cb8e7f08292939190e56edb54def66bc27a70f343754487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a6b25bd9c742b07fa565b716e27506d395f189ef7d1f9b57a59c58375ed34d4
MD5 710313d40102f9f905dccc88f1f93387
BLAKE2b-256 a56e8e96de91c963b11442bdc613f46992dc979df4fe47419830d4c1a5ce8577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fe64ad4f8aec50bfeee8c3a1840f446e083a895cba0c139c6e29bb60be38cd6
MD5 86ea07498c5f5c0c0cdcff3048f16165
BLAKE2b-256 c02c201e6879c42a2926ea549b320b2359048162861808ea4d5afea90a97fe20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 539d33af2672f1222dbacbd2e65e7d567916142227e95fb9352b32dd253600bd
MD5 85bb5dedc1f44cc382624b7c70cf1a95
BLAKE2b-256 5c26c0ed81e49e7a745dce305f9e86ce94fe8f86c400635e6a3bf18095464d84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytaglib-3.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 254.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for pytaglib-3.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4ed415954e8ea0467d16dc307f574e3da314a268a875704159a4438cdc71d8b7
MD5 05ef1fae9d852c9d360e643c449af6fc
BLAKE2b-256 cb5048c67485718aad14d0c44ccef4c4dba85923290f69ae601ad9eed48d826c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f1c10fcaeffe4392acdc0640586f698e04a761f2896c18e671107451e1e80437
MD5 7a73df5b6feb7cf775a581ddfcaa253e
BLAKE2b-256 2d72c64f2f59d375de41d85c087dfbb5ea5482c5655c1607e5b1fb9eda6fb9e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62592d9d97942e5df1622efe6438f9828088d0d7373bd3a70e5de356be4d5a07
MD5 c2eb261a64edf7156074bb8ebac32225
BLAKE2b-256 2bbc7775a4720f2c18e26309ede4d91ff168220f1ff62dfea49a191c01846645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d4585cbe1df3af721ccba9d0174c524fe0b453a89562e622f7e842255241ceb
MD5 961de61cdb5e55bf79533bf04327fe3b
BLAKE2b-256 daf10780f7eafc777a1d478d807af7d5572c1d28dc3fff72b021569f00f78d66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d571fb572ebe8b382c34f0209a0accdcfcac3647ccd8bfa9d9e6061de5341ab1
MD5 e7bd7eede4a5d162d05b9e18a54f99d2
BLAKE2b-256 dd91aa6e566c37ef68900d4e96758dafaa87bafd8de8a3c97a393bce4351c108

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytaglib-3.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 254.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for pytaglib-3.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 285b28c1a2fdcbc215eb91bb984177f32eed01a03e78040dfa6dce2a48076793
MD5 d9fbed5f891d54e1eb11a9fbc4da72f1
BLAKE2b-256 44a8501d4a3a4d8736ca82e4b038bc2d3353c192e69c815a63350f5d2ad2e2a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d53ff49146e22cde7231f6a6088bb063b4a8d640235d4dbba148aedd53fbf895
MD5 f67e700542ff44d13a5faba7d25df87c
BLAKE2b-256 9a82fababd2e16c873971a1222585915c6d5cc9e900a5b700cfb92ba0e7a2f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6dc29067f16fde4d0cf91569c4b6b38f505ea3ae0acfed212ee735233108a05
MD5 ce4ff7dd02ded9e49039502208e52221
BLAKE2b-256 42a02d164eb46df3f35af632e7d97c48868ee48a02f9289182cac2547452a56c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59c7162f2ee44b6005c6b088b35a3ae6afc3f214e3c349d8e9cc6acf9722c857
MD5 78c6cada19873824c1ef196ebd7489e9
BLAKE2b-256 14210a8e463086460bdc0c3d51359f1cffb8d3c0b00d219ed2eb5dfbe9632367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytaglib-3.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9cba1b16174dafd0d0cfd9cb0b753a503aba837b4090a6963dcefd15ea5c93b8
MD5 efeeb74ac4f1b94f431ea71d319f0fd4
BLAKE2b-256 2207fc198cdfc494c1057114748c83f39edeadf14dcf9c21ef3a79e9f1c3c030

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