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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86

bandcamp_lib-0.3.0-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.0-cp314-cp314-manylinux_2_28_i686.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

bandcamp_lib-0.3.0-cp313-cp313-manylinux_2_28_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

bandcamp_lib-0.3.0-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.0.tar.gz.

File metadata

  • Download URL: bandcamp_lib-0.3.0.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.0.tar.gz
Algorithm Hash digest
SHA256 a2f2a383e13f2e5260053a31b7c082d22aed69b06107bd25f428c4a5257956bc
MD5 f0821adaa8618d35c613be1c39498b63
BLAKE2b-256 c4f1ec758aeda3eeca885003a7fda45e50a1043e033ff27c67f3a9701627230e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d5512ed1a9c1b23d7305c3e163229a8f34a8d655426106f1b56233881ee7066
MD5 b8c36684f7cc5e6388da206e2981edf8
BLAKE2b-256 007de474b03237871a951e7e66442d6e71be363711ec0b047ef6487476603fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01018bd2eabdde6790e5389f66c0cd6b794927b5b648b9ebefea24a16eef42a0
MD5 4cf57db0e67eee44784e07286640b908
BLAKE2b-256 248042e897918f7606614a62d44ce96e900809cc4046069d578c36079402adfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 789a039ee6a2373c6c422d8875ac528be5dd49da475adae2036f7c6aa7e2a6f5
MD5 2ed923f2b08e9831b9ed89353caab761
BLAKE2b-256 066c7f8bb4ec88ca1e2b49882fd369cf03106d58718f911bdd69c89177f0c31a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68d6ece775e4143d6214f522d0e474d5b2b367307fd561f67db96923636cdb90
MD5 16f2334ba16056e3c62b40f9df561bdc
BLAKE2b-256 d505b61b19d40ff4481e20c8fda5a3ed6e11c3f043ce37ca53c3993870fb5394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 217c61006789f9f474cd274b6f5a1bbbfd202a28213aa92dfe1e18181532d037
MD5 06ae1f997f7b492732ece99fbd4a7e93
BLAKE2b-256 49af0ab93d392bf46740b67b7362d0b595bbff6bef484769e2765a385c7a96d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3ad51a8cda656c7fe7fff8fecc1626c729a3676c7a9f38e9d3c950cd7061a3b8
MD5 b569da7cb66faf0444f39ea80feabbfc
BLAKE2b-256 a920652c26b56ed1ef240849ae6ebdab1e8ecba0106d043e0656ffc184fdd545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5d4f14c29e83e3e09cc794fce4a81da7f9fd2fb459d085bc6adbce9d9bad97e6
MD5 bdf34a8f5b93105b4afe85df49befda0
BLAKE2b-256 430e9eeef24cc448aed4ca168d571c22b9e9d7290e4c2390e5c3a8c57b75696a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9ec564bd609183e681cbbdccee91fcc19c4ac32aca87a5158f7057bbdf3cb354
MD5 1177a10aacb2de44144a0c0e02f87292
BLAKE2b-256 1fe8e793bb2be2334b433e42ed9ca046f2215a3c0fc37aa736b98ff9e0f9888c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77f5472bbdefec79c946abfacf35a8a4ca5ad9cb700384e898ca3a8470f4d2e6
MD5 e22f934461b64b130a60a958da3116a5
BLAKE2b-256 66e170b9ad61c042472c442f87e0cfe87dcd37f8ed7f33e713095f338613c770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9face1fb29a6ea0735e30303a455468d284b75452d2fdcfc152110235b7cee86
MD5 1ad8354aba41265b46d4f88b5318864c
BLAKE2b-256 849b058093db3887bf8f74feb507ae825ac2726fdebd1a854ef9504a22564bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f64492615f77006461961dbd5ea2d3e3b0f61840678836301d73ef45155475c2
MD5 722854c5ec196815b5643acbf8206696
BLAKE2b-256 7e88657a83aa89fb85440aae3f6b0051bd2f038146ee2a2eb55d7078e904a9fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4b0383265db05d9daa1803eff13105b3c199784d2da8ef3a44d28843f19954d
MD5 f5bc1cc7322f7b90b4c438397fe06d82
BLAKE2b-256 477af17ee313bf2fc617b13defb987831b143f00c08820a1f373523b507b7096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b50c59f62ba9f913b6d93a7eb4f4ac91defa086742dfc51920e19e561a5768da
MD5 86a0162e2b75658b74000f4929ef91a0
BLAKE2b-256 f146cd983debbeb5304f906d5fc18b8b72c6b0e95946da147bf2c641f50fc15e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp310-pypy310_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cee8c0beebbbe2b31830911ecbb104b8cef9e7db979337817adb66f7f595b833
MD5 64499c7c747f654a0b7f06e0dd4e2bdf
BLAKE2b-256 925e9e8cec09c88758f97f262ac8451c4eeffa7fe252b2d64ba6dd3bf79f9b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp310-pypy310_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f9682c78880bb2d4029ef50fc4db2be23bdd8f5d0dd00a159a1bfdfa165b2b32
MD5 f34d62bfab2b70758b57b59ed91e0d31
BLAKE2b-256 91747fd6d3c9feba7649b86b16e37d57661d109a6d6bb64cac345bcf92ee4662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 161885511ba78d653481f5aae22175c2d6050ba75d675ee8477aeb1c3ae02163
MD5 ebbb941048b85ff61894751aaafe7996
BLAKE2b-256 80b6f1ea0e3a78d343dc3dd0dd5dc619617f2f944728dab5e4199ec1b24a8933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99f4d476bb15e8910812eaffb7aab7ccc16be1b5692bd55a6678a461f0e5facb
MD5 ec0fdc31098439305325603a78e2d752
BLAKE2b-256 db71f95a532c24f96001bbed795f1cf9556aa9415f9efdea2b66267d67a3c700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97e335fc1f321b3caad5b534f713c880bf80b284b11ef8cd63b69362cf73a556
MD5 9a07f059e42287caddb19c4ef19fa219
BLAKE2b-256 c9a3042f5b1ebc11636311e12733f026075412fd8da3c09ca516bb1555f759b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39902eb34e4a4fe4f1d7382d6801ca404e86d93e055364fc25efd9eb9da7dbf1
MD5 b5167bfae1c39d71fe15efc2ce0f8ab8
BLAKE2b-256 6d897c7bb44e0f0b3e2f9856a8fefd77764653f7b8f9405d47a2933fc40dd03f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ec66f75012fb7237b4668ac9232502dc2b3e7882ae5ab2df14326867a8cafe5
MD5 b02454110afac7935a5ad128e05b876e
BLAKE2b-256 b7d576470abcbbf2cf395d694d10f6c58566bb8361c9a837c7ba41898ea897bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp39-pypy39_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e8717f2039c07c41ca5f53e52a7538be8e251562b5e1d14822d007aced7dd2c9
MD5 5e6c238e7e570cb8b7c3da94d406963d
BLAKE2b-256 f63538dc2b36e6bc3112a5ac6b76ae963d432190b0523d533c1a9a12e9f32681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp39-pypy39_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f68c8b50c8dfce782a81ca1e220120e7b87593f81a6b62ce97a6cddc8ac99dfb
MD5 5a067808d342e0a65fcb6ca766fc5cca
BLAKE2b-256 7c55ee1dc75bcc1da865b3dc319db967aee6bec4fba0fbbb9d36a418cb52aed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 040d21a27e3dd6cc33e3ce0cb5cb3dfbb04905ded2f0008ebbbc4479ce15f218
MD5 c4c61bb174409b1f3f71203f283af15c
BLAKE2b-256 295646190fd35a722a1e35416b0e53a4b28bd8828b75c29d32870590105c9a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ddd033ede0f485b7916866bc77025c549332b5de7580aea451c6d63a5e602c01
MD5 bfc80de7b4fd94d4be3c96e445f76620
BLAKE2b-256 78499804af9a4b281a527bdc0e0613cff992d0ab90fc2f72b23b96feae6ef3fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 563c3c8039a1590b7ba12083dfb336bba3aecf9693badc25f487e8021928e9ba
MD5 7bb8c983ba4a69f828bca282a585f34e
BLAKE2b-256 274fd3e39c2725e944588129563c3926e6f0ca691023c8223785a91a13e2d841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1c7ad3e766557b4b73b68cb2ea48474efe08d756356973c562e5cafed2670055
MD5 dc66b683f0ec0821453200cf11c8ea10
BLAKE2b-256 465cd5dfae5632aa67dcc9fdba807931aa0d4982da3806ae6a71e9f2d506dd54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 861224be6c78a61bc3d3bfa70b7fc2076edc12a4294b2f15932a24a451ee8f50
MD5 7b92348996b52665bbbfdc7f6ed0719a
BLAKE2b-256 6c0887c49510117a468783b631ac81f0fba3b0423aa01816f22323acebbdd90e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b2d379e02fc7b030cd10cadb8c9640d96d222f9f6e6beeb8b38740d37c3fb43
MD5 7a1bf8f825d62fd812d6349278403b3a
BLAKE2b-256 4056f6d827a84de237d4347a0db26521d580b87c3f2d16fed62e90fe6844ac55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16f5aafb7b972758274416eb75b5d26ac3522dff90bcbb8086d1c008dfaef351
MD5 dd86435a896b2cc54c3a40453d19a42c
BLAKE2b-256 bbf9ba6c9b9de4e0418b617fab7df6287a72eebb440cd4400fdf533faa0e8c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db759a3a28b9ca41e13865c770d0fbdf41a453e8dc0b9def6088909e7a8dc296
MD5 62420945f1792c9d9c8bf9435383964b
BLAKE2b-256 9d662ac72915665ab635a548fa3f721c55a08fa3176cf7bb8233e0943b669e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 405909c376b575815a27b050713de05a7d2ab1c6106ae06b445efc9795d598da
MD5 a95a666a623a86537cb6b9bd84b8b2c1
BLAKE2b-256 502487e85adf85cde5efe0895294c42e5cbd9534b90c94c99c82d1e083c20699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b9aac311057ca7676908b4dabb7497b1ee7c3b69a7a275fba99fe1df552a7c4c
MD5 79b9789d43d64c88ab97cbab5fffc0ab
BLAKE2b-256 b0df48177c27ce2563aee52537c0f9641f6210d4de09406c8e9cb482a749016b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df065012727013df0a119b2f6336a69151acf3db6da61c4f3d15fb5049cefb61
MD5 f5723007916edecb3954332c4b5776e7
BLAKE2b-256 6fa6d9d1ac4b2a30eef9ba8b5f8a53fcd8033f4d0825642f4ff0685f02ebd251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e5d6d39d390429f89aba0ec3f70c349a084196a0023a5652c72412fb16e3d6a3
MD5 7044a36ad5f302f6341f1cb10a01d39a
BLAKE2b-256 8e630dca15ce19525d5571bab714e9a0e96c16ce41f735cc1c9912693f71cade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c17aefe991e0250c4aefcdf7a85589b84ec988596b79d673bb9d15cfebfb7f5e
MD5 047ac2f844fa4dc27655ee8520340932
BLAKE2b-256 afdc180bf8bfaf21b65346d7b8b19afce438e12fe2f5ad01289d86e86fc94e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2007ef4e4b75b93c39dfbd3ae5b70e5c1e592ba7b083fe70da8f46be75a6ec8c
MD5 3d7ab868fc0fe26c8c73be9d61b681c3
BLAKE2b-256 3470df57afd9e69f5801d7f6d281367fd53561308255601e3bd2cae55a1edf60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f5d44f958f0c48dbd4252e9a1ca35d1660f2145579328b3bd7b41bc5ffc3531
MD5 810dc7b48667f4bdff7d742bdbc38b0c
BLAKE2b-256 652528ab83550d9fa8e9f9d64dc0ad4e2ba45c28e482aa436304c301b09d1b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c37aa44acc5643956c72ed9df734738ec94c093db9df7a7a4ad495bdbcd95222
MD5 ffb4db369e5aafe7dfa43d50c2711102
BLAKE2b-256 db71ee7d2afa021890fbc1ca9c1ccdccb38018ed83388467d43fbbefd8b43203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 523cfa76436e0bcb29ba846bccc9db348f868546225b2b5cf92eaa26dfdad006
MD5 da8d835cfeee9177b4633a7480aa46cd
BLAKE2b-256 c5a4c06638364b5f4254b26d08fdbc35ebcccde46087dd496fb1ee95b6dd37ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d722d2b3f366e80c9b81abbb3ae97f7529e24654e946caf2d6ac8c816ea8ade3
MD5 f96ef1eed444bdbf8c0c221a7addfa0c
BLAKE2b-256 86e48503c39aca98e6e03a5e3925bef61aed8223f5312778034fea6b6361e0ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 35c2b358cda7f48fa816664e8fc985b015f809dd6f1b714a8984ce065bad4350
MD5 aec6578152e1811c5863fbc7f4eccb85
BLAKE2b-256 7aa12fc28095e018e4ad18cc8d8078bac6f9d84f5956d8a4afc7ca4948506bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 905f4362d0be7bf65b4e47843e1b5b7812655d4836fb26afa6d733f6b2b79454
MD5 67e7eb961196599a8ae459e130b51828
BLAKE2b-256 c86d35aba1fcd027b6aef007adc3201dab80a9e3e81fd9b3732f83d6a494b23e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db07a66a5b1a231eb972cc7099dd1c0250c6fd8ccce48d10e2f066c14a8dc66d
MD5 33303326984587d0fc26741c5901c432
BLAKE2b-256 c8e53a117f482072fc493630fed4cb485aa5b35ff504441e5a8668272fee2098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73be6d40f738b7d68590a514c592c95973242c33308742aab7c20b2249a07904
MD5 86daab10ee8a35fd15d8e004162d84a8
BLAKE2b-256 9404537739a0d710f18f8b9b244fc950a33499723e6aa8ba44ae0959db20cd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2df1fa579b604127eff414fa1b6e67f6a1f8c641f959af0e34ac7a6f2c53a5de
MD5 73653391a1aa2818c685ba0b78ceac4b
BLAKE2b-256 d7e618f9c9ece87048835802c3c3233ce4759d3195eeba4a80ac6731a6c9ec96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e6e88cce0df187123923110c558dc5702f9274d2882f9c7ad033d8142597816e
MD5 2b8a48036e865d187ccb0b3f8fa6cd81
BLAKE2b-256 8aaec4da0c947c74517a86e2d502f359f3fb3169b88e30005043c40d08163c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7beff519872e42b0e1af42cc1c9741b366d9a4e8527dabb72fae836dbb1937b9
MD5 6724c64b77e9f7383cc7621feb2687b3
BLAKE2b-256 619e682992a2fb48e0fb15ab84b08a1dbec8bb2dfa59f3341dd2a70a1960afdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da3d897a99a141379dea76821cb43c21a56bcef60d71ef9600cc8589dce9a608
MD5 1978b052c705afdce8facf2eb370f579
BLAKE2b-256 4bc4e7eb5eb8fe5bac9e7707ebf3ff04d74f157a97217d1fc407c9e15460c0fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 627db86327469cad282e3a7536d141d22bf5de9e1c1fc34883dfac953ca855b8
MD5 bb5e2c37d1e145f95f7717bad0b9cd85
BLAKE2b-256 374515b6d53fb119a621ca2ff184e59dab809db360e3e2e5a9e100a045f90582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 154fd723230804ead4a9feb447c03b0999a2592700fa0cb463da005770ca5ccd
MD5 0cb722c24749769a53d5d06bc843044a
BLAKE2b-256 be8e41e93d7a29d9a915edb962a05516571d63b216d6cb747a3f00f06b7462ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a29a07c1ecb5bbaa3be1513f322351b6ec77ff4a474b2d9a67a21bf1b4512d04
MD5 96b662bfdbef4750734be607cec71814
BLAKE2b-256 4c9c915a0bbf44f2c9255ce8fac832a49ba33320791eafb76cec4ea55a11b9cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4620adc3c8bee3537fc3de513161ec1dd578ad11238d01796a015e62356d50e7
MD5 4205353221602756867e2973a52af640
BLAKE2b-256 51d0576f436833e758cbeddbef15bf74295219bcb988b95c68b0f71c79a57da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b93be1db49b3131d63a1a54ec20fc70dce26c5873f9ae26bc6537db1397d17a6
MD5 aba083d9a5634b6773ee9d4adeed55f0
BLAKE2b-256 53507eae8ad301e4b7add67925c94438b5706c252a5cdf117307911ec8232dcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dbfef8bbc8d4eea59ce6e1d160cb8abe5b3888113ebfffabfff5d15d8bdcad5d
MD5 c0072cfd0f9e0ed23e41f143accd254f
BLAKE2b-256 044177b6ac12e2b333ddb1ee6c141a1b44fe1fa91a3173da19f5e9d79af18ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28afbdea282af8881474698b7b38275704f9f74ab2e05d29b403cd9e2d99511e
MD5 51043dd1c5e60d1bbdf38af59211221b
BLAKE2b-256 29218437e74057dfafb71e48e0fd7f52a26397dc1f2e212b4cecdec19af2f757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21088b10239d7a57e532983f8c9cfb734757d1f745443c011331258f2c616f32
MD5 3dde463756f922cb51f24e794991f9ad
BLAKE2b-256 788568cd4e91c951bd078f8de468f3c33cd4644f70634d7c66db0567cd0aabc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9dcb8402a40fa039c860f49967b7d1be44e8b6c155cf92285c76bcc1b16b3457
MD5 6dd7c157f2ea8a0b6c621d70f17ac0e2
BLAKE2b-256 2e99a2b3d2902002ed4db964bbdb8a8283bd004598a341304fbf1b56c6cd9581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84027a5e916b8de0672588445e8e108aaaed297647ab93a6ef46e112158fb1c5
MD5 6a33b1540f08a8a84227ca81d33cb02d
BLAKE2b-256 795994859577ba9e43db6cdc1b002d7e414718d8c879a8a0b58aac22297b8ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c16d361a00f2ed87041e8acb3ff3c7c119ef92501df7fcc7460ebc3f342b25de
MD5 4764f40b7dfe58788c37d180d0285e76
BLAKE2b-256 622b2cbc31e5856f6bc87f59772929278a3e7af35fc11755037ec192d7bc6605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 610095c64e759e0e59bbbe964943442ff626613a8ec6f588a5babe9f161c6c67
MD5 167275f556fa0d7491ba6e74caca67e3
BLAKE2b-256 879bfcc25c55b77228f1d9441f1e107700d4dfdec908f2071189a1e14b8bdc47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ba7215f732d8e3bfb861ae06901e83ca1cbfe8aef96abd949b37e139fa8a4f0
MD5 e7a6b091e8daed7e757f12f190f81c24
BLAKE2b-256 16e225cc59dcc7c5a40d21d6b754e586290ccda3c6788906d01987c0bb149a7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e81e29f95f1f924120be569ce4e2d01a1535c668bdceb88f335941f2331f836
MD5 2040f0389ba185796d288d4c12db952d
BLAKE2b-256 029ea14edad0826f1850d2b6b48191cee6f0c24f81fd2f2f81602c1964a4958b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d98e16e3fdd790b44066d278fb6e5f913f97ff59f51f1cb9febdc5a580d7b80a
MD5 8ba35bd9d8f36d082d8b19c5abab8dce
BLAKE2b-256 7d14c000ac34f01fcf06c3804e2dc816bff5ad089b706901b4e7a80d85a08f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d0149787b251025d9a80476af39d9959b67440b51f8062a4be9a10a07a091c45
MD5 41f162942f5c7f0be487b0a81c748034
BLAKE2b-256 aa9e3c24dc8ab13735b9cb361d29f10dbef7082def4590caef04aba63b197f8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4fd9b00f0020983fdaf71dc1b70cb0802185459637c6c3e2391ea43490a88db0
MD5 5f14e98135007c70249933635980f7e0
BLAKE2b-256 a1b875610698ceebc708052963ca060da461b6854830ebdc812640342d04e6b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 22282b924ae9399928e7f0e3edb79a3a7548831eeea24879eb1438f4943eaceb
MD5 61bac625b0d86c2996f7942a9b073536
BLAKE2b-256 15be15eed070d16f539f56440cea0e84f84a1e3cf05d8a80d6e2ab0f86c0733e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d470ba9f9261576a61635045a48017ae47e6a28955c75b5d2605415323080c7b
MD5 4da7351f00f81d1bcaa21dad832b0ee5
BLAKE2b-256 ab560ee85c57d222b96ac5eceeb96956facd93c7e156506658418367b72fe379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85e2543365a905ac72f88d727bba63757e125b068b8cd71c19f3f0663f6a52ae
MD5 cb4e6c3f832ddb2237f2274455a2fa39
BLAKE2b-256 763251d2235e5151421934369a727cbe74adc7fec3fa1f59b0b24ba401ef130e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f226ce5cbd4b5edf66aaf8bb7fd2238219db0db2431b3d06626d491102a8950
MD5 6bc4a2e499467991d47e46d7b7372d08
BLAKE2b-256 0a54df91121c3fb7f5005b9f89bb58c365a2353395104a7294f33f7949c9c107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dc8da25751b131a32d15ee4ca2ab7abbbda17af2603eaef57adcee0c8ffa4f6f
MD5 087c330bcc835f8fd893ccab10916a94
BLAKE2b-256 3fb2d9c625aa5d952e5376437cc3f8130798f7a382788da760d808408109b110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a73aed51e058ad2dc7d935cc4f55ff9a2fd5eea30a6380d55cdd094ed93fd335
MD5 61f126bd0a2b880d4c09b3dd2a5cb897
BLAKE2b-256 36087928bbca194f88d068bc51caa56e9a447f81d6857f8e316da1a4264ecb11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25c0472127e0b71ed04fef883fbcd5c530f448b309e7f5985da5bbdc41a9a09d
MD5 0c592a715ec9393d1d932d2d9b5cfbbd
BLAKE2b-256 2ee7f5591fbcd5cf5fbdf511cb67fb07b1580ece6aedab27a5909fb06104a3bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa138fd176e45e6fc5a5f2584c14fed6cf605c66f5fae60c548483526957ce1a
MD5 09eab55a795567f5e478cd3d7c19be24
BLAKE2b-256 7ef3b05ddbbac780405e39c9fe93e9f17e523ec071d0a9af9dbe925fdbcfea8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97767b302e30b2a11ff70369bd0711e715cb37627d972247315f91b3e071bb9b
MD5 6302162355dd726991e51858afb68b37
BLAKE2b-256 8df525978fc6ad791ff5aeb92cf9b9425d7e7eaa50ab90cb763e3257cbbf41a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 560a306777bfb1419a85c45e351685c459b4ebf92fc516eba3db8c5b193c1c40
MD5 91f3930b3c9707f08c41dc5d1d52dea3
BLAKE2b-256 25e184d3ae7c20f6477737c8621e75d04dc551d0fcca406f7bc177df68174294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 faabf19bb9d3242f1c65c6295fc8ea2e5630e753efec8730b7ed0739a503ea8a
MD5 2ebec0f60e7ca9107b9258712ef17cf9
BLAKE2b-256 371cc05ef0e7b74d2079e09ae277ec6c62845c1b17f7e5addd4e705eba82c5fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b3dda8c180ef1156fd4b26d9680913096176376c9c5d7c50388d5482576f2e49
MD5 91ecb40aa35b17511923a5a05fff8110
BLAKE2b-256 95e1216f6963028f2d42511e8483bdb6dcd2bd9d7dee4e31a76fb5a1dddf0b53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b28e6b4e9839266f167eb098b1a4ed4fbb5ad672d9326165952ad73160fb7899
MD5 0661eb9e3fbc65eb0173de6c579d790b
BLAKE2b-256 ec812bb760d9ecb646250677265ea7135c3af8c62e026a88bfa4d24d13d8d8ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e437cf6b2ababe93dd46748a547b83ac99bcefa10d85095679e421eaf33599d
MD5 8c456f55c9148d3a7ba9c22c76aecab3
BLAKE2b-256 2bc6afb186af548d8e3a9c19dfb461a646b535bdffbe2aa8b578013c8fec0dfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 17d6288a6225bf43e2f34834dbb16f3494a265d59c60cb634966a8b46fe18388
MD5 c2c19c2d7c29ac87fc8e11f7ff2f68f3
BLAKE2b-256 3d4d485884fb7793301540217945aebb6edd70c9640d40489cfd302b73f00160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b04eb0f7c6a691146eab53a1bf73d723848f03a00dc7aeb876cbcc6d144d8171
MD5 e463912a94f1db3e76c3d9927a90ceb5
BLAKE2b-256 6d6c1976159b79d2e14f9bd79fb65674333281860a9ae5cdbdb8d0010a769dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa3da9104cda2fab9a080aba1e03afc8fb0348ddf2d363e53130d94aff1d085d
MD5 417f057332daeaffa3dd95dc355d57c7
BLAKE2b-256 507799546ecbecb716eedf8c9288bdfbd6800a318107bbcd1c8070e6862717c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a458857c1fba999088636455bbf85d3b254b01b6fdcd7720db78b4ee0ace09b5
MD5 4064f0ba85f4b27ff43af7b171d40fec
BLAKE2b-256 e3b8be27234414089b6b48bfb97141595a0ffba14932b49854511ebd457b9388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cfab4ffd0c422bc217f94ce07f82cdcae4cef87178d255f9279763252387214c
MD5 38fb4a5ec44eb9786f431a079f56aa16
BLAKE2b-256 e5eeb6d27ecca6b1db437f9f5cbcb4c9a31349c23eaca52d58ec920031af7700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71d0f4837fe3dc8e27209ddb5ef8e2edbc4750ea597ea7da876eae8a60c3a0a1
MD5 f5438e0cabd3e0670b0f5ee55c7f7296
BLAKE2b-256 b02253b78d490e89f1a607d1603143a8432dbb7e0bdaae80bb8ae7d7bbf86a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 559032c98e4ba86bb3ec2c8e4ece48ac5cad9e843d98449d6e23dfc2661ccb64
MD5 cc91cb7997c896d49bc7a7bb92390497
BLAKE2b-256 3a83179e89dd1fad3d49e04acc1f64ecd6a33d5e1d392785260359cf3a03f843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b263f4e8ab2fe2884c78eceae31d97cf9db0bdcd5009d01eb209d03f62b265f6
MD5 9459c551b1519bd523246b51e5f228ab
BLAKE2b-256 ef6b48c8487e742ce67ee10eacad40f6e767a30cf0753d0d18fc334148031ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7ed76d2d7f869ff29e8376872a545bd413e3736c12daaa6ca3bec3680f3b7b6e
MD5 23450c6f5793880787be3341b05d3f2e
BLAKE2b-256 cb514ed41b276ca18e1ae6ddf2acf91b28f7eb34a77d0b373a814e037a8c0986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cec55db65375580137f63eef47995d4be25369240d8fd520a14199ffd8348125
MD5 eb246b0408cc1413e4d50a394063345a
BLAKE2b-256 f8b2ab94fbde324c4e2bdfd1affd0aa39d822f822b5a215a7844225e61153b43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6f523667dff593b0712415bff260ab48b0b253933fe8f1ad3d39481f4fd2cfa
MD5 6e1fe4b9343fa8adf320609c90c17802
BLAKE2b-256 9d43366fd62e161d67e3353515205a25941cadbe98f42d08f2ad2ac5eca75cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97cde574d3e6f9d18851c59ae53b3944ff8a4dfd0eb2dc4ac467171b7b86d77d
MD5 127b633aac9c6390eba9ff84ae3aa127
BLAKE2b-256 a1d50202440976f69204f2f8d0f3c790da2879eb1ec83e21142e03a9f73d4c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f41475dccb96d9a7d49b761f6f7f57923983beb2c75eda1c2517b330a0107045
MD5 e99ae3876c95a22040bbdc86b373d4d6
BLAKE2b-256 b0b73f08cdf20f1c9dc273c79b2a8ea959a19aab0537c662dce1b8db859c310c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8b476c2356e7a28c6836ae453944890fe7894106535529991e06b8998b29f1d
MD5 6fc8a1be25cf58c83c22120f51bfd974
BLAKE2b-256 92b464f2955c4016dab92fb19b774260b9002420349ffb05dfcf2ede7d4bfe84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a451a5ef033d405629b2e8c9f467d5df04ed581409466c2f8f2d50335064cb6
MD5 d4a5a367ac12da65f111e354a039eaf5
BLAKE2b-256 b48b921cf74fc3e8379e4120b5929aa3d088f84f482b355b90617ef4c0b92049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp38-cp38-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 51b2ca3a93fcd9ea11fbdb5b5b8d04272b0f09ac35f76b5b3670dde8fcfe6011
MD5 bad0c12bf15319b980e3c4016fa03ce0
BLAKE2b-256 67da64df405b2b7fe6e0d8b188c2d1d707a5d6c5abd1763aa32754a7ebedebb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp38-cp38-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 05d80537b2cf25a9ef17eda70d2dcc54d08ca9dc9de50af41a64d307ac66ec3c
MD5 1f38f21a27285ff7b5b5dd4b2d4203cf
BLAKE2b-256 50b6f495b28512815476d66c020f308fbc6af91ecfb1b1cc50c90cb48dccb4d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dc4055317fda3046cf285ce68860b465dc8dcda5a892917ac10f64be78bd6c8d
MD5 00d670553aae9e9205396d53d7a5fa28
BLAKE2b-256 c040975842bdd3d434c893112c9d21ecf57e187a86f3c5107974e91fe1825521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bandcamp_lib-0.3.0-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21c088293077b42ce3f95d4aab3be6781d8119d7f3ef1c97ca3a89cb827d82b9
MD5 0a45d1337740ae06fa1e3d9366554c25
BLAKE2b-256 8a78c3c00f35b2199fab681a4db3910cc9cab6a5d50b867c7637ad6614c7bb1e

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