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.4.tar.gz (45.0 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.4-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.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.4-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.4-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.4-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.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.4-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.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.4-cp314-cp314-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

bandcamp_lib-0.3.4-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.4-cp314-cp314-manylinux_2_28_i686.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

bandcamp_lib-0.3.4-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.4-cp313-cp313t-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

bandcamp_lib-0.3.4-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.4-cp313-cp313-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.4-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.4-cp313-cp313-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

bandcamp_lib-0.3.4-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.4-cp312-cp312-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86-64

bandcamp_lib-0.3.4-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.4-cp312-cp312-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.4-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.4-cp312-cp312-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

bandcamp_lib-0.3.4-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.4-cp311-cp311-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

bandcamp_lib-0.3.4-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.4-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.4-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.4-cp311-cp311-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

bandcamp_lib-0.3.4-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.4-cp310-cp310-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86-64

bandcamp_lib-0.3.4-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.4-cp310-cp310-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.4-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.4-cp310-cp310-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9Windows x86-64

bandcamp_lib-0.3.4-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.4-cp39-cp39-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.4-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.4-cp39-cp39-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.4-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.4-cp38-cp38-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bandcamp_lib-0.3.4-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.4-cp38-cp38-manylinux_2_28_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for bandcamp_lib-0.3.4.tar.gz
Algorithm Hash digest
SHA256 2d62b0d23de13dfed6d377ffb78d7dba3742524cf8aef3051ad852a5f5f9228e
MD5 3b34b1b546bf07514a27e4ce8da5aaa9
BLAKE2b-256 04b20adec633da9bc010b8a0b38e68fe93a249ddd5871fa9ed1c0e1113c523f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba5778b0351a1b1c6fd12b7c8dcfb008d48fe76325bc42af37d459d7720cc94a
MD5 e8813d3df2c7e997d4e8e7fce70d0604
BLAKE2b-256 6de20b742189ca1e5b3b8d1f7c73f67e6a28384f8ffb2a5df4b1c67a0cf87e6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a670995416c1885db3727cc8df5299b0a1d5622c4215fe6e6c8d8765150abfe
MD5 d6a3c810b7b64f154f585210a1e88773
BLAKE2b-256 a52a97044b2ba9401a6eae9194725cc020b968df53dfae23688b0dca3ee7884a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e15a93de5174ab15cef22bb8a788cfe9f3100ad01b8212b59be8728f702d436b
MD5 dd80d7255a875a734e3e66506699ccc4
BLAKE2b-256 9a3d4bba211ac365ded73555f14d4772d1ad7de6a5d740fb9f3d777d04b0f1f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5273564f75097b4353c664031f785b183693b28ccbc860571b26acf534bfb595
MD5 ec7dc26e5747a48c780a9de9c0ee0f3e
BLAKE2b-256 541c00ac0fc1aa1940aecb48f12df83a9bcdefc05f8b8f68925cc03e45420fe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d490aacb0ce62a7c4b5a356a028a672fc34028c67e80fe15196999e47cb5d41a
MD5 c5961d833eb18e17a1e4083d697d2945
BLAKE2b-256 5c98e68bf484ba7c9b45e0619cbbb8b34c0e9d3d89e490e20b850526eb75d1a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 294623ad1b2991f5d1f8cf6cfb12beb504659dc9c9e5bc85d700e3802c5a87e9
MD5 534b08795d0d697e7370cb5db487b24a
BLAKE2b-256 309f79c0fa08fe4749d44a1188f4811d74fdc747d5a9ed4ab995f67c881f6cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 33e8d119b9a09cbecbb413cc9472745d330c77bba0f62b05049a72ebafb0bc59
MD5 a2bdbd1172a982d94c9eda71ccac051b
BLAKE2b-256 f7de764890a4cd726c6658212a70b149a6a91e669624bd826e457c767c472578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b8365decd54fb3543aac7502e47d252e7ac536ea3bad6f72ec517cae5977a86f
MD5 ff99466ceae19ffea2272f28349bab45
BLAKE2b-256 5a776cd8900f8f6a8c917476e4abcdf40fded5a687b281a67894efd038c616d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e41fca6fb82167190b98050d4605d83f4bb519e2f82f2bf0f26504b58b3dc906
MD5 cab11d1325e6e773f860d3664f958096
BLAKE2b-256 210a3c2238b3dbffe9f85365bc937f70bf3b9fa13fc8cda4102b883ff4cff5ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2333795833912cd46fc068371f0e87c259a41057e7a156287baa8d96ec8d2405
MD5 6af8e8eb526a83579d289c28e1c0c6da
BLAKE2b-256 6c1d4d9ad185671563041688c185b253e6ca3d8836cd8e0e50040a2d3befc0b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9be6448a6c820fc01a28b76c97ac014fb41404348348fb4694535e0b3a17322a
MD5 bf8690ae89151f39ab5f898f0677903c
BLAKE2b-256 6c305df83f62bc1be1e1621be8360666e97947ca8426d8967acad80a254c2fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9b819b604a39860dd2b208f7bee45ecaf59c0fe8cee91cd43dc0dbc19dc01ee
MD5 f791e3105ed0872c385c656e716b1003
BLAKE2b-256 359921405257501d7048de2a0045c53603d6efde3881df67a96a40499096b4bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e5b2fb7ef11cc47d83a23b0c397c211118cb3aaf792042ddc540fb068a29eda
MD5 797a4f80c6f9dfba5b311e48e412ad3d
BLAKE2b-256 b8a7b3b7e895f702d3990c7330127cd016fe7f80f821ae56771a5430e0f9f880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp310-pypy310_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fc0216c4f426175ddb00a6b0f3ca7674b9ce77ccf5c1b76e720756aa72183583
MD5 32d6fa5536e1535ad000557023510961
BLAKE2b-256 5c89338a8f35e912baabb3e4c2260e1466c7d073795d45d4d60646d6b4e05caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9c74f6a7c8ca02359373c361582833ebadf3e9289a5816adf3932af4936b7af1
MD5 ce05bdd2065aa8ac82edc58d11682c12
BLAKE2b-256 d0000ed135d5c7cf90d52b87a8d6b3ac20788f58f55b16d9e828a9333d2a170c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9b029a4e9812ed8d7e979e209ec422b5a7b3e1f3c8fdd26722472ee46d8abc7
MD5 431bda093bc240b1d64722837a910945
BLAKE2b-256 69b61174adfefed3baec0e05e14805f90faca7581686198208e6d222b2dda70e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e420208054485aeb201e4e5ed8d1e1ce85f326457922797be2366782a0f59327
MD5 6c8ea358c59c23d1ad2e23e5e114db10
BLAKE2b-256 1a01a1aead48aa5296b4c3363202554a8924da8f0c74b263a8919751184af17e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94ffce339f081c81a8d84f47f6184d7740f3237da8d70b53d2c5cb92ffc24454
MD5 d192f71bae79171d679f1ebdf899887d
BLAKE2b-256 b93d9cea234b433b09531d5a27043a46abf5a768d7cd30851beab11bb99475ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63404a869493c0bb0eef684f0643af72931305c591935e542a7c241bc8b81d61
MD5 e45ffed566af31739df8f8f89063f537
BLAKE2b-256 eb513a6b695034f04978ec889e7790baf421a8948ad0620bd6c105ae405d987e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ea4d132245443a8b83feaaba6ffea539a1e05e9817ea6fa4eae56c0fef24912
MD5 8f6f7706c89b9b4faa2cb8fd55db75b6
BLAKE2b-256 0a70fd1c169acd03f42cbdc77fd969430de35401a905b523a451d76e8cdc7ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp39-pypy39_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3a58a3eb5a30bac4c2646c86cfbc63d1ff0453a023edb45d2f1fd027f6146b94
MD5 e13e1239b245dc5fc2e36b9339ab7c3e
BLAKE2b-256 f86a4b8fc3a71d4c52b1c8e3ad0cb1dfe57407964abca375d86da6d89b83cf3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6d5b08540b033d8eaa7a52c58fbc861839935df49eea76d60440ea60ad8d51ba
MD5 f9ef07c8ddfe161cacbd97b6c76cabb0
BLAKE2b-256 3c7f47ffc9d2def131c38d84e658b8b89b3e06e3c7c5a357ebbac47a1e846459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7cab8abed57d84b9345fa078f04a5c6d071c3d51e1a9c23fa859823f6a0a7198
MD5 f4dc3838d6f4af29c967ef9ac044824e
BLAKE2b-256 f30748e6f3a0c46ff9a5077da665024f46c8529c52cd5a5ba4dbf7de0b06f206

See more details on using hashes here.

File details

Details for the file bandcamp_lib-0.3.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 38510f841d33afd79f3af9bf3bf807dbff6003e4cc08d3eda0d0dba7a52457d7
MD5 e8104f2ebfae8be5da167fa1181e57f3
BLAKE2b-256 5f887099c12b477d17929e796aaf5889ef470214e8cab1ef80a37d58550075db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6819a406f83341f1d7714dcc874a4dc85f6d74bb4c49666133ca2e41b31d94d9
MD5 3ce9d34fb23bc98605d939105d24f537
BLAKE2b-256 6fdb00fbe22305b00f5f4643ca5bf3059f32fe7a08854f9a99115bb8271dfe23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1c8a3992c80bac1a0cde7b42495ba6b2ade34241b89317f25201fd024ec8a7c
MD5 a0ab9d5b123569d1e25fbfaec52d35d7
BLAKE2b-256 5199fa74f419844674e2e9261fd2b176b8a46c7d06cb40b96096d7dea88ba22f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4ec86d83d6136611ef0813dc57507326a23e70f70b96b04462d55cc288325f71
MD5 cb299ade6e82ed10c1acc02444909091
BLAKE2b-256 fd6ad83e16fd181d663fe292a84dae95264e3ec437ddaa9407d3d55d10ff1c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 451f60001b343b9d06bba0b4238f55f34b95c9a3f09eae24fd4785dfc49ece3f
MD5 c3c1dde6985d9d26f5c8122e66f924f3
BLAKE2b-256 2d5a958b113920ea914b6c227af4bc4f24b5ea78022fcffdfee8390effa6a078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2559aa4f918d26ca88bc5dafac61170ab2daaf1e7bb49d7dae8ff82552acaa3d
MD5 30d9d80a3a9d4525a11466c7e70d3124
BLAKE2b-256 b0575da2e7b7840fe6a7367b8512b9158a22dad003485ea656aaed53c7bcaf32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2d51b6eaa4d0630a04e2afda2bc485c5eb07f0f7e775b8e27c3199b64d09c12
MD5 dceb84577c08b5e50d1f6dc88d76c5ec
BLAKE2b-256 9699b86e600a74608501e15a74d5e6077543407bab8568320aef7c23c7cd4386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f463cd40992e275a689da73519d2b1f323c43ee77e1a4903cade27160de8287
MD5 0afb32b93ec87f0956e3c476a7c6f8f8
BLAKE2b-256 0e892f50922bbb8ee25a15f626a2862ef426da7e03bd9d89825faf06535f962b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e89b6e18dc448935e143cf5377546283718c2788aec37d66d148614aaeea692a
MD5 409d7f9c754dfd84ffa1f30996d692da
BLAKE2b-256 6069e542a429445fcf111c5bd5d808df64ce073177bd42d5c92edbb429c7db64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a52e0e1e2567c367155c9bb83a545c8b146c63045573a181ff7e7a2a538113b8
MD5 1a8d1bdb8cfd9d8184b1dd46c2292668
BLAKE2b-256 85ae1b3e4df54b2d0eacff3c4d7cc46ea865b5b3f59fa7b2c80e1b5513261a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 87a8a0f9fd9a58b43959ec1f406b8e4af93f17bc982b32f3f023b394bf7bd800
MD5 5bf5ce5efbc68909f1be576dbc6f8115
BLAKE2b-256 121dd2ca896d11a0744dd10c9d3ef663df7ffcb96dbf0f2fa29025df50268df0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ada211e4491ebd0fb580d04e502e3c1efd8682b8ef18287a6d247a340ba192d
MD5 3ca88a2473eac89e8905cd2b1774eb95
BLAKE2b-256 1ad4140ccb8fb7fab650ba3383382bf8b81a3ec7129f867d92decb5217421c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3fca086246447490ccd60644b9c5e862507203b887e1d1a94b0b8c446872a928
MD5 a6fe73252b0dac7bd41c0169e36242c8
BLAKE2b-256 d8bf28304299e2d99c37871f8304a71433c8297b5faa0cd110d88edae0bb029e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 047718b90e67b5ad82c8604a8d75622bc02ae7cedf521ee6c8ff7d626f87cddb
MD5 761d0e7a92b27164a5cbfff9db436951
BLAKE2b-256 2ad46c0aba32a3442da408dbf12e0b1ea4cf9fe0a556843a0ce5530d9ef1d643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b15c1f245bbb0a8fa4aa0443cc565ce6db15fba7b59bd14b1fa6faff0397775
MD5 a464f8df10f74431921bfe6d4c67a650
BLAKE2b-256 b919f6a1edff2bf9037b7f962ec1fb4f6c2df6b698235c4a978cbfa3424b5390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e43510cd737e455129e2b25f52176730eab2c279328f2ac40585276446646b4
MD5 7aa7af406bb6019405b5106677e16620
BLAKE2b-256 e5801842063b2b8edb791d92de8681ce3ad3ebc803b5075d52b9389256f85ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcefc6c047c46b363c136a7c3505936ceb8f147cf2d43774d05444bc62be458b
MD5 c2109c046785dab83d470a566d2b90fd
BLAKE2b-256 3a8c849af84768229eaeba561ed59950088cdc017b658cf147ca988fe0607a9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 256f9d0e08254db16b44d4ebfbbb27b078218dd9f50bf3afa990a1eabc8a1596
MD5 3e1d8b2e1baa3d39cc5ebeb9f72386c7
BLAKE2b-256 b2b7d2025c4f50a42cefde41dc1776ce023329fcbcb2599b33fc5f4ca8511938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 175260c1aecfdbddf313d852f8c32d300040244101cea6315a1f5e43d2b5aef6
MD5 ea7e132f244318348d7830515e9fcebe
BLAKE2b-256 fce9f704e8fcd3d5e875485cec0fe49b321daa85efb349097278ecdcf191e97a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8e8ba361136f4fb2ccef249a052df06527defb6812bc60a701803ebe371bd947
MD5 af49457fdb6f41da66dcda0a074f8636
BLAKE2b-256 8746fe68b41e60a01bc051716e72b19b1dfb55b18a2701e5a2ce48b27c64217a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 cdaa7c8c96ef2f92bca4d810ad0c3bbfde59a42e808662d7692996bb3f870863
MD5 aee0f1b0ff3e95bbd9bf211bdc1063c0
BLAKE2b-256 d25c481b16dc25d9229575770337d1db49e6c4021447c53b538beda6e8cc431e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6160d2ec2ba8116c3e32f76007f5400dcb34c3ac20d7b12557e22971b9a01c3f
MD5 05482e96d40a083cc778a6a5fea7da50
BLAKE2b-256 a65981974633a5caf691ccec5c7b10fb8efa128fcc2a6c98d4dd6c55f0b4f684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4984d3cb3c7e93a6e96b03abd78572afbc8941b0ffc888aee93ad3cc572074b8
MD5 8df064929314603538524ad0cf28ba7b
BLAKE2b-256 f90f09670b14da649ae54d0dabfe82a3d76280fefe627e0b80e562a7a1830621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69b10a1a646dc68375e67fd1f83512daf97f4b8f8257c169120327c0a0f00536
MD5 201d29a6216e0b2a841497233dc04373
BLAKE2b-256 865e0c55b7b635bd02fecf30d10fb0ac567e45744b4efcf25f72f581593475ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75d3f666cc8b3d4f4d3cbc3372a47d109bfc4250021e801e68aa5afb0edcb7d6
MD5 03032215f5f5f0694e6070c1f085fd6b
BLAKE2b-256 ffcaf862baa7638851147904b0ffd09fb6d88a2897e92f07c813714b247a59dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a0d87c12ac6cf14fa19280ea1ab129d0e03e0642a11835f2a5d3f6d54545f76
MD5 3bf8917685d1330ceb58ec1aac90abf4
BLAKE2b-256 ceea07573d3af37afdaacc1bc890a10e556b4f35586f4243a3e385956095c1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0df6f8fc3b6d8832f61526b6c8fe4b5767fc54f7d7c4dfdbc85747512466995c
MD5 cce839c20f2a7bfc44147e127077cfc8
BLAKE2b-256 f391925619cd7a47885774081d1e9a4cc643ea3c262e8780d426883b96cc8c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a95393aa12696b88502cd61aabb0ffba3883071cb6f59132388cc5b23d46ad2
MD5 7a2478c77e7ba6b59bcf2db7df019d58
BLAKE2b-256 f8a62bd2c454fc3f40b564a5e939450ee1e1cb35e4b48f17a16558564dc296dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72742b8fc4318ff434c0fe40fb9783a23d8de248c71f074b96fede8fb3d72119
MD5 f52b86e2812f29f3987e5d892fb13e97
BLAKE2b-256 d97e529955c13104ddbfb0720295745ac0565c31fd02f82ecea55f74e552ac37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20a36c720b646d171e78d5e3a6b45ddbbbb8e1e775f05c3ea8901e68f7065e69
MD5 9444fdf175dc59b2dae22a215ca60d8f
BLAKE2b-256 2f7f4b19b8aaf5bebb01b0b1fca5a55adf5ede9174e4ad3433969abc059d5a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b89a541817f2e354a9d2dac6dd0e98172dcceac7ea925f03d2de81a6d64c7758
MD5 e125b5629463640741fa34d89587e9e0
BLAKE2b-256 61f4924611aab025922ee53b3c36715aed99d4f2ed73cef9df9d67e4339cbfae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 006d1bd5aa48cbf05d47bd226e834f5d493e2dbd2b8b0ed529e298f3f36a0cc3
MD5 25ec223d3a1ad0771bbde77244ec3ca9
BLAKE2b-256 46ceb0c6dc5bfc45ed9fdb0bf5c513721748857947e28b503bbd144b8797b2d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0954af42c9006918e4f50b4d88ec3fb5973f3d3bc278482a70c75a9cfe4f43e1
MD5 d771891fe062a6ca2c8cea9b09597f99
BLAKE2b-256 29e8cd120685bf3f1c379da073acc94e65bfbb91be54335d6afecc753ae8257c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0448c1c4f15d8cb35f4dd428e70b5844643475b6802f24ac23e6c2048a1bac7d
MD5 aa9c58c3b0f369aed86e26ca94e0d63c
BLAKE2b-256 d643858f36fc4ef27026e221656307fcc448c5c337ac726cd153219237a2876b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee175ee12a27f62912bd39d867156032ccc354817471fdc5721d45b1a79c7bb0
MD5 b2eb0cfab18be21d12e443310a00ffab
BLAKE2b-256 747f2ed7e6f2b92abe448012fe0d84b737445d3265c8f08622c0bac54aa3bc7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4bd5021f481b4e4ed3720fd788695c98cddd8e677c09acddad2f8bd0eb3d4fc
MD5 140f49e6ce283bee9a61ff752969ff88
BLAKE2b-256 f737849cbdee3643b0f903508ff16e6e7a903f6fb59d165223513bbaf09cfee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7fdc779bb43f9d954b3debd438b60db89049dc4f07c3832a9577a6113f201f33
MD5 d03a2cdd0155b25343fba68590d135c3
BLAKE2b-256 6d3b262c4c8b484347efa5e792c98b907fe8ec9e190a5719db457be00f74b914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee186839ecee242610e9778231fa31b9f753bc3a426a16383c482b26f1b73017
MD5 380f11e021c648205650cdaa01cbea1b
BLAKE2b-256 12d45067007001e6050614c08332fac6a1afa7818d23c75a8e3aa72b98484838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96eeb10251b84d3a459e23afd48277830912553315c24d4f3586113bea296f21
MD5 b13f240d4a6f3fb5b4cbbb92523e506c
BLAKE2b-256 9e5be06467a0b9d65ddeff66ad595e73d3e5767bf99c19ab046d618d46a453d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f4238204b94d6f3b4bc7bdc1b31a8618836e459197230f42e16683a384b9d7f
MD5 7bf97664f6dbebabcaa2901f58fe59e3
BLAKE2b-256 073b6ba105b0d82afa5cc1a8a6fd3cfaad4acc9ace47b4669ba48554dcf309e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f74a50b7149bd454bf618a19ff3a2b5046627b935dbf2369767580212b302b9
MD5 129f9b3c46b744326d08d2e6319c72bf
BLAKE2b-256 ead05b469f93bbd3f05ee4eb9033b19e4dcc7873de919fdfa8961adf793b6601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afd83e1f2d96588ed2f60878fb40140b049cacb5a4cbdcd12efc378aec300dbf
MD5 97ed23bdc0d710afa17a4995561952d4
BLAKE2b-256 6241cea575f9cb081effd2af5d1976e13886775ee1dca2ebefbdc41491e988c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a500571b3e44e391964f78480a7dd735ec013b255ef83238af87ce032dae07a8
MD5 02e0cac7d193c2b197c7988dbf6adc74
BLAKE2b-256 c01f268d674ea1c0f86635ceeec2ee21a999903721770c50bb5799b9df9bcb0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d3b4601f7839e7f81081a3a647bfd3ce6454702019e499572a4d186da81c219c
MD5 117cad68517a81cccabe1947e475db10
BLAKE2b-256 30fdda5fdde30eccdbac53517991b7eb9376cf9718c619683f3d9e438d94c0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c2083c3c3f5c07bd1a7aaa4e1bd00140e15f6255fe9f126978129ad99c963d5a
MD5 9a713ec285c5c52ff589ba96ec38b9b1
BLAKE2b-256 7bafa779000b77d760c31b8ac2d41fbde3a6a50bcd2b7aac13e32cf95d393089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3639e6ff7fe93d7d1a6ff55aab0d4fd200171c0a3a55780ff6e75751f6315e09
MD5 f589b20880fd0c0e9bc2dcab31c1b432
BLAKE2b-256 586488612ec78d5e8d26827ed5a10c634b9058fb66268b71d2dc012073dc826c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6963d5e2fdfa69a6ebf3291d80bdf44dba92fd52250329ee78977d0e5f3f2c1
MD5 fdf65cf601e11109ca16c9a28776c080
BLAKE2b-256 9073dfd7fec193375c98f241d62f5279f60de592001d98156b4d4761dec0db2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2bb47e411a53ddd0692bfb11134da1d278b811b87156ef6a275d8745e47f5e86
MD5 cd8b187fa2232f5a1a081f75dda1c0fe
BLAKE2b-256 22116d8168123d9dcda50afdfed11a6f82d6cfad8bb3f7c4b89056c4d41a3514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 33e693302f069a2b1e60f15cd779d6da65dc19f0913b865b1ceca1552d9ae536
MD5 447dfad1bbb19508cc83bea9e9ee78be
BLAKE2b-256 1df5e82e55d24ed345321084f9e5d604d719313147e7589ce694439b11e13620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99cd5f5f5768bfb6101047a7ccaef1ea7196c7ca7bf25b7d682727e279ac900a
MD5 c827285a10ccd6791ce0ddf5d1903e49
BLAKE2b-256 2669a967e208477eff50d367007071fc3b895f8b7231b692f2d56f26d1ebda5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b3f097a071ef49d8dad054a6e6d0e8eaad921a27af0ba1af5bd523a1b121f3e
MD5 2e1f2be76badf3da283f866b1d8370e5
BLAKE2b-256 657bb668839e757d6218fa3df083034f63be3b81780ec7964fd4aa28ffe87d49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9d9e21a9420389778be97fe2380a364e946d0f4be2341492e120ba6cafb7b12
MD5 881834dda7c999d9d5b119b92d08599b
BLAKE2b-256 34c716a852f852ff3b66cbc1e3d6a657be570b9bb3e14ec0733754b043510468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65570d0eb4aa471d03afe6b3852215adc8186fc7d3a058b635bc7a730d63e405
MD5 ee7b931806786713d75a162f31f728f8
BLAKE2b-256 2ca23363b4775805ea9bf479558ec0e004e6b20023fa3ca99916e21e8bb63fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 543a1451acef2d6530d63e2cebbb192908a02348a7b6bea6c8afd0fd03af0755
MD5 d5d18e4bbe59f01e2d5f0a848c7851d3
BLAKE2b-256 693ba7a0a3776f3d57320ef16edcdc7fe31c167fab9fb7b644ee078988d35254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 26796b33eb5e8612e242853f540c7dab4897cf8a5c02a84c4476a050bd3a6d97
MD5 305e5731320a33dc33cbd065e52fcca6
BLAKE2b-256 a8ac1a239c12c40a1369d85f01e12c0bfa4cdd16cd1c477f832ef980369c0688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 75d5deee165eb1a9f3242fcdd077763dfdaeca11823dfafaa1929471ad644187
MD5 6e8ca42ba82ef10d54a6826cb689a2dc
BLAKE2b-256 1c88ec8c74adad0101e05fd9d21df44ba9988e9591073c8cd287b1a827bfd711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e781fbb48f7455aa639a2874293e4672ef7165b91dadf90db8a322d456866aa9
MD5 860762d4bd5565eace308edfb7b1dc3c
BLAKE2b-256 89f505f8f7cf232829f59bace34c44cfca3d2c0bd0ae47fb66541011a5da4fdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40f893dd742d267a371ed78ce27c8800356826e59fa38e4d9d1ac75968f5e4e9
MD5 0d1f2bb0f3b24d852d2636f5331bcbc5
BLAKE2b-256 a2c232eaad7d249a1e7717e82d5e7df7e9d6034f365a77c25bb5bb3093aff37e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d9ed89247b63118659b9510548008abf8b9748ef096c318afb0fab6c6ccc3bf8
MD5 aa577297e674a66515d301f1ecd8dd11
BLAKE2b-256 ed8e9a245ef0fad516e2413f83f64743d9656dac50bfe896e94120df7c1a7b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f833cdd1ebf70bbf9637e487ff06f13a11b2e82efca845d410a6db8cfb5b5e6
MD5 69a151fb84a9620d1ce3593323b613f3
BLAKE2b-256 1f44d90b2e89273e68d05e9446d14dbfcff7a8c45a18d32d6a9727b40e494054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1951b89ae3d5ea6ee8a39d265c6dd617b5c83a6b146a48687a40b65c2084e82b
MD5 673cb378aee10a39c0c4dc429d78f626
BLAKE2b-256 8563b6d81d51668f73034bb80660d4ec5fd77314736619cac225eae7a2b9e433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0df51e6124f479ddf29124621e23b3c7c2e6b639c065d16f64a9b22f7134ad72
MD5 7f222460765fb9a719d5ec3888a5f2d7
BLAKE2b-256 db772c97fa2fc6a93d0070b4c5be20bc1e200936e63be3d6f77a652ba37b0556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffb03860c14f8447ba0d490ffea9a2cf1ed002cb6042cc2fa59f854afa530aad
MD5 b06c874ed61443454b7e635dfad2d51c
BLAKE2b-256 a7bfabc38d9395b5a9ba7d2702baed7dbd9f8b808a3b2969959bf92bf82e3554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 602585220fee111b56a3e8e2bd5d7a8c70164d4a052bcf27e69018ce9f877c1b
MD5 da57d244ba48f900ee90ee4ac59cae63
BLAKE2b-256 1396a5a2706f8e9edf19084e84c60a848a0eafecc71a0ec5cd669499293268a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b4dccf3a9f576328a20adb78665890007d80c7a713c8e3d6df3c3ff126629d50
MD5 d02efaa37965a11f37a0b84ee659d556
BLAKE2b-256 002792c995d5ec254905bfdff3e567e7d2fc97d946b0ac388a2ca1903287491c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1eb31b3240c66f244a0376a23b65abadef5a8d1f833ee5037d33b322d30d01af
MD5 e5b294894ffa85d55f871d72ad0630d2
BLAKE2b-256 b1423d5f402cf749392d8309576d837923cd86b76e425ef7e6bcfd0dd94bc3d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5b72eaac29f60b1fb43c9eb285589821a8ce443185667d292ebadecbb8ff0e1d
MD5 0c064a6941ec7751115c90f1fd3141a3
BLAKE2b-256 b5496b4486ad44ed2da024355f22f1209bace808afd1805cc1fba75782fbd70c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5328e11509cda77baf960d76dbbc08ecad1b044e75ce4d2593198e0e66742962
MD5 9b1b9b3c0ba5c90b9fda336bdb9f6756
BLAKE2b-256 8c4be9e69f4aa2aa4a311ca6727fc381c21f6743cd1b1edca48dc4e81f0cead7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f79681d40bf8e51ef0505bdf37b6032fb91af54deb3dcafcd55a94288471a0fd
MD5 d6eb7eb488e50f0300f3abeeed74f28d
BLAKE2b-256 dfd051d8bc2521590342047396fd63cc74f80d7ba9ea6023c058a7186a8a8b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aef1d77e4f95d80d72ebaa4304903f593e4a6d610bb3761c2e387df5ffe90491
MD5 c8ef19d611336b2c472a89d1299e9a3f
BLAKE2b-256 961d43b04768d10bbb8567777beab80572a81d4616a92ee93b088bb745bb7c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbe47cd7180d57f03c3e9cde0ae13a42c44255fde05174c6824b322c5e7e68c9
MD5 610a78d33c40c9137eb42b2e176b7666
BLAKE2b-256 b8bbb23ede8a150b13252c3a5351ff19db8711fdf3dae6812dd595764d9fb11b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa42014a547422341b3f7001f548ca6313444c58d939feeec73c9df465abd82d
MD5 75f22e9842e8f74bbf87602f86500f42
BLAKE2b-256 92be0aad2f47c75877e3a5037a587f708ae918e0a0eedce20ce516675c601e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f16b221359ba209c12a5b821f5b676bf3cd07ab23aa0bf5d2437d815b949af7b
MD5 259773a87cb167583c208c48e5a73684
BLAKE2b-256 da01b669e687b7cb53c18918fb73638e13d023b08a4d425a0371590b682ced26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp38-cp38-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e310c1cae2dbd43bb77cf49f3c83fadbdda4f2f082ba2f2b10d0ec13223c616c
MD5 348a646c7a73f9334eac9be393448663
BLAKE2b-256 c743883ad6cc4f99e6d592b3eb4f8651458f9f024a061ea67ac654c63da3ba31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d61b795b9edc126fbca15e8ba9e1a433265bacda2c89ca9417d6b4bfbc47cb56
MD5 1044d63c8dba47c23602ec7ab7d5e3c0
BLAKE2b-256 ec2562d691cf9f1afbb975dec355421766faf1ae287ca1eba803fb4a1359bc4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0450aa4d5700bea7f3a7a836fdffac55dd4adf8805e837fb78d105debee8143e
MD5 71163b835f8a6cb6589d0c1796822655
BLAKE2b-256 4300928907d8a80eabd26105af0befef8a456c5c59e86fd541dc676dac1d04af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.4-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfe1543cc671e4b1c26d5b54300323ab6532596bdc38f6dcf2a200caf1d223e2
MD5 6f53128ec99508afd50f82b7630c9c19
BLAKE2b-256 b6f1b31f0da34f4e237fd5dd99164a62a2ee414e0983a8d3daec3c895253c1ca

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