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.1.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.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

bandcamp_lib-0.3.1-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

bandcamp_lib-0.3.1-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.1-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.1-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.1.tar.gz.

File metadata

  • Download URL: bandcamp_lib-0.3.1.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.1.tar.gz
Algorithm Hash digest
SHA256 56b7e4be128bf04d876afa1319164fd708b4d5862f43f26e76b4c493b93303b5
MD5 c084c3d9f8e4474496ad5e4750e078b0
BLAKE2b-256 e329eef5227aa3d292b78f747174e616566fbeb75073897672baf50303734e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5cd678460411ef9fabd06a907a73c09aab674bea0a8239ae3ea4974e59012e4
MD5 4a7b193a1de31c2e26995617eb8cc844
BLAKE2b-256 a3fd98b7e73c992be1cf2175bcac53b76dcd540dec45dce4da1c689fc44e80ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba886703cfe84a9dd220750018ad7456adbc229329e5a08487e55276203daa81
MD5 6f0d1c9dcc26922937e3bd6ecb509d11
BLAKE2b-256 8ec26e33184623c79119d9656b9e32111b94836d14cd785032c40b77d1c9114f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3de91866a21c0bf11a82ccfecc0efd824e0be3a1b76449d8926e50e2682c7125
MD5 b7906d7622dee238043ed0f8a621ca73
BLAKE2b-256 a88d8bb72c6ddc7a93031a5afb54a456f1e54981136dbbeb540ac7b8d6edbd3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4779eeee20ec6486e040df49d750afa1393c1a796a388d9f5764c6a6778ffafe
MD5 a44f5fe9d92733f8c647a8919cdb11b7
BLAKE2b-256 c8799f405699ea3e4baab4c3305c55161707008b5c0bc6151b41e84882d7d04e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f46676d80533a2c56f5ad530d4213542d64002482234dd609e2dca9a8d6e5661
MD5 ba05200ab6fc7a86a92e6f4512c4f9a9
BLAKE2b-256 48395f0089606fb7208f9e6891b63076624064dc09ba79464928ec0ff611637f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b9e589a1882db2248e9ef9d6ca5fe31c8785f3a6e9d928dde9ad96055bcc3302
MD5 bf7ce6eee4bb376cbfc6e2f58b44b645
BLAKE2b-256 173a522ce99bed0b54033b3dc8d03b1c5517b96fe7c3e215509960983605b0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 43107dc554376f6c670784826f6d0ab2685320144e1972e960f37478f6dd24e8
MD5 19b1d40a60091c943f100c09c294fcfd
BLAKE2b-256 e8409f8715dabe86c1c59896339a9300cc92ebee76c48a0dd671a070a140fae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fe659fc4ec76f210a0bbfe696369f4868c08351ec75dfee3c72923764635141a
MD5 c037f2b8dddf2d3d1c5f9c1f9efe3797
BLAKE2b-256 2537d73b2c52812193ec1fb5d403385dfd99b36733c00031287bf97e6e795de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79165f2fc5c60d98a4829ebd77f1c94ca72c55e9f2f651fe3c9e69670f6e6425
MD5 2d51db6197dfc6e4cc6da1397bcf09df
BLAKE2b-256 d9eeba5c9c8cd1e390a2b4b709ce00cd67f334bc8541bb43a956edc0494a16b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8acd99aa4311eabf34b9118915bba8bc1ee49062bfd6586e5e3e09e1d2837dfa
MD5 2e5a533676f7ecaf1cd200bfa9251a6b
BLAKE2b-256 c39172c3d215e6a9a253e5c06fbbe55995d5e6634ae86c42ade0ae2c00e57602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c8afb8db5f609a1477b8b2a9ccf87238af93cc08602f9f7a9246ed9ec2ebf2b
MD5 c0bcfca4a3bbd827f78848477dc73a43
BLAKE2b-256 5c8b1d4868dcfc81fa93852b58314bfae4419ec56e42e8f189f3a6d8b7efbaf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ad2948fd8f29c08b85a1b9aee00b917c0822719b5980cc92b51ed6a34a334fb
MD5 35b1fe50f7d27e3a8a26226730531b87
BLAKE2b-256 30d84ced6747249827f9eb77efc37de01be1f452bc83048f334f3a2c3cd8ecd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d66af4b30a3f6b9ac04f1e5e878b7bde12aaeb4d89123f709124fb74c9fdf1a
MD5 d4632418db8c5ddff23236e99b4b54e4
BLAKE2b-256 5c814f334f0ea982c8e93bd9c1b4a54c8cb59faf7db8e3722474eecdf4680a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp310-pypy310_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b4197d7b60eee9ed3dc626c61f4bed59bff55cd2bff75d9f120c261ad9b4c172
MD5 eb7485089adeb53f9cdf2ece134b630c
BLAKE2b-256 fae62c54437f15c27ff701abf5275ea5ed2c178e3631556e663187bad8822ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 30cbb2fbdfa2bbd51d34cf956ea97f2361e1214c9c0788e8388f5ec251938c08
MD5 f6abf72d89a983cc2a321c52cbbec961
BLAKE2b-256 859ba7d15d0def602c8b349aeef8fd05df4e883f06e6594186c3383f2c8725cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 484e55b0a4311d7cffcb8dd86b0886b8b77cadc1a7763c155251ca2d94ac09e4
MD5 52e95c376ac0bbb27f3ba27e67ed7e75
BLAKE2b-256 e4a5da94538f32cc9113788341821b181be4bcfae80fe34d91ca89472a8bb05c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3bf79a5947c5287b843c5d49a9a16d45b4a04d4916de938f1523eba95b2337b
MD5 03d0bc4daa91810ac6ce783d93d04c3d
BLAKE2b-256 b5489f56adb663065801e0e42ec2ace58c21061e58b9846fa05145e81a40627f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ebb392c4730539efa5a3319018652a93bb9f02c442b017436def87f274e1c95
MD5 0f830b15ce3a18867342a1973e82cbcd
BLAKE2b-256 fe3444fae0d3a02eb759a309d9c2621c141583046f748a9e71165cda04115125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5871b26dfbeb9443ff2f3e56685270351b24a2121e17280efd73e46c62cc284a
MD5 5fc0ec3343cfbb620fa6ebe50c6cbaa8
BLAKE2b-256 029afba7a8cb768b2f0878a4ed5f7f7f43f482fc0c2a88c19ab9f30668d5c43b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a44e40148c59e0d25a782fbd815ed9593322924d3df4df6f4c244ad0f7a8738e
MD5 03fe5b18d83c362a1754c4c1472dce20
BLAKE2b-256 dc5f9af802b24dece48abbb61f2e17ef00e3949a3dc166dc25d0371cbb7b0147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp39-pypy39_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 520d540734c1a6ad66a49b6e32dadb36395043c7b226849748f28206a9c7658d
MD5 2de233133b1eda48b24a6e5a40f467f3
BLAKE2b-256 794be6baeefb6cc7526399ffa64a6114d8120e7942caf8e0b74a5d9a514dc9f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a48fe96178d9dcfc50503afc3537ff6b57a607457d4c9e1637e9058dbef5fcae
MD5 6b85e0aedbb4be167a0c2e3b2db8ded2
BLAKE2b-256 7a6f43cb53feae42981c37ca50f06688718d493cd1b2fe38ba35ccdc6fc2e211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f37f276a35ad6bb752abcc7144677887128dfafd33a303f3cca94445246dddd1
MD5 888e00a9fa0ddb16304e6e3a3662879c
BLAKE2b-256 b220d3348a20d67cfcd90537d209052f89ad3a12b0f95b7e6b0d9e637287d612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 25716536877634b6ecead19f4e057698361c23c21b8c31efaa69310d8e551658
MD5 e36b13900e8edd3091faf1bb48057d4e
BLAKE2b-256 1b927dd2417036c42cba2af0f3aa7bc2e308750662a4612336889273b3584e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8766e593a200bda4285c3f1f92c88149850eb8d744040a8df8b865940cf69ded
MD5 a5d77a500e371536e853cd8846f1883f
BLAKE2b-256 23565049bf31c6d93fe30870d526f02fcd811617244e580fd27cc42dd6cbcf4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 bf1b5891d0c5460385e5bcb8530dacb2751c77ac1296f8f5fe1541735022f268
MD5 ef511b4c0d061a76fe2f16a04ddf1a3a
BLAKE2b-256 318aecf80dec97ae150eba5188e549fdd330bdd2f81848f7a609ac45daab5a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e34c1678555e323080f89f5c17308d7e75d3124a55612f2dbeb0f54dbfab43d
MD5 cbecfa7d58e8c674db0cc0c402239d82
BLAKE2b-256 33a7915decf4df42edaba9ca089981a600cbfa54d7b45808974fe5453764efd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c6d040c687a0788aaacddbe445ff976b07ea8acf5887386449c5832d8b4bf0b
MD5 c7e13dab5717a4a019aa57ffee12b015
BLAKE2b-256 99e39459e880eb73248e3ca0d51d29f9e2f915d971d56a5402067bcae3bd5e4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f64c59b7d26e853e414aec2e96d88812d48359d01b76728c528598c30d213b0
MD5 39290de0be86fd06de8fea8013a9c409
BLAKE2b-256 648cdd726f397f6c741be9b167c5fefc3e59ce1105994cd52321f4fa9955a92f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 affcb5a485675335ba0de043d5abc16f7fb6a83337910f3e661daf7db9b4ee5e
MD5 9c5d83c6b82dba4ebbb255e092d89630
BLAKE2b-256 368152d74d98b60bcad2ea27280e7d1a7dd87dbddc4584282c3a4f564f6a03a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bb0fcddeb918cd16276a603695e8aecac543956c54aa6b7bc9fee2c6c03988e9
MD5 4eaadb0b1a63eea63902b9e26271a6e3
BLAKE2b-256 f20ec7027e5525ec20ada41568750e0f3c52e3c6553858557f68268e026b9adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6c3eb133694d4c97a3a6fa349c294e86ba4d0581592381b6cfd2f5cc4ab9f422
MD5 e91358a2e0589c28335c646e32d4cabf
BLAKE2b-256 1a5a6cd24252940835b86a325dc6fe00ecd430ea948e0d9551da2900b683122e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45f142369162119b940c2ebe11f33f02d947d5902858719333483b3db9b3f333
MD5 3c6e9c9b629c744affee9b782be09bef
BLAKE2b-256 aef29ae2a3df53ffa5a6116c9ee8d36422d5b9cd4be9a2ba23f6ce22a2563887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9ee65f8fb4d97413b18bc04eefb9a477194bea49edd96068a22f494ccefc5904
MD5 44c6f9d40b40cbe70c5b743ce2c2b6ce
BLAKE2b-256 d8ab035c8ce1ab5596f96f94894ae4e1c8393875563500fd3bfb6d0304a72356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc29a0a24061897f991f6dad094d87d9617b4b72c5fd62260cb48de65e373259
MD5 0964c350777d4c9ac20c0970bbfa2396
BLAKE2b-256 983dd0c7a3c6aca62b08c6d91c0539ec3e8d8987016cff05069d6a9761d1e604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b05f9578b08066e74731a8bfc0b28ccc9987cbcf7c7c7b5537c794cd36ed227f
MD5 4d4c97bac5d094fbbe6c65806b1a9eee
BLAKE2b-256 6d7688789180b3b392365e866d9d6da8cce006877de5c7cc85c120f628a914ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b52f6d9144f3b07fd81d1aadfb07c9722294f188edc3792b23daace2cc9038d
MD5 ee816824c05a741af40220429e46ac4b
BLAKE2b-256 512439187886adb3078bf850631dee511a565f3f192b7ae25d59efd123f65ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c24146154927c9a1a410ecc22aeb8a222de0ca15e341df0a0d99e0d8745607e1
MD5 4aff4eb6d7c5f901b9447c5bf08c798e
BLAKE2b-256 40ed98484ac4dfbda8032e290b988349a1aa2d1743888c1265d92bbff6e4e981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4850f75725d1d4543abe5d08442ef059d54c73ce1af0ffe46090a337e0000840
MD5 bf0ce49e405f434220675a5d3cdd2de4
BLAKE2b-256 0b53354d23e81e2b50fe2d09b6ab4f66501e7856cf0bad8ef53f44e326ac30ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fb15954b229cb8e8e69ad84de75c3cff4c1b624361e5bcacd3d70150066295a0
MD5 d1ef20ce3222fe9a5ecee817252f385f
BLAKE2b-256 69cf4f263c40d65da915ddb2495f31a8a7f4d85676fb55f4f04bcc99e2addb5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4ce17c958dce30cf31bc24651676c162f2631670d26803991a064c8451edb016
MD5 d8888238c364b646897ac7b68ce8a1da
BLAKE2b-256 37080c2107b80593e2337a2a92df5276061a2241c1d4a233c11d8bf76d5c4d3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c12065e28624117f3858ee6a314fe8c26d562087e791d5ab0fb4b258bd2c5355
MD5 2143a2cf2c1cb0bc7089efe4a4e3e273
BLAKE2b-256 456880d445b554ab1b4516fe87914325b3556c82c4f613f9fc77c6c94f24cb29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66342c5685c9deb3a2d37ff833cf8a04d341da02953ed2cea9b359906820eb8d
MD5 fd01f93ff74508a03b603cf5c16d2bcc
BLAKE2b-256 ee4c8034a869e514e160c067bbcb6406c1ca2e400dafedcf18ae78d68ff422c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93960a7cf808e0bbe4dbc803044c26ac2d0dfe92e17fa51437b402c75bb17008
MD5 99345d7c9173180a5bfbec16a08892e9
BLAKE2b-256 a81cb4a02c632ca97274a98d46faa91062828bf86db2fae8edc5e36ccf8d6760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46248b0aacb5471667497b66802f4ed26e809fe17043cf0ecd7873684d07c58b
MD5 944d2389b6ec91784166b3139f351f40
BLAKE2b-256 9e1970ead0874d5d26e6268a87b2a492956581edc9279e03e74681a5339b8f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eedee84d4b12907ed6471f0cc13a64bcf1de20a756a20ccacfa607e31a620303
MD5 3a50d143175867e7fc60a205ef5dad0f
BLAKE2b-256 27bc78b36c9b74168826d64815b1a40086fa842cdd5982ef90e0b0f9a005cbfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4452faf6c2c5f2d3a33c0aa0e71a8748003714b5e1e66b932d278dbb89399db4
MD5 48d21d93d80ad2afeddb43929e826292
BLAKE2b-256 1219438841c90af912a93ebe0a5d466c090e7e9d8b0dd644571e8dff271bea52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5884a24123fd58f73a53bf222c358964370f6ed6c1aad9bf7f0ad6d5b7eecdc
MD5 756b8147fc0ba615a828033e2e46ad9d
BLAKE2b-256 be0c91441a2522176efd9971bf2ba4de918c519863c2f775ebb289dbb1bcaa12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2fcd6cc4ac423723279d4322a49e90cff289732c1bdd7faa132f6a9e0d23b6c7
MD5 4f23c9098a3b28bc2acf2c52eb43962f
BLAKE2b-256 4c778e6c9e5d95f77f59513b16b0f6a2964807444b24769f8ff22f35fc070bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fad224830aa1044b0b67a9504c7ca5d2f4ab38c5e0eabbe77dc48f6342bb715
MD5 f2e04f8dd93bdbb9bbcef48feadb6ffc
BLAKE2b-256 05b975e16a42c5d58de99e78307630592837308e847644d984dfc80f95dad1a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec83b48a0af82e980d995dccdfb7434511a2039d1b673f27ca7d5ec28569543f
MD5 de748791b3ae19b4f0d792f43cb38eb6
BLAKE2b-256 ea3370ae8894a1d98b2747528aace35e7f4f61c46b2f5d50a1de72dc00d7d179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7a7db7432f18c3c8911e4fa57e98ed262faa13ad337226ab65c287a9acaadc4d
MD5 465de4ebf9464f0b89da9ae9753daa60
BLAKE2b-256 4b2c1c12ddb7bd77abf5ed71c11bc859a569ec8a2e1491446ad5137d0e7b4140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 cae8861fcc7608762d1c1ef6840ac3ce5f7b6017f21824782b2507f6db6f028e
MD5 b21c25b7a3d3ed00ca892af245ade504
BLAKE2b-256 d9ae09aea9a825ae81fd9dc446f1ac57a0dc3a8dc6be2990abc4e614f3079bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 71f0916b667dcd8ce36c351f9ffe547b6b5dfd90bd8dee9a55a9f926b0e74819
MD5 2e3873e8e028d2a7b50f30188d956fcc
BLAKE2b-256 2f87a9d05ca60187c0c36e24345f2fc4561ac18dd677f8bac581928540539c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b66661c71f1c8b16d21a90eb9922f6c419f6294c6d60d7344779e909f7cb9569
MD5 3623fa2be57ec52686429f64d719b805
BLAKE2b-256 f0cd3ad60e39d226a45309b36e5fa2987b883a809f210926f3138c1e9fe03057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d25bdc85bee31cd31f30c18c2265b2a26e86bf827b38aa1add025ba7fd11c43
MD5 016ff306802258ce9143a817419eae63
BLAKE2b-256 f0fc71e5222ec52439d0605f6e3634289e7c6d660abc92e4b5574475c7ac194a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fed94d7557461187e08a7f41867b2b717147863e2fc757de1e779c83baf7bf17
MD5 acd4c1767409a86aad0e80092e5e8322
BLAKE2b-256 c271178010c56a5c97e578c0d7aec75b76a4e352e1bb0f52723e52b34c4b5109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c317a45f967d961389aa8af48559ef96b39f451bd6b6ab043aee16ec2026524c
MD5 c434f493063d99aa1b8a53055c532310
BLAKE2b-256 e01e48d251bbefe7bc2b7ab05df543dbd2affcc9b707ee7c2cdc3e40c0877265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c12538139eaa86b6667481e627ea591c547f21084a86e5f42435d92ed8a03da
MD5 0c858333e32460953aacfcc753615064
BLAKE2b-256 af4bcb1ddd48a5b5a124f4ffabebd257edec9ccaf90c1d8ebda119e12d1ffaed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5aedcf534e864c04f88a970b66a22004eee552f8ad977ca854bd726f9ce0afa3
MD5 95ff6c193e077985fd26b84afd1f0644
BLAKE2b-256 979382bbca0ae9f80bca66a1ba354aed9afb2f7bf1e3d1dbdba8d66309dd3c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d307a9ba30f44ef6c5dd8a10caf3c257dbf4d3c063ab4b038e0263d910a6494
MD5 1a174ba46aa1d2532ffbe3c8117c1503
BLAKE2b-256 9c596e768b672b05fca71d4151e79ac44633ae3bf1b6c60eaefe19a2fa188aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b821160f7596808d7996fdd223ad4988b91a78c968763b278cd0ccd11199c822
MD5 3b1ae44fb18cadf4a333118cd65d8c05
BLAKE2b-256 5df9cf12296eb61d717de51e635af907c1ca5732779790ba6a74a89202cadedf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9c38dc2f4808cec2d7c742fdc4f8e16fb46fb1c2074eb66ba7d540b965ca4af
MD5 80e2862e67bf4e819baf3b2fd1a5d3b5
BLAKE2b-256 d70230324cce35cb412afaf3dc61e154a42b52da27a358d7c6d75006a97c3da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 53e83b56b4295bf7a4f90e3ae7915eed5093750bec3a9374a581107e6ec507a8
MD5 7954312f2d749c020ded7d07c3dfdd55
BLAKE2b-256 90d6f20f201c1fa6ef27fb464eb9219e35ffe06e58f0bfcaef0d2d4b54603f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fda26273e400b9e04347ae175e38382832b443271005286d805a0f2ce68b0a4c
MD5 21c6c4adc17660d1a173e9623b60c5e2
BLAKE2b-256 586963985134cb7bc47355566cfc537e079b60a05adc2e48b77a5d6f86306bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 53371f03bd43159cd7aa8d2a9b8b34cd8f3e86733172c2afafcad0d7db960032
MD5 6ebfbb0cc05cd61475a7a2d103df1a98
BLAKE2b-256 39cf6f4d24f62e8c97c7f1b3dc98b0306ad9195859835c516e43146a98814b5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0187fae5f454b4e6a546d68d018898af5ef2f75f118a4ebed90d2d11f7b445c4
MD5 a67add74e423983a2c5559497eb18f15
BLAKE2b-256 2b5e2d6f1db60f5abe4e8a52aaf7f2bfc2fb1ff00f552047d88b1c42ea406121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1063b10b6715d91e30dcabe4ccfcada0ec0e091463b07e06f4092a61fb6f4474
MD5 7f7d3e95f71e96d55672475ea1f2e43f
BLAKE2b-256 c9dc19d3cfdb3faed240a4e52e4c375e044dd6aafebbcf137d3c0b3a326c25e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abdb7d2374992bf85c0f65dad08d90ba3560f7746389d10be09433541725106e
MD5 8b814673084d7ad8ad5e8edeb21ff454
BLAKE2b-256 2007425f60e7f15daad452f78104debd6ac7cde5b92c76f6b87cb706a761a635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a4050b985ff696b3c6e5a7f3f726578b0bba134c56ab4a2e834ce4973261f91
MD5 8b83fa78a9534101b071a46e2dc30370
BLAKE2b-256 46886a6e18bcf15563d908c3bc1ed8daa8aba7819693ee0983cccd337be8834e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32c25f00660d3de4424fe0aea56febb9a8082b7aeb4bc15e671253955e033e49
MD5 daa22f137f0c91a5288036ad865347b8
BLAKE2b-256 d4d45f0bb0fbe2db5343dee959f5233d1d4462d0076271e72e75411ae3994c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2127718c065d8659e64e410afc66e2d6f319d76fee81b46a1f01404da02faff
MD5 07620300c6140b7453cd03b07a49d93a
BLAKE2b-256 8a2b6fbfa937f82aef9ae40e784ae9293b175ea56d69206b1acb34fb90661f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eba191843cb9406534abbc9034150e3640faadd41e11d49220ac7d0643fdd7b7
MD5 1febade5d55c4507296ae684810f95ae
BLAKE2b-256 c54fc852d174377f7d537b595f0785c0a51d211607489ae370b6cfe40ec85544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7389c023c9e5aac898e6a38d325ee906f2e279b1229251d8a1a2397ad86e3ba4
MD5 cd6c3f233fcbf45d8ce7860b1c140153
BLAKE2b-256 ce633d71fac5f132d58d9eadec621efffe8c5ece23a413c23abb3913984d349c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d9139ad5c686d33962bda311d9997dc5ca6a88de4975667353ebc918a07481f
MD5 8e874a7e9ec8c2eaf76044acfe682223
BLAKE2b-256 916a250aa4c41217b4238a86722f97481742a16f13f9c8666f7321f630710d4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ca564340a79c1d58c21cac990e16e2e970d5f12bfde60f79a1bc6f2fd867a847
MD5 e09d19be0fe48a2678841bcd0a5b3bd6
BLAKE2b-256 9aaf06ef5128803024c50f2bcc0bc34dd2e1d1723c5dacf3313606dddb26c9f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 722cd4200363ca397735c936160efb0d2ed1d3168af3603a07088ec0edd030c1
MD5 ab19b4c5264653e14d701e883b81186a
BLAKE2b-256 4ff056619ec38dbe83016f5b8a68e41c295a8820e9f0217615f0f7726ab9957b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f2ac9bf9feab96ad5e5d121f1e1f42024cdcc56f40015315188e8ee277d8cf09
MD5 8a2b82498beb13a0d4bff584fec09140
BLAKE2b-256 ca4fe95b986cccb544fc5f0938a37eca2010d851d232718c5c6532924fcbdf50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3b2ae13e1493ba146896aa259544280d1f4831b217fbf32ed162e68254fd91e
MD5 7fcd69a8691126206acd4a38105cf952
BLAKE2b-256 ec96a3dff55dab781476845498ee9439739be66fee6ffad8ade6258969763113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 277129a63bc52b0e39fa65bebda1a84b16d86a79270d8fa3980a8cf96f4395c0
MD5 5fd007762be7103a5020519580ca56d8
BLAKE2b-256 70a0343dfa069f938b6d57000a615cb91ca9b3c64aeb5a079b3c3f1fe0f3b559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1a1a23a6eadb5e9770ddf3b8d2af5df26aa3bdfbf294b38ec4def2196c497ef
MD5 7bb9160e67809f262f27a72f0dcaca42
BLAKE2b-256 d8fa8c1b226a53fa46351bced4edbe647469a65db87e4a46b63c2a1b3ac4e5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c48696a21cd542b25494d4512b3ecddaf3241e44c187e940f0ba7080580b88f
MD5 02cc446fe85b0dd0ea13289bdf5dd3d9
BLAKE2b-256 eee29fa382b9e4e2cdb9e6f1c97c29434ed2d096772b77e6840a6d0595527bd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4aa39a70881322ed7c92d577b61ff42fc4a72496dc2958f1cf1e2cbd32a6ac18
MD5 8b21045bfdeb0770b8fd30525503dd0e
BLAKE2b-256 1d5d0f0d8f27f1aa352a61b264372097692e8a036f8b3e4961530576a6d926f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44d5cec2d1e1ec5505c23bf99026ad588b52fc8c63bfbc795fae54a50c52ecfd
MD5 bf15d3d78f0757b993ee3e4906e1403f
BLAKE2b-256 d06d2b6a3d4de7ad7eb17b14b66cc861f83bebfb01d023272861b707f9e75b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c6907df968c1020d0aa8dc0a045ed16995e455b01ba63446b251f29b04de6de
MD5 1eddabe7f5c404494b7f5e24dae3e009
BLAKE2b-256 0eed2f171faaf3982b7e7d2d719620a2a27f56a02e02059f7f590c41c45b2a95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9d63f2afbf934228559e0cd203f03b2abf269b5926abcec18aa02fa65d717f8e
MD5 38f23550a388017af29108b46d7efdaf
BLAKE2b-256 03be4c7d39efff69fe32616c5ad7191cb7e42e00a284e37a320b947c892851ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 aad8ac6b0ebb95e3790967a6777f79b558408ca0ba5aa02588a9982a5739b89a
MD5 67cdbb1fcf97f590b1c21f70013582e9
BLAKE2b-256 39416a739632b0fc5e05c06c807080db8e90cb0ae577f3865d417e9ee6529825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c47e4aadbdb12ac8cc326162a1d75e8328726f10dfb4ed0c407f9a812abd825a
MD5 f68e10024c17d5f3c78c862ea7b80906
BLAKE2b-256 d9f89d4c6a797e5d8ad2b36a0c6309a60c343d6ff4d42669819294b62e03246f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c96e4875fe37d3dfbbcebd5b3d1aa47f551935df4ac69a897fdf61342d7eec6
MD5 78c48879a4642b16e481abc6b16f3462
BLAKE2b-256 dd869d8d1b9e3442b692c04d08640831d05efdea4e8a879b1f04f35b4bd000a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63d4a6a229e82b10111bbd2e8bc2a0e6913a0aac0ae813e61b16bfcf632df82f
MD5 ea427c8e36a2feb04a34c6a2920dffc2
BLAKE2b-256 d536525b879554c29740a18923ab92d310b7290141075d1de473fe78a6ea58e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b276e36f9e40e086e2ad3a82e5a4ad46dd1765775ea445c13fb0358d69df0b5
MD5 bd601b33292410a387d9a8a83ca284b1
BLAKE2b-256 6024dca9d7e857bb9dc5fd433552bfa32a53dc82509afbca2c66bbbca28940a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a7856fcd48f40b61981e0579d96e7821aeebbdb962aab1e9aef05f50e0386fb
MD5 5f97b8feb4b6d79e8970e4dfcdf275d9
BLAKE2b-256 f76ee3a676809f1a8cd6078d376762cf7bcb590a18cd9bff0229b75c4b621a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20f1b676c99c429b8fc4904417258aa9c9d480f5d91222a1ef469776965d9ea6
MD5 533015a6b079918817810d666d7f286a
BLAKE2b-256 0c8a188a22f024750349ecafc4dc638dd3c76930f2ef3867ab0b017af6954d1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b87a61f2676078cc8365588fb15102e98fd56c7dc97ac9aca0cac2520ec18d06
MD5 5cf16d4308a12ed64a3d60bef3a2c1da
BLAKE2b-256 37c17ce779fdf8aed83756e8baac9af6c8d1aedffc2957c6764f9a764882d617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp38-cp38-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 17cf387395ab4e653291ab68e8868de3230ba056e945b02ffba23d0b5e784cd8
MD5 f105fda46a7797d9bb10a031fc64659a
BLAKE2b-256 48bb914531ccd8ede7efe476f20daba090140cac14f9bfcec50d67c5fdf224e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 234528ddd3f06319b0a4bed877acd6c02495b179388ef4219a8870902d1b47d2
MD5 857eb5398169aac37b87fba6fae7aff0
BLAKE2b-256 e7a59dd8d37fd53149e9383d633a373e2eab7f9c76ddb22b3c8f367c56b15611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a27a259b656609e1ce323717a73a5f9f898220fe16a7dc34126967dbdcaf6c77
MD5 e2dedadfceda0fcf3bfdc29822b4775a
BLAKE2b-256 626db842757484d8d8f8892dfdba128b2ee6f4621090d8f622da7e8a1580daf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff99ef207ac1f2d499e35a2370d205a05bb3f521b09e72b0cb8281137783aff3
MD5 d0c0e55a7835639fab1df7a6de4112d2
BLAKE2b-256 5988f0c2f886553eec358d535530c4b54879cb589ec75b086e866b07a21ef344

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