Python bindings for MusicLibrary - access NetEase Cloud Music and KuGou Music APIs
Project description
MusicLibrary Python 绑定
这是 MusicLibrary 的 Python 语言绑定,提供了对网易云音乐、酷狗音乐等音乐平台 API 的 Python 接口访问。
📦 安装
从 PyPI 安装(推荐)
pip install pymusiclibrary
从源码安装
从源码安装需要先构建 wheel 包,详见下方 构建指南。
# 克隆仓库
git clone https://github.com/2061360308/MusicLibrary.git
cd MusicLibrary/src/python
# 安装依赖
pip install -r requirements.txt
# 按照 [构建指南](#-构建指南) 构建完成后安装
pip install dist/musiclibrary-*.whl
🚀 快速开始
响应对象 Response
所有 API 请求返回统一的 Response 对象,自动解析 JSON 响应字符串。
属性说明:
| 属性 | 类型 | 说明 |
|---|---|---|
status |
int | HTTP 状态码,200 表示成功,解析失败默认 500 |
headers |
dict | 响应头信息,解析失败默认空字典 |
body / data |
dict | 响应体数据,解析失败默认空字典 |
cookies |
str | 从 headers 获取的 Set-Cookie 值 |
from MusicLibrary.neteaseCloudMusicApi import NeteaseCloudMusicApi
ncm = NeteaseCloudMusicApi()
response = ncm.playlist_mylike()
# 检查状态码
if response.status == 200:
# 获取数据(body 和 data 等价)
songs = response.body.get('playlist', {}).get('tracks', [])
songs = response.data.get('playlist', {}).get('tracks', [])
# 获取 Cookie(登录接口返回)
cookies = response.cookies
# 查看完整响应(自动格式化打印)
print(response)
错误处理:当响应解析失败时,Response 会自动使用默认值(status=500, headers={}, body={}),不会抛出异常。
网易云音乐
from MusicLibrary.neteaseCloudMusicApi import NeteaseCloudMusicApi, NcmProcessEnv
# 创建 API 实例
ncm = NeteaseCloudMusicApi()
# 使用封装好的方法
response = ncm.playlist_mylike()
print(response)
# 获取歌曲详情
response = ncm.song_detail(ids="347230")
print(response)
# 搜索歌曲
response = ncm.search_default()
print(response)
酷狗音乐
from MusicLibrary.kuGouMusicApi import KuGouMusicApi, Platform, KugouProcessEnv
# 创建 API 实例(使用轻量版平台)
kugou = KuGouMusicApi(KugouProcessEnv(platform=Platform.LITE))
# 获取新歌速递
response1 = kugou.top_song()
print(response1)
# 获取专辑详情
response2 = kugou.album_detail(id='10729818')
print(response2)
📚 API 文档
网易云音乐 API
网易云音乐 API 已完整封装为方法,直接调用即可。
示例方法:
login_cellphone()- 手机号登录playlist_mylike()- 获取用户歌单song_detail()- 获取歌曲详情search_default()- 搜索歌曲lyric()- 获取歌词artist_detail()- 获取艺术家详情album()- 获取专辑信息- 更多方法请查看
neteaseCloudMusicApi.py源码
酷狗音乐 API
酷狗音乐提供了封装好的方法,直接调用即可。
示例方法:
top_song()- 获取新歌速递album_detail()- 获取专辑详情search_default()- 搜索歌曲- 更多方法请查看
kuGouMusicApi.py源码
平台配置
from MusicLibrary.kuGouMusicApi import Platform, KugouProcessEnv
# 支持的平台类型
kugou = KuGouMusicApi(KugouProcessEnv(platform=Platform.LITE)) # 概念版
kugou = KuGouMusicApi(KugouProcessEnv(platform=Platform.WEB)) # 普通版
⚠️ 注意事项
线程安全
重要:KuGouMusicApi、NeteaseCloudMusicApi 等 API 对象不能跨线程使用。如果需要多线程访问,请为每个线程创建独立的实例。
from MusicLibrary.neteaseCloudMusicApi import NeteaseCloudMusicApi
# 错误示例 - 不要这样做!
api = NeteaseCloudMusicApi(None)
Thread(target=api.request, args=('/api/path', '{}')).start()
# 正确做法
def worker():
api = NeteaseCloudMusicApi()
return api.login_cellphone(phone="xxx", password="yyy")
Thread(target=worker).start()
缓存
原始 Node.js 项目支持缓存功能,相同请求会返回缓存数据。当前 Python 绑定版本尚未实现缓存功能,请根据业务需求自行处理。
🔧 构建指南
上游仓库已完成预编译,只需要从对方 Release 下载对应平台的预编译库即可。
Windows 平台
# 1. 下载并配置预编译库
python setLibArch.py win64 # 或 win32、winarm
# 2. 设置环境变量(CMD)
set MUSICLIB_ARCH=win64
# 3. 构建 wheel
python -m build --wheel
PowerShell 设置环境变量:
$env:MUSICLIB_ARCH="win64"
python -m build --wheel
Linux 平台
# 1. 下载并配置预编译库
python setLibArch.py linux64 # 或 linuxarm
# 2. 设置环境变量
export MUSICLIB_ARCH=linux64
# 3. 构建 wheel
python -m build --wheel
macOS 平台
# 1. 下载并配置预编译库
python setLibArch.py macos64 # 或 macosarm
# 2. 设置环境变量
export MUSICLIB_ARCH=macos64
# 3. 构建 wheel
python -m build --wheel
支持的架构
| 架构参数 | 平台 | 说明 |
|---|---|---|
win64 |
Windows | 64 位 Windows |
win32 |
Windows | 32 位 Windows |
winarm |
Windows | ARM64 Windows |
linux64 |
Linux | x86_64 Linux |
linuxarm |
Linux | ARM64 Linux |
macos64 |
macOS | Intel 芯片 macOS |
macosarm |
macOS | Apple Silicon (M1/M2/M3) |
🤝 贡献
欢迎提交 Issue 和 Pull Request!
贡献指南:
- Fork 本仓库
- 创建特性分支 (
git checkout -b feature/AmazingFeature) - 提交更改 (
git commit -m 'Add some AmazingFeature') - 推送到分支 (
git push origin feature/AmazingFeature) - 开启 Pull Request
🔗 相关链接
⚖️ 许可证
本项目采用 MIT 许可证开源。详见 LICENSE 文件。
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pymusiclibrary-0.0.3-cp314-abi3-win_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp314-abi3-win_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65f6464522f3c30c48a4dfa9b411414e1fb075f1ad598ad30e611233e0d8b069
|
|
| MD5 |
955603070bac61e7069439966e120e35
|
|
| BLAKE2b-256 |
7318eb87b0c51d661bdfca8e09229475f0246f1ca3d41ba6b8df29d1f95d722c
|
File details
Details for the file pymusiclibrary-0.0.3-cp314-abi3-win_amd64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp314-abi3-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82b5ff60534b4b5945241ea418f6a66e8a0d1adaec525de77cf9f42b4fb5a398
|
|
| MD5 |
8215f118b9555c245a7d165a9da327ad
|
|
| BLAKE2b-256 |
6583d4efc52d1a79427ba32f97355511616937169b221af4eec42059a6c1e3e0
|
File details
Details for the file pymusiclibrary-0.0.3-cp314-abi3-win32.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp314-abi3-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
338efbd576550ab9a47b02559771353d53b022e2488283537d28ac3ba9c1cde8
|
|
| MD5 |
82234e0bade369b2d85de0b577fe479e
|
|
| BLAKE2b-256 |
31413f6707200bbbde9db61982bb07db6b5712dd1f258ac6fab21e475b6ecf08
|
File details
Details for the file pymusiclibrary-0.0.3-cp314-abi3-manylinux2014_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp314-abi3-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dc7204c0e3a9de94bf425561d3313a05b822b483e5f12681ac92d7a5a3dad97
|
|
| MD5 |
9a01651114b9bfb55ada362c6e77a76d
|
|
| BLAKE2b-256 |
76d1e3a13c4118ba2e66bcfae53a92a740e23bfc0eb3b8e6746d909421cfad89
|
File details
Details for the file pymusiclibrary-0.0.3-cp314-abi3-manylinux2014_aarch64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp314-abi3-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
121fcb643a37d98dda7add1e4d7a35ff95e5ba206af266a520e91289844b5858
|
|
| MD5 |
772a36bb65cd6dd05adef2ead4621c2e
|
|
| BLAKE2b-256 |
2e1b89aef9bb00ab05d63e2addef3352c9dd238804d4b592356b16ac57e07a8a
|
File details
Details for the file pymusiclibrary-0.0.3-cp314-abi3-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp314-abi3-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14+, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d9a29622a213ad89333ead5efdf4c2e43918977b5a789a54a6e66c9f6a501fa
|
|
| MD5 |
3e1011f5d7aad84dd9f53ff3d3103c58
|
|
| BLAKE2b-256 |
41a6a068e39723ee6d25909ea28250dd378c96269d48bb5dbda98e549a3a015b
|
File details
Details for the file pymusiclibrary-0.0.3-cp314-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp314-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cee4011be862c2ea2227f5fca7835bbe37dee4de826dee96439e962403064ad6
|
|
| MD5 |
9295b463fb9ddd1839e2d50483994281
|
|
| BLAKE2b-256 |
2339b86f3764955fcac290bfc4378e9bc83e07625b90d0b833f300ad4a6213ba
|
File details
Details for the file pymusiclibrary-0.0.3-cp313-abi3-win_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp313-abi3-win_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
578fc9f13f7b9fe2b0c64b4b2b06cb81ef26d77c58f19a59a038dd7923060bd7
|
|
| MD5 |
3bd9f4bfd90cc538a011266a79a96270
|
|
| BLAKE2b-256 |
afd11d09f8fc8fe791f8935850a2cb88f426aed96d805c2db155753ea4346e46
|
File details
Details for the file pymusiclibrary-0.0.3-cp313-abi3-win_amd64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp313-abi3-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fca5f9b6cfb359742ebdcd0f2969c3cdc20c679dbf51bfb40d479583bedf2dad
|
|
| MD5 |
f545f403e473863b65e35f8ba7521345
|
|
| BLAKE2b-256 |
848ba7b63851fe909b661b6c18a45aa1ed467fd73b2aec794c8628032317c7b8
|
File details
Details for the file pymusiclibrary-0.0.3-cp313-abi3-win32.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp313-abi3-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ba48d2e4d5580195a258dc223acdc8efe7536294557780a00dc6dfdf5e3bb36
|
|
| MD5 |
2617f99429c22a8d17aac3d80cc66184
|
|
| BLAKE2b-256 |
5c7370d52397534ce43bbecbc693a4b05ef947a3d8fec1548dfd3141a3cb34bd
|
File details
Details for the file pymusiclibrary-0.0.3-cp313-abi3-manylinux2014_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp313-abi3-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74b476826a461d84d4f199f5e5e149c439d076c437458cdd0dceaf6257f03651
|
|
| MD5 |
eb3e67491854827da3ae6902dd299e73
|
|
| BLAKE2b-256 |
83b7da729d08685a10190b06e9c6f59f79aa23866733166f8dafd737c6c02dcb
|
File details
Details for the file pymusiclibrary-0.0.3-cp313-abi3-manylinux2014_aarch64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp313-abi3-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51b6dddb2f14f5efe5830a41e47d3c14ad9e55d68842a809c291ae8e34d8cb98
|
|
| MD5 |
178dbc9d567ca37ed499dd288509f08f
|
|
| BLAKE2b-256 |
9ccc9305f4240b2fd78921699415428282d26ea6d7cbea261f6fa78e425e87ba
|
File details
Details for the file pymusiclibrary-0.0.3-cp313-abi3-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp313-abi3-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13+, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e40c7c1de7597fd17795c859f8e9217220139c4dcdc42eccab5287501ee44f9
|
|
| MD5 |
97ccd4f9cec93bb1ee9275a9e4f7f841
|
|
| BLAKE2b-256 |
f341aad9aebc92d185973ae0becf04060cedb9190680d6d336f1a62314087adb
|
File details
Details for the file pymusiclibrary-0.0.3-cp313-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp313-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52e05cc0f710e338f30b55974da1d4aa6cff3dbf84c1eecbdacfd8a96ed8f061
|
|
| MD5 |
6fe6a43ce77a9d7e734fce5fb54c7a96
|
|
| BLAKE2b-256 |
b0d044f7eb8935a68e2fb9bab429fb86878c7c90b813b607341fc97622efa453
|
File details
Details for the file pymusiclibrary-0.0.3-cp312-abi3-win_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp312-abi3-win_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8980268a72d485792b71d9fa5fd0ccbde3c3a855e218645745c86f509917a66
|
|
| MD5 |
5543676dede2ff334b8e17dd01061f11
|
|
| BLAKE2b-256 |
941b5521fa6254aa27a0156c7f2363887ce663ab5b791a498d1f31f8e1a1a83a
|
File details
Details for the file pymusiclibrary-0.0.3-cp312-abi3-win_amd64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp312-abi3-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e876b77611d6b7a53275042c189c3d9e2ba3a8a7307595fd2e20f6d7d42925d
|
|
| MD5 |
646a06f304c02c7dfa5b74e22d40de95
|
|
| BLAKE2b-256 |
4430e29e598ce311e1a0e7012e3038bd8587e2e8a81f14cba2b08ad569909672
|
File details
Details for the file pymusiclibrary-0.0.3-cp312-abi3-win32.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp312-abi3-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7221787be444fa8fbbf8f884b9a103db4b5e3b6eaf9f87a69b9cc5a15e119ba6
|
|
| MD5 |
1e01482bcc0466571a4de510e2537c66
|
|
| BLAKE2b-256 |
286ac688379f0757b2ba88a58977c2e3cc8dbc536996d161f79a4e03706dd883
|
File details
Details for the file pymusiclibrary-0.0.3-cp312-abi3-manylinux2014_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp312-abi3-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d87df6e2a4a968a50e16f1388eb02a6f249c64d68cee40d7a8d638ed3d05866c
|
|
| MD5 |
e8f659052aee34a3ecd55264d0e6db8b
|
|
| BLAKE2b-256 |
320439412baefdcb106558e82724a9809ba146a2bae4ca41f0aba51b7f49e203
|
File details
Details for the file pymusiclibrary-0.0.3-cp312-abi3-manylinux2014_aarch64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp312-abi3-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a0ef0ab7eff6cbd4781107871c61e1aa9f2fef55a5c54523432e71003b8af26
|
|
| MD5 |
b6446ef81028bc6e51fe288823129200
|
|
| BLAKE2b-256 |
c26d7367ad796108bc72b0b62cc6285d1a318ec5e5b3378c6825a9ab09cc96fd
|
File details
Details for the file pymusiclibrary-0.0.3-cp312-abi3-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp312-abi3-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12+, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f769a5936ee435e1aeb6b5f4290656c98abd71e9519aea282ab25d410254f385
|
|
| MD5 |
b3db68b658ac0044a709348914067681
|
|
| BLAKE2b-256 |
8960beb991a6944672f4a29d452fda675b241609f66b9365fef3da234beb969d
|
File details
Details for the file pymusiclibrary-0.0.3-cp312-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp312-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1009bb991dbeb38858a416242c38d22d22f5359db3f4852659768035e634e7f7
|
|
| MD5 |
07f4250a313189482299f4a836afe691
|
|
| BLAKE2b-256 |
a8e45ac729cce58908ff4827924c344035bc4585aec0a8990433e31437f82033
|
File details
Details for the file pymusiclibrary-0.0.3-cp311-abi3-win_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp311-abi3-win_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa15f7b84d8970f9706b04a8a11ac5327ab781aed463ffeab57780218b9bdbd0
|
|
| MD5 |
42818375de001352b2bf2408dea02f57
|
|
| BLAKE2b-256 |
47d7bc64efa238edc323e95e5f7c1e3cc20edae12757e780b6520bad7650b157
|
File details
Details for the file pymusiclibrary-0.0.3-cp311-abi3-win_amd64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp311-abi3-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6777e963fd31e3914957144116b63035fa984c48ee6fe827894d8cd264765ffd
|
|
| MD5 |
898ec6aeed96b7691d7b9ce7865b6bc8
|
|
| BLAKE2b-256 |
f1cb44b76fe9ced29ba9b05dc6c19a9ae9eb1c112f6c059720225a516ce07aea
|
File details
Details for the file pymusiclibrary-0.0.3-cp311-abi3-win32.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp311-abi3-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25f6d56424212eacec4a075d8cdd9ef0fdfb6539264b04bd81686e694a941c23
|
|
| MD5 |
56919e15b17a5605fa387b2a298c548d
|
|
| BLAKE2b-256 |
7c2f150bcabbce4b719946b6a8fd4a91ef923b36c15f382aa4739eebce8f74d3
|
File details
Details for the file pymusiclibrary-0.0.3-cp311-abi3-manylinux2014_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp311-abi3-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94bcab1b8b85fc67b7c9b482355b0eb9b3b192ded7e194ed8b2a816c6d403808
|
|
| MD5 |
98854d5d69d1260a288f09ef1b1739bd
|
|
| BLAKE2b-256 |
7c981161b36d6041696dd653020c4c9e22935cf03a4ab2f4533905c3d343868c
|
File details
Details for the file pymusiclibrary-0.0.3-cp311-abi3-manylinux2014_aarch64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp311-abi3-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
715b707c8b6a650e61eed32363c4230c8818d0a1f4f20ae2aa9f74b344cdff38
|
|
| MD5 |
260414907b4ace07da1de35ef974917d
|
|
| BLAKE2b-256 |
6a74a2c4a269383224040bfd1d39efc7874c9a4c9673a9f2c28da0544daf838b
|
File details
Details for the file pymusiclibrary-0.0.3-cp311-abi3-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp311-abi3-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11+, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e17442ac7ff84963b3ade3b5e3983f91edc314e59d8a6e2bc5c9e57afb7f2aa5
|
|
| MD5 |
afd39bd4bd5b352b79ea8b5c1da716be
|
|
| BLAKE2b-256 |
207994cde887ff5dcfe166c9957dc768608dfa4f066c7f4f8353f7a720a647a3
|
File details
Details for the file pymusiclibrary-0.0.3-cp311-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp311-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a50d090c7170366fbfbc01379b5575cef37ee8399ab55cf769ca45245124c324
|
|
| MD5 |
9bd5460b87f222d904c78fb5376bf947
|
|
| BLAKE2b-256 |
85c50e46ec2e86624a351bf5b1309434ef37d254833aa2f04be0af6e58b40dd1
|
File details
Details for the file pymusiclibrary-0.0.3-cp310-abi3-win_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp310-abi3-win_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b035eec0f225bd53c9736d6cb7d1ae9c893e0c150d4758430c23262c2a609bfc
|
|
| MD5 |
48969245ac1c5888a8ff465615a7c3c8
|
|
| BLAKE2b-256 |
dae989617570dc37fdcdd9eb879135e2d6918f3116996c040952ff46fd391cf5
|
File details
Details for the file pymusiclibrary-0.0.3-cp310-abi3-win_amd64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp310-abi3-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e21f184ef07691fb9eb0f1995838c219b8f504c5890031b15b442ae0348f9e7
|
|
| MD5 |
24e9174b0629fa20a8d84ffabe8b923c
|
|
| BLAKE2b-256 |
ba55c3ba92721f24e2b9571e2ec4804bb4f0ba0145f2bae2b9fb48fdeb00ab63
|
File details
Details for the file pymusiclibrary-0.0.3-cp310-abi3-win32.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp310-abi3-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29545a9972130da3fd2294545e920ba28868bff2400015aa0613709a5a057918
|
|
| MD5 |
62b7ed22685c27cf50b61c1a4649220a
|
|
| BLAKE2b-256 |
40af14bf874811d7cbdcc2d3fad288dc4876d6548c76087fa9e419615ce7b5c6
|
File details
Details for the file pymusiclibrary-0.0.3-cp310-abi3-manylinux2014_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp310-abi3-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
152faa9ccbb94bac2afccfb725cc1d815b3d96261fd3af97970321ba9bfcf7ea
|
|
| MD5 |
599e9156f2872d91fe6286814d2d4efb
|
|
| BLAKE2b-256 |
864775622c0e5bf7d87d21edb79b44c979f81dde96a389937158d48badd77345
|
File details
Details for the file pymusiclibrary-0.0.3-cp310-abi3-manylinux2014_aarch64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp310-abi3-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29e4bd6cf1514458a161ee7300cffdf8c4e43479f7a3e8a8bde41317b000bac2
|
|
| MD5 |
6e3e32cc3771bee2105625626d1f493f
|
|
| BLAKE2b-256 |
927a2de9925853357c8fd45c5ae6f66e89d13313b64b8888a3fa35362662bc29
|
File details
Details for the file pymusiclibrary-0.0.3-cp310-abi3-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp310-abi3-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10+, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ef24b6007a0d95d593c91bfe5bd526f35305f570c04928b59bbedb48685b9e3
|
|
| MD5 |
ba745ca6e50a52a6cd0db96a4acb9f50
|
|
| BLAKE2b-256 |
ddb00097b72c36eb8a656e603eab26a4090e6542a999a403a172047f37be7fa4
|
File details
Details for the file pymusiclibrary-0.0.3-cp310-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp310-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90c2555bd24ef9b094d2e5862898d3ccbea522fb29272dff0e9570abeb629cfb
|
|
| MD5 |
d428906c56ba7d616ee7e5c11469225f
|
|
| BLAKE2b-256 |
53737470a5ba72498e3f135fbd2f89e0fad275d5b11512f69f2a8206bf0b7510
|
File details
Details for the file pymusiclibrary-0.0.3-cp39-abi3-win_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp39-abi3-win_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8387dd80f641a36052783ff78194f90b2d290f8ece58eae54eb9ad3072b1d32
|
|
| MD5 |
8d190e9374d52ce9e6779dcd17e83a2f
|
|
| BLAKE2b-256 |
fa7a449a9751e7b325ef9b4cd2a54fff3b86cac700a0bfddb6985a3fc5075661
|
File details
Details for the file pymusiclibrary-0.0.3-cp39-abi3-win_amd64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp39-abi3-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f445fb4b0d74b1461af52f6ae1d715d3d460ee1b5f9046adc1de223223fa417d
|
|
| MD5 |
30544338bdc72453e00dcaea79d2ae80
|
|
| BLAKE2b-256 |
734775f927c107d37383594f13a57b4bf2fa910aa2bf97aac984549cbe9748ec
|
File details
Details for the file pymusiclibrary-0.0.3-cp39-abi3-win32.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp39-abi3-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c3558604e7a9970461701b6bb5d4d1456e8863c1746c1756272d9838a82e5bf
|
|
| MD5 |
2533ec0f951147535adbf6dcee6ae3a4
|
|
| BLAKE2b-256 |
feec1f53db98b30b60b3808619f687bdb3eaa60fc9125b902c2467062e8fc259
|
File details
Details for the file pymusiclibrary-0.0.3-cp39-abi3-manylinux2014_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp39-abi3-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c121cde696673263eebb95cadeac1baf2626e8cd6df692ffeb0b20f1a734edc9
|
|
| MD5 |
9d4a15c25092ed0b0cd1ceefbe2e8114
|
|
| BLAKE2b-256 |
f5d5ab4ac4435bfb4e6488f58d21a5337e0eb5264c0ed467e1924a2ad756c586
|
File details
Details for the file pymusiclibrary-0.0.3-cp39-abi3-manylinux2014_aarch64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp39-abi3-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad2653a3258ea9a95322ba72d5ce80e47d64a86a841d29f15da4d7ba83136743
|
|
| MD5 |
728961e72710670fda7d6755aedd94a3
|
|
| BLAKE2b-256 |
28a47d9a61277cfa57540053430e405e6900fb0b316524f7531d21a3e7ab51de
|
File details
Details for the file pymusiclibrary-0.0.3-cp39-abi3-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp39-abi3-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9+, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40b4ab4eefa5cd443ff30d0c8ed94136107026b1255d7118bfd8cb0115e36b53
|
|
| MD5 |
19da3078707710d39d55e218a3f04685
|
|
| BLAKE2b-256 |
590367123b22de349d1f1d122ab6aac7b7dc740aa660d9e3d6652f07672a604b
|
File details
Details for the file pymusiclibrary-0.0.3-cp39-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp39-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0904cc00b9b128a0d6b94a2bcff43d887788d8a2943f3ad35db3353a6494bdc2
|
|
| MD5 |
186c7b4180301d1d4c0009390bd6dca1
|
|
| BLAKE2b-256 |
35926c9d19df5819d18df8a8bfff9d181a3560ce802ac33fada3f873cbb7cead
|
File details
Details for the file pymusiclibrary-0.0.3-cp38-abi3-win_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp38-abi3-win_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
545b8008c13df2217a7989b94e7abd143e3e8b74715722b1cd0e46b01d636c10
|
|
| MD5 |
84ec2ff26a7dada9e582780f96123219
|
|
| BLAKE2b-256 |
5349dac12c432d26754ca27a50d9f0a18243e7537eb2ffd5fb7200614840767a
|
File details
Details for the file pymusiclibrary-0.0.3-cp38-abi3-win_amd64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp38-abi3-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4c4ca37192435dd467e0902d82ee0d554367a8327798e562ee68759da376dfe
|
|
| MD5 |
f61cbdb001a1c107d8fe3cc1d54be00f
|
|
| BLAKE2b-256 |
5f0a9e991a526cd880c43209b928ab76bb8049b43f4add0c2c541df3297dbd05
|
File details
Details for the file pymusiclibrary-0.0.3-cp38-abi3-win32.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp38-abi3-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fd1751528655d7d226a86cd6ef1535326bf01e6db1d83a300a73de49573cefd
|
|
| MD5 |
4b871f4659a115fb329f5379b17a77c8
|
|
| BLAKE2b-256 |
0d68fc15c958df65d097b0ca4e4a926e724da20bb2eb7c1fc0869d11b519432f
|
File details
Details for the file pymusiclibrary-0.0.3-cp38-abi3-manylinux2014_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp38-abi3-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4aa3208b85afe11f04436b80ea2b2088dd8fe374d6c44656d880e2f94bff7c6f
|
|
| MD5 |
bc1c0a6748b2cbd8346d76cbd7956f29
|
|
| BLAKE2b-256 |
a70e8fa1d6d27ed53625897533b710ab1674b296ccd37f0745c619d5e9288a19
|
File details
Details for the file pymusiclibrary-0.0.3-cp38-abi3-manylinux2014_aarch64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp38-abi3-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb12eadf657d4d496cddcad9214829065ee5774491da1b9fdcc08b238946ed86
|
|
| MD5 |
fa71c1a1cf6c6d9d6e62b7c130872f4c
|
|
| BLAKE2b-256 |
9277df851064ccb2f8535534865d9a653aa1aace8b95f5c5d15783d7db1eb6e4
|
File details
Details for the file pymusiclibrary-0.0.3-cp38-abi3-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp38-abi3-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8+, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84ddc52e728c795b1dce5848a232a0806d71a4a90e82d02397275fd2d4dd68a4
|
|
| MD5 |
a7d565510bba4047621b4e0bd1cef0f0
|
|
| BLAKE2b-256 |
82d505805d38b4240807370ec17c0f631ce6721b21f4ec8bb746cd9ce0113934
|
File details
Details for the file pymusiclibrary-0.0.3-cp38-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp38-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df2cf3eb176ef10f709399eaf514cc2f8a3d649868a14b628e4fd6000eeafebf
|
|
| MD5 |
fe18cfd4f3c646aa4a5420be8fda10da
|
|
| BLAKE2b-256 |
2fcd3d770ccdd01b0ec59a980b7b244183f07321cc6ded2343ac8abd0216c05e
|
File details
Details for the file pymusiclibrary-0.0.3-cp37-abi3-win_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp37-abi3-win_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e93f452986b62c3eb86c36104a19298fa348a2ebc83c1598e2b740f42c71336
|
|
| MD5 |
ea4279038b58022827b88d37472c1fa9
|
|
| BLAKE2b-256 |
bb5da606f7e2fa72faa2d6077d4ed75ac64850e2e1db986ecf24a767ad5c0eec
|
File details
Details for the file pymusiclibrary-0.0.3-cp37-abi3-win_amd64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp37-abi3-win_amd64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.7+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4fd67aa62c1d5d038984e348a68137ac208cb2a510b8961753a0cbc4e498226
|
|
| MD5 |
32e3b731afd6d5281aa9b5bf40c5f462
|
|
| BLAKE2b-256 |
9e9a583b875777f88ed30d4f5161c9c321f4b356236af59839079d261bbb79e4
|
File details
Details for the file pymusiclibrary-0.0.3-cp37-abi3-win32.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp37-abi3-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.7+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b464a096a4f5cd0f643b8e5458b254cc819ce128758838e669a256bb06d7454
|
|
| MD5 |
ccddbe23a771a85ef8f97782c9beeb8e
|
|
| BLAKE2b-256 |
441266921f62b01c5ca245d73db33434ca02e7d9928d0b0fa0086a11cffca951
|
File details
Details for the file pymusiclibrary-0.0.3-cp37-abi3-manylinux2014_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp37-abi3-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6a6ba3ffd15027bd0b6c8a355092fa1f989fc66dc606287131d8f66c09ac616
|
|
| MD5 |
39209042908ad6d2f1c2ecd493499b53
|
|
| BLAKE2b-256 |
63b3031c7875986b9834e2a58380583668b5782fdd714216c4b4a91799d7cc7e
|
File details
Details for the file pymusiclibrary-0.0.3-cp37-abi3-manylinux2014_aarch64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp37-abi3-manylinux2014_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7+
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71ccf38d3a003165b4f463f4c3d1a60949f55780c5e80326ef5519b9591498b2
|
|
| MD5 |
0ff80278f6b81db4c498a36fbd5ee58f
|
|
| BLAKE2b-256 |
cfc332f4ae462e43bf3ad532e84282bc6b1e3f634a0c4731ae5b4671be3c8a97
|
File details
Details for the file pymusiclibrary-0.0.3-cp37-abi3-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp37-abi3-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7+, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1348e4a98bf647a6ee3c829436a06e50f55548b9e809b4ef9d9a867a4e6333a6
|
|
| MD5 |
bdf745097af2cf4cf9ef006ce92d05d4
|
|
| BLAKE2b-256 |
4d0b69f95b0934b57fc28f21f3f4787b59ce16d6d68da401cff65f791de5415e
|
File details
Details for the file pymusiclibrary-0.0.3-cp37-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pymusiclibrary-0.0.3-cp37-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.7+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e09a34fc4ee4b8f25808ef2e9a1d51061554c71cd93d6e7675d4a398813f0ab
|
|
| MD5 |
5e92893107f2b383997d3964b90de2fd
|
|
| BLAKE2b-256 |
1f3c5b1547ea5793dab84c21f59401f43915e2aedf22d849c304b85a43c00731
|