Skip to main content

No project description provided

Project description

Bandcamp api

If you find any Artist/Album/Track that does not work, feel free to open an issue.

Installing

cargo add bandcamp

pip install bandcamp_lib

How to use

The Rust API and Python API are identical except for search results.

import bandcamp_lib

# From URL methods first need to search for the element in question, to get the id
artist = bandcamp_lib.artist_from_url("myrkur.bandcamp_lib.com")

for element in artist.discography:
    print(element.title, element.item_type)

# fetch_* methods only do one api call, but require an artist and album/track id
album = bandcamp_lib.fetch_album(artist.id, artist.discography[0].id)

for track in album.tracks:
    print(track.title)

search_results = bandcamp_lib.search("foo")

for result in search_results:
    if isinstance(result, bandcamp_lib.SearchResultItemAlbum):
        print("Got album", result.name)

Rust search API

use bandcamp::*;

fn main() {
    let search_results = search("foo").unwrap();
    for result in search_results {
        if let SearchResultItem::Album(album) = result {
            println!("Got album {}", album.name);
        }
    }
}

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

bandcamp_lib-0.3.2.tar.gz (44.7 kB view details)

Uploaded Source

Built Distributions

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

bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-pp310-pypy310_pp73-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-pp39-pypy39_pp73-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.2-cp314-cp314-win32.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86

bandcamp_lib-0.3.2-cp314-cp314-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

bandcamp_lib-0.3.2-cp314-cp314-manylinux_2_28_i686.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

bandcamp_lib-0.3.2-cp314-cp314-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-cp313-cp313t-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-cp313-cp313t-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-cp313-cp313t-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.2-cp313-cp313-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.13Windows x86-64

bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_i686.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bandcamp_lib-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bandcamp_lib-0.3.2-cp312-cp312-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86-64

bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_i686.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bandcamp_lib-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bandcamp_lib-0.3.2-cp311-cp311-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_i686.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bandcamp_lib-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bandcamp_lib-0.3.2-cp310-cp310-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86-64

bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_i686.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.2-cp39-cp39-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.9Windows x86-64

bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_i686.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_i686.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

File details

Details for the file bandcamp_lib-0.3.2.tar.gz.

File metadata

  • Download URL: bandcamp_lib-0.3.2.tar.gz
  • Upload date:
  • Size: 44.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for bandcamp_lib-0.3.2.tar.gz
Algorithm Hash digest
SHA256 dd9096daf9c4f6dccbc87a3e51a7fc8e7807cf0f45debae8980bd90ce5403c57
MD5 56d6d5a60e0a0190281a7791ed26abf0
BLAKE2b-256 deb8948f49fa43e6b934504f7c34e322f63cfc01cff795c41b736f9e6c1876f4

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56ed858a864983fb5f9b8a2f2d0729ad91a87ebc73e13cd91d33d50eb20f4fa6
MD5 07251e48d228ecaec81aecbced9e0a67
BLAKE2b-256 329df8262c102939821e434424ed65e6f23cd6d761382113e331b3bfdb7b7fa7

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ef7d467895ba7ca0fc7373505368d341bd8249dc2072027e3a63a38993e1f51
MD5 3bab278973c2f0eeb22bcdaedc3e3fc4
BLAKE2b-256 17a5378f369669e38e599f2034f2428c60d59281ee3a245e4987ae9efa71b04c

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05093a62153308dca47a189e8f9035cda1bc1500c0af27d236a4a24325229e0d
MD5 a1a5ba6c8f5d13958704232fc9a74f84
BLAKE2b-256 09f43861fc5abaa01926cf1668a2d4858be9436f71618b917ebcce7fc4ff72b1

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9df614510d3fe80bc18b980f47826dc14bef4e8ccf7466f3a4109a92281ce014
MD5 6a09a90a8d8e93fbf6965f8e2c831698
BLAKE2b-256 d6ff9490bf322b06e2c32bb1472b793fd8ec4244185e38e8bbd4f69b15bb2fa1

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3826f1106d478e7ca64145fe5b1f5de4baff6eebc14c0ce63a90039b8551fd52
MD5 7d601f2db9510ccd6dfb8f0a44cdc486
BLAKE2b-256 0fb0b1e3face4f3595de7c3211e4b4a97558d6d09f3bbafafef643d97a70d5a7

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dd260cc50fee56e697d6f072923e74a3f19e402cc500fb0fa2345624ebe638bd
MD5 97e8094f7eba7c26f25e29587a26c2ce
BLAKE2b-256 a9657cd92a1daebd1e2926244af2c07f812daa9fc185bdece5cdbbbf8efe8eed

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a42d6ec7852c5bdabbaa09d10e4f1199fd8b1ba2574a86a2f7d5acd317566627
MD5 d8030d454152803c420afa1133834f7e
BLAKE2b-256 5df8a20d52c78979e01fb782f62ed571394b4354983bbe99c4d25e770d2536e9

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1cc04f32a21e3d19a459fdcf96a299f12d3444347fb16b518c5a03cf5909ed56
MD5 9fed32758dc0957764c34121b22c37ae
BLAKE2b-256 ab23bb132764cc48d97b0c6e7bb8643c733eecaa7192853a4ce48d297ea46610

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc8b9e42091590de99e2d8dbad2dd8897709a6e0486aefab7ec1ce6a42a3b846
MD5 50b75f5bc249f9a50131adc94cc35373
BLAKE2b-256 ee715b8859478ca0d00df214cd50a5dd2117d7a0a5921c38d2e6e550433f2779

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe8fda667f535a2b6de10d68e7c3a84d9a406298dc357b1e29ac6bd97123d9cf
MD5 befad30d8fa07fd9ebe6219f8f7178dc
BLAKE2b-256 5b60d8d377041f9b6cfd22ddaaa24f82d0c7ecc12b8ce54cbe019c0413c4bb35

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2047221156bcc15794f85581d66381df9089a1b91357a9a7d64988d8cd430f0a
MD5 135b23166581dff189b608684f63e3f3
BLAKE2b-256 4ccf59f801cac476938cd895854d8a16b649d8b807faa6980e86c9787359e1b3

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 222f83058fe184916ef42c46c047fa2656b924c5a955a6453b6f9704d2215098
MD5 ae47472b8173b9d436fc4e164f4ae984
BLAKE2b-256 37ec47ea4929d4b5747a705a5d9d5c0fb4df26e8c5d3c528b8637af530022d35

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 081d37fd6afef76aa1b20c2f20a5cd6839bd35240c06a8fd6b40fb0485c32141
MD5 5d37b51f0a45845d6ee328446eabb24d
BLAKE2b-256 18571a493fdd8e33fcfd0b5643d9ee613be312e5d7b698a93f4d54b7c81c0093

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp310-pypy310_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp310-pypy310_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 12b8c1e0e9e050959e02cf5f923bd13e4e5e6db299700d239c9c4c5339fe310d
MD5 f865c3c5a5ead06e5fb72a59e51704d6
BLAKE2b-256 3b638303ed4ab5a16e0b285f1bead9e0c73cc2a344dce7a80cdde62914fe5c54

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4e3ae1f3151e14b48db9489a176476273f4d6c7a4efe9b021c6a6d5065b606d2
MD5 83712225d025e401cd53f82ebe0c1b30
BLAKE2b-256 d6d663bff5ab360988727baf6284cda30ff9d3acb511cc606db0706c1e0e62d2

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 346b124063162866588ddbc33681f85fe67e59463f889e0bb7745ad616b89498
MD5 ed06e5e58dbb732ed25efa75b0e2f9ca
BLAKE2b-256 99c343f9b6eadea4fecd11ef93d2ff6b128d979d1e15e3ea01c65ee03f1ec516

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0700fda9ab3e3113443a6b06392d28e7ec31978051a55615f0196cb057d33188
MD5 d49440da41e41fe7a04ff64cdb962563
BLAKE2b-256 16b1120f61664a08f739d687c8fa0ac54ded95db36ee47bd2cc790d15c73cdb4

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98733eb8500a47ca67e86113bc939c46ffd85476be651d94888245fc16056602
MD5 dc788dd925ed30d7ae43c371dc59a3aa
BLAKE2b-256 617e1b21db9117b04cf27fe572cee4674ac7caa50247b0802355c454c62bcf1f

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d33efc69ab2775b4118c5eef135bfde64ddea639c4383b00cd1fd09a57cf914f
MD5 9cacb44b92e0c67204dca3437d39dfc0
BLAKE2b-256 08e94f2941bd61df53ee62445cd28e85ab2aa74cdec7be171340489db4e4c998

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dde712430269a6e51ad639f3e56e865521346517f79120eba811a589adbbb2e7
MD5 36c8fe91a8622ad8208362c7e66b0638
BLAKE2b-256 a945b8da662f3e75aa72c8355aeb4a2c728a92ac90749977fde85cd2018eb35b

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp39-pypy39_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp39-pypy39_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2a6e1f928904678fce7aebe6944a70abd430ba6fcdcc9be424271808296d43e8
MD5 54b0afbe57ec851ab7029d15631974bd
BLAKE2b-256 e707d466e73640483bff0e7887cb2275f74d476da3e2266e83a9f2c2f9269881

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c58121696e18601d56ec3fa16573d62b496202a5b1c467cf4cf4c157fd96fc70
MD5 eda0a7b514bcb0c2498006d2d3795529
BLAKE2b-256 3345612722a3e3bfde6ed5940b5817e41bdab104dd997e7e9cc1030a39952ecc

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9a3125cff8606e8bca944ea39331c5d606a08010a8bac24a47d78f8f6382440
MD5 2f7e86be3d52c4b913f1f0a08b49e5e5
BLAKE2b-256 7c9797d8fde5ef3daf46575615fa2afaebd7365a934df9364c68d05fba051ea5

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a2f6b15a7bdf016c5ebc7fce113c8d825bf9a4a1bc42b08435a287a7e39f2ab6
MD5 a151eb03df20d53c2015f1b1585a40f5
BLAKE2b-256 fa2706acc11b0abb6fe29f6f26c4ddaab703bae311320444b4c840339786d4ec

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1d1ad6a2474726cfdf0078e475587a520bd7c66785430e4d419118c1fd032be
MD5 faa3e24e4de6b09759c18e44e02c8cc0
BLAKE2b-256 2b03c83887e135a496a86053fd0d553aaeaf1d81d478efc2ca9a0470af48ac0b

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8936a36f55401c0fa7069e16d083a35e9ce6986b9637d5b602de8077b345ae44
MD5 c720b785dfa79a87126f87fc77fd6e3d
BLAKE2b-256 ada06ff982d35c0acb717f9f98a523f2fe3f6d573ae6f3a10df9c277051ef99c

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fb23c286bc8920aaacee98be5983ebccdace824d5e42c83f3c7efcdf7bd7d5e
MD5 d85b082c3e069afff4b6fcf108191b85
BLAKE2b-256 756c3918315ba844e8c2ad4c68813ce4c4704a8c28502d4ef652f46a3feab4fd

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bca7970cec2543e37ecceb6da76b18affa953244548afe20b23ea0bb773402f3
MD5 e04558e9b6e4826099da93056514cb2c
BLAKE2b-256 82b05f7764fc92ac681ba1c5c4b510ed73ff38a8d52bdc37beed128cadee135c

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7058f4bd7c817aa43cb092885b24f955f258a90acfd86cb24b563f8c77447052
MD5 9cdba498d7a045ff2ad5f16ce2e9f831
BLAKE2b-256 b5739a3e1f87d0816e832231b508d8329dccffb26d79507306bab65f6460c927

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fac1e15181b4ac411ba5922fddb0e8fd49b9742f13fb762e03265110713f0ada
MD5 a98aba9e3eed79c2d5f954cb120c227d
BLAKE2b-256 a6190e5896be048432aa8a70fcdd1f39c814b3356cf80a60136118383150c6f5

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acca90fe0896730dfe1167bfbe6463f1710c75aea1961c5ec635382175c5b989
MD5 717a88ae120dc920bc8a3a3a99f8857f
BLAKE2b-256 3086205569786f2ac455664da7810f8c7b5c5a8fdbd25f61475c20c612276d14

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4039aa70bbb9d37dd98bea163ae5f615996eafe063a4608804fbff351be9334c
MD5 aa0589cb709dc4fa41e6c82c5ea56f25
BLAKE2b-256 7792f5e7331bc1edb9a187eb76cf0c75a33bb43d04feebbb927e33e0f30a6db5

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 80fb20b5384b7cb1d953121c14e5d07f80d1a27d61191f864a039a9b05e11217
MD5 1cf36cf3f7bbb685ae1759cf769820f3
BLAKE2b-256 21f268766b08d9860ee5138506d3085e20595b5e50a58af725cb0f88e862abcc

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78eaec09ce274fa1c3062191e887be61f62c3108876d533c2b384f70a8fe270c
MD5 331cfc2ff5240b78c9ee5a6987789c7a
BLAKE2b-256 c510ab978da2e12269076c9086d9fbf52f90c2068252da32495d9a99f3dc4881

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 968a60d3cb0b4ffff8a1ffdfef00d6094cc2753b3c4361f8bbaccb2fc147c9ec
MD5 973d8539a694cba29edc86eabd841be1
BLAKE2b-256 e2d7fa85375922b57fbbcac7551b4645ddf828990f35049d818cf98bfd318382

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4df887bd308eef25d0d4992c55711c9b3183b871e66b54470d2d227b43fb0b0b
MD5 31b1c477911da4b129000873d9029b8a
BLAKE2b-256 567537289aa5946115817b1a88cbe5c5d1ca2a0cd2c786c74cdbe8dad51cefc1

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e63e72b851e92cf9ca58421f49165b56dcb65ddac66ec83aab047441b907db43
MD5 8a32a146070645b78323bcbfec2d581b
BLAKE2b-256 71ec54c9b936ee8ebf574b6bd0ff387436bbd50c494aa518f769c01e3c3673cf

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43aa9a264d23dc81e50ae1cc002d6272138be80bbb533480dfa569d05a961047
MD5 7da8f392e77e72e55240d38d2762b659
BLAKE2b-256 f6928ace05612941967dde7c64e4a19868cf6c57973ad1e19264ed222ce700f1

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6ff45c6b8da7caebe30f9d5556d96cd1fac767478a7cbcecb4d8e21a264f56b
MD5 093dcb9f7a2d3420fcd8d5d06937a237
BLAKE2b-256 026810437c1a51054c92d3e477e0b6eeb9772ab71445fdbbfbc0a1eb1f6b0160

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a603ed133fe2bce362c18536489f40d0196e9b050f66d7e8436f120fc0108ac
MD5 cb73ec63880b77ad088881ddce1cf83f
BLAKE2b-256 73e80069130269e768005407393e6f2afc6221c925db39aa088a2ddd96a91db9

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dd4d3493ef9f867ecea0882d1d50a672e236c9e237743ce03f88e5cbff67ea97
MD5 23a5d02da07a1d2c90aa7f9cf23d0315
BLAKE2b-256 704c6563a0a4749601d0a873f6a9f3e68ba29c8b20899b4f9545dee7ba4aecda

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ad58b3aab29e7316e4dcc2cf83473eeba22b5b07623690c01c0ca517cfc867bd
MD5 85591342ccb65ba25bbd56b8f193678f
BLAKE2b-256 3968c15685c3804c98682d809cdf8066ceb45725b1c1ef5a2cbaecae2a0fd894

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b4ec5ae2f93aa52961a179a137998863fbe7114e127bed26f7912809445f437d
MD5 b10fbe0217fc5a15fb7c65f6246a0526
BLAKE2b-256 28cfe7085caa86a76ba08ea6205c27c0edb52729b43e99b3cad05b8dae4fd17d

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3ab1c9c5c36b8a75d31af0acd17a35ccf200c9952b662add6b239c6b72bac50
MD5 774c196c64ecc26f987a0ab0bb737ed8
BLAKE2b-256 e2110b8b585a34656738c655b6f2bd80b360eef2dde8a8861b615cbaa21a04c8

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d09f9531add1343b343fbbbe6c7dd836a0f79b50a0fcbc907dcb7c22358e4e9d
MD5 1fa9d34b20b430024901513d24e3e0a9
BLAKE2b-256 9edfe16c9d6befe6f9263aebb0132551fafbad372c68742176876a6078fe2403

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b85f2391ceac58ba9def02d18fd56325ddb50eced1ce2103181593067a03efb
MD5 da020d141f552fd1c0963a64564f193e
BLAKE2b-256 c31a34cb63fefd6441ad88fdac87cf7564b31876c088dd6bf7d752630390c080

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9c70a55585a5f24c2b89d942fb7a15fc717b0f3c36ea6047bb69348fc1c71afe
MD5 71dde2fea0da0791a231ca7991ab82f7
BLAKE2b-256 385787ec86a12063dc33f2989cfca84ad681db6e407ba700890b63a248f27c5d

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bc29efea0790c57666f116a5a05bb29c546fa35670c980b6cbc8b706b30f13d
MD5 5c24e6d41f953b9045a1cdd7fa6d5192
BLAKE2b-256 8526bb689761d6a31d916727081075b0cd9baae41fa76bbf564478389d6c953e

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6df04ec7454c20c24b7c14284e579d9e2cc122b0049330a5d6fab05cdef144d
MD5 32b48230d570dea204beacde5c78d6db
BLAKE2b-256 22fa37d73fa0b090b872f3fe1645bfe5c34cd7e6d81c530179ad3f05abc5e266

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2375b73c25afd0dec7d026e69fb04a9c2b45c9e19330055928f9835e877dc49
MD5 74698cd662fea9ed3f7699f97f744092
BLAKE2b-256 aee87518a978a597742bc93cc8d79c2736e566be33fe3b6fc0390f20c1170061

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c2f76ec9856accc4971c907f89dc30e1a222f796bff250b3921fc20164c5199
MD5 e4d60581ddef32860108636487c1f728
BLAKE2b-256 abd7c697d09253dca6d1104d869174ad2ef954dcb589f2e8e8f2e3fd3250215a

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31455432541d8bd734e6521e93c1741cf8c62f95c9ecfe69005118438cc9c98f
MD5 0dc8a60496dcdbafd18fb58b747adc32
BLAKE2b-256 2a5a1cc424a1126bfe59243f9312c36ea0f9d71552cbdecb8eb6f14bb43f0241

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8051ffcda43f02f18fe58af0fcdf229ecaccb5c95120067d3ada9b934fe01156
MD5 41b93071b59df0a44109dc50ebf810cb
BLAKE2b-256 575c56f935b68d1da06b44365409740c8ef4b9e33ee3c35cb1277b1e03031ce9

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 85d8574b675e6061fafc1f56f544bd972794b4accae084309293e05de960313b
MD5 20e619db791eeca66a4fef0bb1746728
BLAKE2b-256 a27a49306a1689e8bdda7feb72b81aae9c9f1069acbb0b32939b1294f6af5450

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dd331410eb6bb9e08daef24c0b0680c1c584cfffb79d27cebc1d36d5909eea1b
MD5 74769e6e34b5062123e510133d777154
BLAKE2b-256 25a63b2741dca1bf33c3b60dab11288d977b89d632823a46642d172bda5f209b

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c749f8a403b63d3ef4f6f137a87a80f5a01f3df3bdf1e68a4080906675da2306
MD5 19e601f12e806b05be5d8e11ab385bed
BLAKE2b-256 a404f5d6c1449166f8b913858a768b4daf193e97fc09e9e26ee169de00863dc7

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5196e292f78149576cb1dea009ee598c1cd3bff835ada32da0effab8a2411fd
MD5 5308dd5c39df8a2e0a824600201b9ae1
BLAKE2b-256 af0b7bc16f124aca994e6ba9d498ef493bfea3f7464a51419b60bd34a40bfb3b

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92133d6551688dce3fa43ab486fcc3269f78789ac3d0b5d3bb47fd2541f3666d
MD5 28b231bf6b900ac6da893eefd6ec50cd
BLAKE2b-256 7a7f3e227e88b4de87b0545304e927480b6522387f2a24c36800b1f4f92e00f1

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b0ee92e73dce40d4dec875d11f1945be8abda986b26c00de05ade6a9c8242853
MD5 96c11fa9202852c981effd2ee2f487b1
BLAKE2b-256 33a2eac9b8a35a5defcb9fe5afe2206035c96389a26f08446eabd345ae4ed153

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2fb9eaeaf3539094f2d24b8d10680f52494c29365ccf07cd71d27f7c5c4ebd3
MD5 dd8a2e18b28f2e880f9ce54d43d32d29
BLAKE2b-256 7ee6007e185556c53f19daadba944f68da4274c257d49b67b68e0ab510c9ee88

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 277ac35ef8adcf0867e8b7ebcfd8febf4ce853d480bb735765b4e51e9161d383
MD5 cfdf8f2cc9e78574b3baeb0e736f726e
BLAKE2b-256 cae85bc2d4976bcade05952562de9319476abdd77a4fc6f7c9213098acb2eb27

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d24abfe87e29f56bd73a5620ac4d4938e9670fa3a0e20ba9039e723a0bcc0bf
MD5 be21249df60a8ae2c94274e370815e02
BLAKE2b-256 cf9df91e4b16a1634d65dd54732a0a2a07c06afd28461aa1d99d49ef4578ff2f

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e118b236bed4b88f8bbc88110a1884022b5bb3526e1fda31d89d9d2f71eb9a37
MD5 1bf12fd5a27ca5ea9021c44358eb581b
BLAKE2b-256 2982352220e703f6f1534e3e230a93b501780d6c6278452a1ab4a113458c056a

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9fab5a60bea7b167d3f346c26582dc9e1c467caa3898ee8b84461e66294ed7c
MD5 ab36b48c7f116b6bc6770a98c96d7358
BLAKE2b-256 aca9f7f315dcbe20e719d81d8ab5af6f94a56dee3be30b40f86cbdef2b8725ce

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 581faa6ee2a623de350ed0ceb4bdc73f6c0fafab81c99b8f8c3764ecd26ddae1
MD5 29880ea7ea3ef0158d8539310ea7393b
BLAKE2b-256 c5340f19d1849ac1980f73cee42c7db2a600f1d6ed1dcb6bfe76dd9ab07acee2

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 bb97599889c5e5e95b800abba16452b6a88dd5222f0e0b4794ef8a29ea177b3c
MD5 8e74f56ba780167bb18bd2c3ad22c861
BLAKE2b-256 d725b649f443be4e2ecc6ad78a705ed975e332099fa6a254c0ea139690a32efc

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b8e7f9d2cec9a15632538366dedd9f1e0868b205bab35c678497c9f654060a50
MD5 5b3d7c49582ff3513a0375df8398ec8c
BLAKE2b-256 6363dc212c4a7e8a9be7f417c7282bb53b6cc77b117ed99dfbee7faa11736f97

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b808dbd511fdb9cef2b7a8993c3fa1a02326461cc60d0eb2cafbd16cc1b04205
MD5 87406fb2fd33cd1c3c68375e1425046c
BLAKE2b-256 9a7caebb394fb77c2b79048893c38865a3f43c648932d22dfefad24c589bf94b

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81ec86adb93f10cc8b8b6779312f3fa0848e8cff37d4a21fd786590e4008c257
MD5 ab97e39dc1d864c535e6f93b5761ca71
BLAKE2b-256 fd7de52f17b02f90014c4820314bf0be1483254a209b24b9d59bb7963799c445

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9dea8b9c529b12ea8500b7efce303123ea58b712f833fd1b74bb9fde66d4da68
MD5 984c39b2889c4c59907930bd5b839fb6
BLAKE2b-256 abb20a2b38e5aace76922213afd70ef8455576f617df7e1584a91e482561f309

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dedc88633de23301ded0018574efca4e6013749acd60dda6ec84409a840fd43f
MD5 e0456355176faf834bdf15fa79d3694f
BLAKE2b-256 01a8f77f69b32ac25a20ad0fbcd4820b44431a1f69b3d1bfbda49e0f0762ee9b

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6e1aa82663228b58e24186ad946dea092b0eefff3529e260b927e76686cee14
MD5 43ce92ea243a0f4677e35875203cc0f0
BLAKE2b-256 649c48a37353eedb49a8686b48b2883ec54dbd6a0bb64a7e2d25344eca6c3e07

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a07e2bd7abce29d53a62dba696b469bcf348e713c403010036658357b59fe6b
MD5 593e373e141a7dcc66c755556d1cd381
BLAKE2b-256 f5ee5a07c121db6262b61270679238e62eb7beaee1924bc490842cde9cc69723

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 afc3803c4b6ad108d64917210c26414c533499aa5032537e63aff0c6cd7bf3f4
MD5 01abb7ddcabd88f9621ebfc07b2bafdd
BLAKE2b-256 a39b7897faee046da48ffa6c7a2c4d74afabdf79375dee15a856a0965ff5ef22

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03f5fe45b5a3ee8a6b2a9c33d49551e8468a9027fec0754bccac65ae1923a035
MD5 d6cfe4f5bbf1caf5cbdbd093fe7aed44
BLAKE2b-256 fc2f0f97321e9639da497348137e3d3645a2211314a196377fd717e5fa0d0ad4

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca4532adc5eb85263f0db2c60f625768141ced3909741de6736d5959d0b78f52
MD5 8ee3ee7335ae58ff3db1147fa69004dc
BLAKE2b-256 8fb8a0e88dfead4c2bf848d74e0654ebcaa7feebe702e767fd8a4359c66de5ab

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c2e290ce55158dfab035156a897c4e84bb1fa810ddb18be4af787d8622972f4f
MD5 9f64d1882246f686e2ec84e768d7d7b3
BLAKE2b-256 093568eeb46965a4c6bb3390e1829507013a0815f3a9be3b88c692a22086e6bd

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 044fdc05d031569741c4ed2e69ba208b04c573247d0b4ee6407d902c7f0abe81
MD5 f2bab0c6e29d4c20b6ecc72e2f4d46e7
BLAKE2b-256 f0715d07c1a847aec0bb26fddb244b39904d7307f3e3d1099fe71cc849600222

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2fc10e35fcb7b3873b2f25f19887701011a77a7226cae3707e719221b146bf3c
MD5 311cf07fd3fbd1eb8d10389c676a66a9
BLAKE2b-256 403f8113154cc3689cee552a1ae2ed25651aa96d846b6e9df4ed236c07ca926f

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 900b35aba40e684603b66486dd53f39999f7cc1e1ee1404c96b3ef0e577627db
MD5 19524ae11814173ac687d7243a9a8eba
BLAKE2b-256 ff00fbe021e1b7df470486a2fbc49d10863bcc6ebcb4599dcd35222e4b611cec

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4be99bb476dd90bf1a799e42ff1bc34cbd1a87f3bf2ea5ca2a465e455b37e9cb
MD5 137bf83fbd62575e046448cb123033ac
BLAKE2b-256 7c363465ab0a169c27e73e8e3a202c1cfac0648225def53335a0970b0eca1393

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c761e3166cc75338e87233acfdae1f2dc5e04cabb1cfe3d6511fb3153596781
MD5 f60e830ab430e6f91d758b454ed80849
BLAKE2b-256 05868e38a747b52b9fab0d179d1f8f528f2adc8b8622df73f3770d0417aa2e9c

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe1510d970ed23f40aa3c622f850de520218176bf6611508998e511f16d304ac
MD5 1e8c007d1ccb29ef7fe12c7f39ca0082
BLAKE2b-256 daf5616d021be1ee4ece820674a38494d6d645d3ae9da6427f92f427c3b3f162

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d401b72e4ba67d194813dfdd984a04a6c9941e8d716237f6f62018320b9684d
MD5 7f4778b2b4bc7b97b2d52314bd68925d
BLAKE2b-256 6d5d42c41e17efd81f92ab78dac1766c1f89cc32dbd383cf62f221f4e2357a72

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3e04cd6994a761683e50f753029165f1576ba4568aadd1d6c004f44bf818f8c
MD5 441b9d5d72ed137f538f4eb1a2f37f06
BLAKE2b-256 e68cfa68b50e3f7db57dbffcdf7ac0cc0be0ef9204ed0abaa56a50420542233d

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0ef9baf8aa3bf07fb539ef3f13091c37eb5757e275dd8ad29adcf985118c5bf
MD5 5c021c374cf3425940f2745b9fe99a7d
BLAKE2b-256 50d19d9796da85e9f37da4cc9fdc3c167eff188d4fff23cdecffa7e960b17b55

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ee9161ef9500ae3ccb57133e8dbc7dce75d6599c6fe184a138727abaabe826e9
MD5 fc21c47a6b3fd8665672ce62d55eb6f8
BLAKE2b-256 30e35fe902777c6ea5773a4edf450a2a14ae7266f4a662784de415d86509f26d

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f97d836e2d4acf98c0a033565700ed388160c312910fa7de394f785d0071ee9a
MD5 9dec53b94dbd504ee7a0489ab4a4c2a3
BLAKE2b-256 15760c08d868289c480de78a09a9f16343f4f3c02f4b1eb48fafae7827a968d8

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0dd3046ddd446fd0adb6e6faf384a42d9416e7509a8a45a522c8df9688f21292
MD5 286b896f82e7ea37c77178867394d059
BLAKE2b-256 e15905081fed01aa7e1bca86b4c162468ac83da07798cc1c10285800184a137e

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d51e61f04bab41d630ef6c48e6247f2b4f8bfcc210f99c6cf92f95d809435df9
MD5 f2841f5473440edbc479246c536bb5ea
BLAKE2b-256 68b8f95b0942f3abbb7bb82745277eb7e1501440ca5b43e163101e1c338a3b38

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d65e105a6a93da0c96908969c9a4fe47982671bd56db66ba171fb9a6d19bd8af
MD5 69ff70bef0791b6c3221c6470be26ba2
BLAKE2b-256 924148e45349477852bae45360ef795504d6ed9a82a8a34b2b4a0f1c9e2927e5

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 338e74d4517f2881f217f43a8e5e05ebeb63c206a5b143edb13a1b206a2447f1
MD5 01c389fac837308a09b61b6dbb372a78
BLAKE2b-256 ddb914899d770b3511e27850f8fafd524a60280bdedca29a298a1be6e8c14e31

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87e582b5e359d8b9fbf7b6d8c7f184d5898ea4f89be0eb9889dcf9ab112aedcd
MD5 d74abe99c4032407080cbc351f4cdd30
BLAKE2b-256 18f86e36fb4e90fabc0d0013c0a19c304f522b86fd87754fad9db251656456f2

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62ac1af42e2a378c86801cd5d126f3a858db977f8a3a850444cb1183e340bac1
MD5 ab7c4aa19bbbcbb7df6887b451c4a0b9
BLAKE2b-256 dc865b818352260e618dbde8df59d8eb3f92cc087af72daae82c58e3083f96fd

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04ec78bc8a2439e1982447a8f9ee28f46fb701c9906dc4f4382fa3873f879cf8
MD5 527863c0afdf227efcbbc9798d9fca63
BLAKE2b-256 bf089c453b865af68c60256640ca9f8c2b947675ceca1adabbddf3d60aa2c8f0

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 62b16e69f5eb30e9185a67f65e9335f60eea408d34625f36c0cfb10f0006c914
MD5 6540bfb1ecbdc341f7cd19f44327e5cc
BLAKE2b-256 be56fb1104b2d0bb879ab08daa6f7f2dc416697acce3c1b17394dcd0b6f467d0

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 298bf4459dfc19ddcc8cdcbdcb08894d7e87ade5aa00e91d8882c450f53973a3
MD5 020ddfdc8d9eb64328c0d92502859edb
BLAKE2b-256 f97a42fc2cf7c5603c47b0390c3ee1843a2a6b12bbc3e0d31447f00e9076be12

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8d712123ae22969b72801c3c8ef4a2af170ee7ba739500b60643cd387f6b5097
MD5 f58b0d8e0b559fdce89c7ed81af90eba
BLAKE2b-256 9a4a3cd50b8261d67b7a991b4addae23555e6443af869f96a25afdd7318690b8

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db41b68b1e4ec8f6cf07bd698b853f2e387afc0a203c0641294941a8967788aa
MD5 a4cfa628a53b3501c6f53d73b46a33fc
BLAKE2b-256 02234794dd9dce868484eae7fff2fb686902132aa602dfe842d5d7f9af72ac72

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