A DCSS Webtile API for Python.
Project description
dcss-api
dcss-api is an easy to use Python wrapper for Dungeon Crawl Stone Soup's (DCSS) Webtile websocket API. It supports logging in, starting a game and sending commands during game play.
Documentation
The Rust documentation for the dcss-api can be found here. The best way to start is to look at the examples in Python here. Please see the setup on GitHub in order to be able to run these examples. In depth documentation about the DCSS websocket API can also be found here.
Example
This example connects to DCSS on localhost:8080, logs in as Username, starts a random game as a minotaur berserker with a mace, moves up and then back, then quits the game and disconnects.
# Connect to DCSS Webtile
webtile = dcss_api.WebtilePy("ws://localhost:8080/socket", 100)
# Empty message queue
while (message := webtile.get_message()) != None:
pass
# Log in (to a user called "Username", with a password "Password")
gameid = webtile.login_with_credentials("Username", "Password")
# Print the game id's that can be started
print(gameid)
# Empty message queue
while (message := webtile.get_message()) != None:
pass
# Start a random game for Minotaur berserker with a mace.
webtile.start_game(gameid[0], "b", "f", "b")
# Print the messages you get upon starting the game (should be processed)
while (message := webtile.get_message()) != None:
print(message)
# Move up and back
webtile.write_key("key_dir_n")
webtile.write_key("key_dir_s")
# Print the messages you while moving (should be processed)
while (message := webtile.get_message()) != None:
print(message)
# Quit game (same as dying)
webtile.quit_game()
# Print the messages after you quit game
while (message := webtile.get_message()) != None:
print(message)
# Disconnect from webtile
webtile.disconnect()
You can also create scenarios in wizmode from a yaml file. It can create any floor layout, from any feature, and add any item or monster.
This example will create a two floor dungeon (D:1 and D:2), with a scroll and sword on the first floor (second room, past the door) and with a Kobold on the second floor.
options:
default_feature: "floor"
levels:
- level:
name: D:1
features:
- '< = exit_dungeon'
- '> = stone_stairs_down_i'
- '# = rock_wall'
- '. = floor'
- '+ = closed_door'
items:
- 'x = Scroll of identify'
map: |-
#########
#...#...#
#.<.#.x.#
#...#...#
#.@.+...#
#...#...#
#...#.>.#
#...#...#
#########
- level:
name: D:2
features:
- '< = stone_stairs_up_i'
- '# = rock_wall'
- '. = floor'
monsters:
- 'k = Kobold'
map: |-
#########
#.......#
#.<.....#
#.......#
#.......#
#.......#
#.....k.#
#.......#
#########
webtile.start_game_with_scenario is used to build the scenario in Python.
# Connect to DCSS Webtile
webtile = dcss_api.WebtilePy("ws://localhost:8080/socket", 100)
# Empty message queue
while (message := webtile.get_message()) != None:
pass
# Log in (to a user called "Username", with a password "Password")
gameid = webtile.login_with_credentials("Username", "Password")
# Empty message queue
while (message := webtile.get_message()) != None:
pass
# Create scenario
webtile.start_game_with_scenario("dcss-0.33", "b", "f", "b", "./examples/scenarios/readme.yaml")
# Empty message queue
while (message := webtile.get_message()) != None:
pass
webtile.disconnect()
Project details
Release history Release notifications | RSS feed
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 dcss_api-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2aff57f94b79b194d12bf83922767bfe6d412af0fc29eecb825fb4d8ae352f3a
|
|
| MD5 |
ead842fc88d1d4f7375392b8f40fa6fc
|
|
| BLAKE2b-256 |
16875989d372e9a2d2ff40596b2f997b3f015adee9c1c7ee4e58ff44facbbc8b
|
File details
Details for the file dcss_api-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69825bb6a8ede6fecf5bc2e26ac42e85b63c9e8cb1cfabcff9326e96b11b03d5
|
|
| MD5 |
11c1b57c1d6f126bad3dce05282f2b76
|
|
| BLAKE2b-256 |
87995caeebf7b512bdd74fd5662489ae13f41e01e4dc64469388ae538586d1e7
|
File details
Details for the file dcss_api-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
010dbc020bd1229c7479c6076359360df623727f97475c48d3d1f2007b4c306c
|
|
| MD5 |
e99e86e944719924525caf832c9e1dbb
|
|
| BLAKE2b-256 |
8a5e4aa530f29364d0f4f7893bf553a7a595d0cea21ed2ef80dc11cb3a1ac61f
|
File details
Details for the file dcss_api-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
138da8e877193a6beff49856c4ebdb5696a527ee2788f32a4e06f296b300ee2d
|
|
| MD5 |
7135f09b3e63a42c800fbfa8453ddaa8
|
|
| BLAKE2b-256 |
07939652c2e1e33d467dba9cf2575579f1b990079f3ef681d45ab429f2558181
|
File details
Details for the file dcss_api-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5205a3400ea80192fa5a4afb9dbe32d240b1a86bb5a776b00ed8619944cc0c41
|
|
| MD5 |
8dd4fdaa27ab95a580de3e07ac276a8e
|
|
| BLAKE2b-256 |
950bf624894c34233390299201e6c928064b6505f1bec0be4e1b66b536c1edf5
|
File details
Details for the file dcss_api-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
988f74c8dcf5a3ebef6f4fc730ea7fac09eb1b9db8205c67cac15f792f03e95b
|
|
| MD5 |
cf5d2bb242665c15121cf55f2540dfaf
|
|
| BLAKE2b-256 |
0bd2f76da254e01a64e18258fd2bae7aebe8e2a234cc3e505efc6c2c7feef969
|
File details
Details for the file dcss_api-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d2fee77d3af909c6cdec29952734b2ceae1f161c7ecf33ebdbe914a309cb2a1
|
|
| MD5 |
cfccaa80eb98dea518e671357ff28491
|
|
| BLAKE2b-256 |
accdf2712ed94a104fdade1cb0d1be05863d21bae3475ad861468335191b1789
|
File details
Details for the file dcss_api-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a477ebe918416a40df6748601538ff6c6ea2d9ad77ac38b2fa627c0d8179b73
|
|
| MD5 |
5b63e8342691c0cb248cebd81bbd7209
|
|
| BLAKE2b-256 |
44c25b82b82df2415b91ca464f30094b775f652e69bf271913897267c95cb428
|
File details
Details for the file dcss_api-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93786f61828b501bd25b81bd724a08679bcd0d9783b64d488fc272f3a372bd36
|
|
| MD5 |
e3adaacf35921cc2852a8b02e973e796
|
|
| BLAKE2b-256 |
6c04a3217a6dfd25594f9d5639bed7b382d3e666c79aa4fc21e0b42b3e57a796
|
File details
Details for the file dcss_api-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d0c51bba49584d2672886a6aadaa44313e840e67bf1d85889b969a1ad81d920
|
|
| MD5 |
a1e22f974fe949e946e42a0660384568
|
|
| BLAKE2b-256 |
b266930707a24fb8f73af2e65d337eaa676f86f016269d24a2bae62068da4cc1
|
File details
Details for the file dcss_api-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40f62f2475479632f5263dd39da9bfed609d832c44af36ad4f1c6ca741776483
|
|
| MD5 |
053026d5c9aa51cc91cc4df9e8400b67
|
|
| BLAKE2b-256 |
c98a858f2298beb65bdb613ec5c3a8b3e9a7ac5444b27b3b361ffa0410524e08
|
File details
Details for the file dcss_api-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cfbd1fe08a483a0ceff1c571eb7793d0b4ede984c166f7c7795d6d625cac2c8
|
|
| MD5 |
e8c574813cfbf23485459c0cd599ab36
|
|
| BLAKE2b-256 |
f1fa12f4d27204c542d86aa40421448de1e460436f0d8a3ffed93b84d0b5a760
|
File details
Details for the file dcss_api-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cef7b5a2ce0ba9c390079a60f18a0d2fc9454e1b25d1fd544e738c4c5f57aa4a
|
|
| MD5 |
879e3ddd9aea942a5dfb885ef244bc08
|
|
| BLAKE2b-256 |
57b5b8b615042df3de5f139681f4b4cb870abfcf47ebe75417e50d11906f5422
|
File details
Details for the file dcss_api-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c61ab3ff6721da218006470293caacc0b5e5391421736a2643209d2fc7aa162
|
|
| MD5 |
b481b459358157e8debf85eaec91b7de
|
|
| BLAKE2b-256 |
3e3cc69c97605d5e90d7e7dc877528466a115a7fee3c1f85fa2b63eeee537c62
|
File details
Details for the file dcss_api-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edd8b8ebac7c7ddaa62d345c83765e47c5de8965ee3b719bdd243e469f789752
|
|
| MD5 |
69bb8c95d970fa9f805643b5b30f7ed2
|
|
| BLAKE2b-256 |
bcce30919beb2e4c0d1b227845c9d9d3a40b0c54c7459d13e048110769fe277b
|
File details
Details for the file dcss_api-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4bc30310a99e1af41030245a47d8445253059105b8fead9e4dc691c0f4b6b33
|
|
| MD5 |
7d42225fcad3275ae0d5f05e1f407f5b
|
|
| BLAKE2b-256 |
26903c9b601ad53a97b1182c88bb4532ba9cf93e30309a33cc52ff6efad885ad
|
File details
Details for the file dcss_api-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
852fc09b6d7cf325ca74ac2363644d0364c858e7793192108c9343b5cff44c1a
|
|
| MD5 |
e498ed1a11f56a45b29716413ef713df
|
|
| BLAKE2b-256 |
7a61c61ccc3aa8b6aba23dcecb5322aeaefdba7f7f6a2db1a45e5f0e0e13ec30
|
File details
Details for the file dcss_api-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82a753f72d25bb2c5459fbc0a6a6362ed9fc4aa54cb2a0cdaced40eba922c039
|
|
| MD5 |
62953dab747cbd268e0cead04bd9910d
|
|
| BLAKE2b-256 |
a744724b45de247c80c5419b76489688b46340e5b4e5589e036ff0e004c80c45
|
File details
Details for the file dcss_api-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db75792f83108d1fc4463528769dd79e4641647bc198c2d0bb8421dce4107f5f
|
|
| MD5 |
824041e022abc581179d66d555b6c035
|
|
| BLAKE2b-256 |
a04f07b00459b2226ca470c3d468a993c6540765a79908cddc439def670c9533
|
File details
Details for the file dcss_api-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10721c68c27ba99800f4326aaff76d5bfc9786b098335e30f49063975b8af7cb
|
|
| MD5 |
b3bd5a62ed72c70b0ba3df28aec5129c
|
|
| BLAKE2b-256 |
a39bfc43bec8b1c033bbdaafe329ba2e0d04b1c08e8b5c49484de4bc423fd560
|
File details
Details for the file dcss_api-0.4.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 508.8 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3810f3c7dd3311d1cee2884cecf587713321a902284c494f0ff94a59871cbc5
|
|
| MD5 |
d8f309de52f40de8882097e0dce15a27
|
|
| BLAKE2b-256 |
5cce3e85653bad7553be648794b6ebbc84d403951fe72616cf9d9c6fac4fd4fe
|
File details
Details for the file dcss_api-0.4.0-cp314-cp314-win32.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp314-cp314-win32.whl
- Upload date:
- Size: 488.1 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d885bc9969a42f4c6e5ec75534bdcf5551e05e40aedfd794a6002bd49e2faf27
|
|
| MD5 |
d6db0bf6c81491ac71041798100375c4
|
|
| BLAKE2b-256 |
6ca023fb917b00a9879957b165e9bb984560edab9cf565fb2328af5d531b1d3b
|
File details
Details for the file dcss_api-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f8943ef14ca95f1dc83982a608eca16da7796290f44e37ec88ea194048ed0be
|
|
| MD5 |
4003d5a3a4473b66cbe4a9ed131f1c6f
|
|
| BLAKE2b-256 |
927d05027377b590a583935092a7b5a055ca17f7652892dfa5bbbc29649ffc38
|
File details
Details for the file dcss_api-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7229e1717e55d596df580869d083ae79d1d7f66904ca6e4f00be56aeb8bb2be3
|
|
| MD5 |
6782a3ef12c9eb46818db436d3f332d6
|
|
| BLAKE2b-256 |
3951459156cc776b22d2f61504a14e37ad117ca72f352c56466c81b04dc1cb1e
|
File details
Details for the file dcss_api-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 600.5 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66e44fcea924b497dfcc604c8a57971a1e27dd8d6efd01631fb7c1ed89708c8e
|
|
| MD5 |
aead26f404ca4ae802c46583f195e586
|
|
| BLAKE2b-256 |
32e74e891c06c898b263e82ffebb67ddb0421f103bff2a8bd785f48af7473fcb
|
File details
Details for the file dcss_api-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 620.7 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c464093a77f976c95a3dd22df44ea7faa1a66bc1c45916a6beb8fe75f445b49f
|
|
| MD5 |
1232f6be43167035eaf5ace1c119a2fd
|
|
| BLAKE2b-256 |
f885ffaad51eaac6a85e58ab4e4c6da14f23b7789dd4457db5e868d665db24fa
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c82b902c21e37249da07a76248175b9aef8ea61ee947c2f74472862e70a4c35
|
|
| MD5 |
f12529607d47d7d80ad0bd9875b46957
|
|
| BLAKE2b-256 |
d57ad1d02506427de17cdb14202478f5ee43520894e6399b6b792c2dd5dda554
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fc0807ea14d6087ab4e42ebbc37bf1d7857ef526a295de6c4c06cb225f8ba02
|
|
| MD5 |
287480fa8912016b2a43d088549fb41f
|
|
| BLAKE2b-256 |
b99cb3efd784e5f2992db271425d61ba99463c4b8b3f3d5b31a93ee1d19127c6
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1d6d5043a8fdfa6fd82e05a3609cdf74d0d5ea25cd09b925830101eb753ef17
|
|
| MD5 |
2df28c5805c70bb88af7604ee3d47b42
|
|
| BLAKE2b-256 |
a1a8eb72e1e091070664dbc8a8a80e04f72796e90edc49cfc8b1195949b3b0dc
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43c5813834e611a652874848c676b6b88d5e823ded8cc92098bd3e7f3b9fb2e1
|
|
| MD5 |
079b6eb30ef87411a0d2afa98ebbf630
|
|
| BLAKE2b-256 |
c9099e389c5f6818304153f18bf98181ea84b74fdd5f5b4189dfdc3f6e87a027
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06596861723ffafa4afc3b0aa9e524561ba0df060b6d7d2c8d77245583bff174
|
|
| MD5 |
e8969db30d2cf57aec81d3b84cbf7f21
|
|
| BLAKE2b-256 |
c10b4e1ab6a6d29b5b105f80d5a0b0d772ea7d3c2bb9b5ed569c9002217ac224
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77768a681466e1357e999eea2ae8fa206427121d25689830ddc9b1801242848d
|
|
| MD5 |
2f54e4b9a137acd5a2f93164b5941937
|
|
| BLAKE2b-256 |
f790fce334c008331a3819271a567e35f6d5ab82188201dd2e493884b0aa6555
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 508.8 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f64bdb5bb6773444fb7887d5af32a3760185e17151c2172ee34bc8304593749a
|
|
| MD5 |
b4aed8929ae5b82aeffb047eb41f2ed5
|
|
| BLAKE2b-256 |
146faf3b49332e3936ec00f307a6bfddfd37321f9a3554e4cacf1d16d1191624
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-win32.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-win32.whl
- Upload date:
- Size: 488.1 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba7049a582c48c59acad521d504fef905b7b612324a97817419b34e9b43825d4
|
|
| MD5 |
05c2ee4a718ae511f66a9d9ebb5db299
|
|
| BLAKE2b-256 |
7318dc81a42399c9861f3701cd2c56f0fb2c02bf262323f4bf60fb6daedadc92
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc0a433cf9ccb0613270bbb1914ace42cb1dae387c341f9833886539b1c6dece
|
|
| MD5 |
0fafd5e9808df82a109e483790e6fba7
|
|
| BLAKE2b-256 |
507d59567dac3bf304c916dcd48fa584b92eaf5167edfc06a506011352c1cb18
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a33ca8f77f6075a14204cf313130194026863f8d576f099928ebd65cc173d1d
|
|
| MD5 |
6f52cb8a7699f6b711c3a0b4bdd831d1
|
|
| BLAKE2b-256 |
38ef59b1ce205525379b5dd2b7c8e19db490743910e4e6ff38f7ab69f13e8d14
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d038bcbade4d7d8c213e7ca3dd787d12c2d216c861fae43d01f4d5e39331a1f6
|
|
| MD5 |
e278a76dcef7085adcdf1b01274ea762
|
|
| BLAKE2b-256 |
4f13653ac84802d1dcdbac83d71056521e7333adfd6f9e5e3382e33c67850964
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99d6bc0ad89fa377878db222fefd56e89c468c999b638c43e7fae19a5ead2f3c
|
|
| MD5 |
f0f93432cb93fe6952854f4f3832084e
|
|
| BLAKE2b-256 |
152510c530f3be4e9c18a0ee2e77ef3ea0af57b8a9ee321ab6aa914ed2cadba6
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33515ce70f464f356e73e4a79a2ddde54a45f801a6d86562d7030d3dd212984c
|
|
| MD5 |
46e361c9afd7a00e04329078d8843926
|
|
| BLAKE2b-256 |
0e01490a0959ccf289db8b00f256ec3ce1a57c182327a5c7561a2b6bfa5a211a
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b64a30b41fe73a853341f3289e1c3bdc0bffcdf440e354535bec48ebdf72e2d6
|
|
| MD5 |
c282aff1dec5ebdb9ae362768d735592
|
|
| BLAKE2b-256 |
6db3e135e0973a6d2d54c9b38a642a176b97bf4e3eea1490ce36634e1390ef84
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9246c6333a2f0c4d224c44cdf1f4ace36580e1bbe34582bd256a6ce185aae97
|
|
| MD5 |
5e4af5d126fca37fac9a95cd0d743dbc
|
|
| BLAKE2b-256 |
0f53f5d6b3f219637facb809c21f4351399a01bf1dc3f4fda253ff691fd3c1bc
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d66b4a61a928f7c722e7e8ba89f96b99eaf85f741f89fcb0f4a1bf09d674e173
|
|
| MD5 |
35d32d9395e427ab597bbdd00956d3a5
|
|
| BLAKE2b-256 |
9b3d9c8cd8fe6fb0d729e38376bbba159353bcf54784823ae13a1a16789f26ba
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 600.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d3085506b3b4d55ed93a6162d47027ad3f5ec09b508e01d31938bcb01686f02
|
|
| MD5 |
004e34f4741ace1f9116740a48b2acb4
|
|
| BLAKE2b-256 |
b74ec079aa2b9d83450ef3db6c1d0be67b4218112a53110973dcdd9ddcc09976
|
File details
Details for the file dcss_api-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 620.2 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1918f9ebf604b183f1de7035becd7df13fb73c4af9b1e420276ac7c53badd75
|
|
| MD5 |
1f7097280cd7620bd4275d9586161cf7
|
|
| BLAKE2b-256 |
cca01ebc127a071e3c9d327b287ab3c4e2cd134ecdfce93d47353ee6d5386591
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 509.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
785323a4ee05658f320d77ea4c1797dcf0b5a155d16082fc40e6c1bf36464c75
|
|
| MD5 |
22072826fec8f96a6d1f78fa96e9f792
|
|
| BLAKE2b-256 |
408c5e2a5e58d6bee3d3eaa398ffda2044632456bcadfbd71fe2d5cd73ffe45a
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-win32.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-win32.whl
- Upload date:
- Size: 488.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce1f124321816bf02e7387d0db4de657d496da1590f2d7dbfa6c5bc05f89e6ff
|
|
| MD5 |
11f1b680ccf274faea6cde60f9d8cd94
|
|
| BLAKE2b-256 |
91fd772b5a6ff13208d1b3120fc3ea513796d94141b3f843d817b525036b925b
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6a9a944ec4ed88877cc2811f0e0264a0ed85400d0ebe986f1bfeaca2dfaac1e
|
|
| MD5 |
286830ced4b27c6c81a28d3f859dda34
|
|
| BLAKE2b-256 |
6bd778c96aa601e9afa55feec0d14c87ce1b4f0ec6c8e470ee03ba68162b55cc
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cace2d7266d358bd5d9444330418acdb7d1f72f268ff57b589297a8e69b5d78
|
|
| MD5 |
6b357f3167d111c9d527bb1404e2b3ae
|
|
| BLAKE2b-256 |
6f0de1684e918d5df32b055f3313382ad9882287dc0b948ecda459711107c4bc
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df9b3f22ee1965559fd3f38d0f8538066eef468a57b2a3126af0837c0dc3d0cd
|
|
| MD5 |
6779a0529703981d2e8ec0ca1da02825
|
|
| BLAKE2b-256 |
aca0075677a4353a17a3414a1fe03c4d5cb4f8e15eb7568ddb32f89ad0efa976
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ef9e820ebcb2a0b6d8c1421ab5ef7af5dde644a5e4ba646bdc09981e24de8b6
|
|
| MD5 |
bd515362a6ed719643e241150d815c64
|
|
| BLAKE2b-256 |
2bcbe80e5ee1eb34c9de3721b0aa8456a41b5bd2d8c77b02d791a4328f3227c1
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
251aa361ddce6c3f9f470bf09dc9c2aa02f0e0b505ce4b83802f227687213d77
|
|
| MD5 |
c650559fcf9fcacbec02026d2959cedc
|
|
| BLAKE2b-256 |
cedda33ad845f345803b2119a094ed11ab67210a975363d6e605542e78189225
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86d1562eea3377ffbd59fe9968e88887453a23ad709eb9fa76bafd4743284152
|
|
| MD5 |
e596f74eb5696278fecbf4e1c9c6c258
|
|
| BLAKE2b-256 |
320ba61a5a54d35ab3cff05ee1fb6fffdfd85426cbfa73fcbc7c833451746a09
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73f9cc19af8d8e6327fbb729c03e305719b3d13066d5949dfa74a2d4877a4ffb
|
|
| MD5 |
7a219de888c5b9094bad4fc885ca4b10
|
|
| BLAKE2b-256 |
a18fef6bf83ea5d188f5f64fe5d5c231893240380d4da23a0a671ef547245cee
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77a5815fe01673037bacc96f6ecfbca63384ed1eb6942b5d14f0f71f724a2564
|
|
| MD5 |
2141956fe9bdf6d58c528d85ad0cf60a
|
|
| BLAKE2b-256 |
fe0b1b7a15b8650321c39850751877a1a6b7d5d51536d138591391882eba7104
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 600.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88211b638a20b74238cbf6b0d0cb73b21291316bfde10d88f013960c7d3a98ab
|
|
| MD5 |
0a46e2e89b17fe8cd4f67ec5372c0a84
|
|
| BLAKE2b-256 |
db43dab3e0652a7da0f57df52c005aa18562f0d748720c7ce7ebcc542687cd8a
|
File details
Details for the file dcss_api-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 620.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1e32badb15cb1cb2be544d7b8ae2ce8d0682daec9b1982b29cdc59c8f4cefa7
|
|
| MD5 |
46b1364068976f1287e1e6b92ed976d2
|
|
| BLAKE2b-256 |
feea56f8fffb110a6e2b2d59306fa42c13fa9df6314da230511d7a38a4a12d97
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 508.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35be3c6eef61d44c53adf9cd85ae1a5ab1e524d6ac991edbb7885c508d6d20c0
|
|
| MD5 |
cf08c93606e4cc70087e89e05782d3a3
|
|
| BLAKE2b-256 |
764a8fbfd8f28a06d6f76bdaab13111b42ea167127012d33dd6345a7e8f28944
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-win32.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-win32.whl
- Upload date:
- Size: 487.3 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4505065960163dba632aee1bb3164bc950fbc49bb13a6b0d160f6172095222eb
|
|
| MD5 |
6b5b1785f14b87082014990be2ba3f22
|
|
| BLAKE2b-256 |
e3442591312d75af59f2fb171baa824ef151f9bab6dcc4305edf86df70870455
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f30376353f07403eeb277c866bd1f13acda4bbdccecebd8fb2cd062f5c0a382
|
|
| MD5 |
a392bae44c444b9d419b09b3cd7e6c2a
|
|
| BLAKE2b-256 |
669bef3e86328ec742dd5e8259a730b8b563b6e0dbfdb19bc7943b2fa5f1060b
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
562a9aa12b25b58f26abe01b7b154c5134a8aae967b482177964a7f2b412ddd2
|
|
| MD5 |
ed9811c98d22f53031ea7aefea46bbba
|
|
| BLAKE2b-256 |
d28041db76861f38ed7b30457683c36068b7ee8567bf3bd9aeb871dd4bb29183
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d1b650e16c1e9e55b650dde2766fc0b54d8be3177821c705cc76b06f5faaaa8
|
|
| MD5 |
817e5cc441e72bbcaf06cd039b7b4c41
|
|
| BLAKE2b-256 |
4df5cbd99a5135eb5aceb705efda2422324a5195e92818da65aac6b22239065b
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faf799b0fb474d82d216e39fb2ce50bd0bbb5a19246ce6ebc6e579b63057ca68
|
|
| MD5 |
7f881ba815f11ad769b5dbb9ff1421c5
|
|
| BLAKE2b-256 |
26e3358aac288cd28fc5f141f3c7fd21e840667f07fa58e705ac3dcc9923cce2
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05bdced0b3d9ae32602489f109cfc74269c9289577d3545f1f072d1237cf94a4
|
|
| MD5 |
e6b503fec74e30009904246892ede546
|
|
| BLAKE2b-256 |
5fe40a0c2465e4d532755305b56f9f26cc44b0148cd4c4d8d3e9eecd4c5441e0
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9185628933f548369211e5d0654932e0d61e6884c08cc936549aae442371d584
|
|
| MD5 |
6a0cadd158121079938f44a645210ec0
|
|
| BLAKE2b-256 |
1d8731b0fc134129794a0e1238e1d5bf9020c6949eb3eca2a514f3a63748d7dc
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4174a081a4a805a319718dc62319e56513ba48f36c2462a2a8579f563b67cf50
|
|
| MD5 |
4ae0e6df63111b7cf1f1b2a4a91eedf5
|
|
| BLAKE2b-256 |
4f2a7084dd37bed30e53685f1a31c15224d55d27f771a6a110ea31369edc4187
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2eb781692f22a830a3332b85f3eb8ec93c6da1ef8a2982256fe851eb326d152
|
|
| MD5 |
0f68c69180070e86ee4da23d15a8ee7d
|
|
| BLAKE2b-256 |
c55a5c0b44c8b79dd37a386ee7b119f306ce5fb4d28dbccca13b0d71e018f6e6
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 602.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65a81a9950a5250e94f1a1d184d083d0a0c278b697e3df55dccd73ab5e1966ab
|
|
| MD5 |
3b1f8ab4756aaa74d8a2c24d742d7382
|
|
| BLAKE2b-256 |
02c1e6858e4b6f4edf72c80cab4647f80083a727e0e3fb5c5b86bc1ec9b0c4b4
|
File details
Details for the file dcss_api-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 622.8 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e63e9863727b3a8dc9b5a8e34b8153a5649e116fc6358d294b7fc4cde6bdfe2a
|
|
| MD5 |
501a3f59954c318684f4fb03de37bc21
|
|
| BLAKE2b-256 |
5b8834c1dc5b411bb1a9b9bf5ae6a9f5d4198cde8c2441b9153dc58864af086d
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 509.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dbfae32aac8d6e7bcc3e944cc2d8367b580b13ab119c8ac314568ead43e1fd3
|
|
| MD5 |
8c4dbacdfadd39514a10779f18133f39
|
|
| BLAKE2b-256 |
a97984d5aff5c7c853657b9df28e492d3900f84e558a02f228d1d19e9d722083
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-win32.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-win32.whl
- Upload date:
- Size: 488.4 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c19874c3030bb33efc5d41d9e65717007f2d23d3d89a2cfdedb961710d429e8
|
|
| MD5 |
1d90a16814b58e3c70bed824e3a0bae9
|
|
| BLAKE2b-256 |
3170078e0361eb3b5055085baa8287b95be4784f493cf02e36c75ab4a4025e9d
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1845171171e9a761659f3ed6da01fb595bfa3c910ac137367d83bcb107f4172f
|
|
| MD5 |
aef4de8c3aae8011764a45266963c47e
|
|
| BLAKE2b-256 |
a82fd46fd86faf8e59aa2a5579109834dc971ea6f773de01eb5e8c987dd402da
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
542a11b277bd740684b865a74a5ef1bff7621b99ca68c3fec6fd236a7f7df5bb
|
|
| MD5 |
079d5f696e98ab48eb601562b0e5bde7
|
|
| BLAKE2b-256 |
c8cff7c67ac5cb6a751d4a2a734a69cbcdd973e2d1145e6fed595184d70c30ab
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2915e318192e2320d9c5018ae9071ba4859e6336d470538e0d0131f0b7685ed
|
|
| MD5 |
5df881b990a346a179ee2b7ad0d61150
|
|
| BLAKE2b-256 |
5b3cc2f5556d7ba3d8aac1d6b404452e70d81d251f11b1224b21e84b37047d2e
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87650eeeb6ad11e5a68aebea63b5df09d2a7fe4ffec66d9d7a209363d59de6b7
|
|
| MD5 |
f03839a85a948b3d8bd531be5eb779d6
|
|
| BLAKE2b-256 |
8969add0266169cabc7e052f385d36f1258d47eab67e7c34f0ddabd342597a02
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
885c03155b9bd5c7eaa247c5a5dbfe70391a08fbb6c0a9a0330db18b0b926c78
|
|
| MD5 |
36393c2db382b64121446861c56d6b23
|
|
| BLAKE2b-256 |
223c5e325a3141fa3989a31c16c660f0a763488281e2ce843937e8f98864391e
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
316c014df79a66fcc775f3125c9723d4f3a42026e26453bf98242fb41a57f2e3
|
|
| MD5 |
10e58f4ca3a7ebb6d0fa385f6c8e14f5
|
|
| BLAKE2b-256 |
54e3dda855d194643c3ad48afc73047c34fcbf9f06b8f69c5a5c6178901549b0
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc2246bee6c77d92122a4296389adc491aa460da75f416c6d7a1b53a11323fea
|
|
| MD5 |
3ace4280a596f7f1de5425799191bc7b
|
|
| BLAKE2b-256 |
73a051ceb33b4908c3f1f04f2fa657f959908462776a4ce649b02710a54e4adb
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df2f3e84d441273225f240c72dcd92722302cf29936c0d7e1aa56d60a21c1755
|
|
| MD5 |
5488fbcaf02751ab0157100b20758867
|
|
| BLAKE2b-256 |
79fed79c392597175463194ee4fa8f4921d632c89b34620290330357893d0495
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 604.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f26126b80795d2ec420a465547ba8f88f197bdc0cc7583dc5285ebaa8c6f47a
|
|
| MD5 |
082d5d9a7976fa274631ff512263df25
|
|
| BLAKE2b-256 |
2ef1eb8d746f1e31fa9f581693af81178377139c6f77d30f7002a4e44e3703ed
|
File details
Details for the file dcss_api-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 623.5 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ea343e2777bac43c57576d57254876b9fc514bc0b3b3721b2389eed5c96c6ee
|
|
| MD5 |
22422841a12eb57cee7dc2fed9c10f34
|
|
| BLAKE2b-256 |
d9ebd610cf57b3351d16e2c38fb6edf2da035c6ce766aaaf10bbee448ac53c4d
|
File details
Details for the file dcss_api-0.4.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 511.6 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ef0653100897df02eb29420ba368473b25a68ee8f950c02b3d479a7d2ae4215
|
|
| MD5 |
3809c88e532a8cd76951a6a5ce9524cb
|
|
| BLAKE2b-256 |
9f9d9d57ec791dac47f9bc016fb9da5e57eb04861a28ff61c8c6ef0fa6091b8d
|
File details
Details for the file dcss_api-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb92dfaa020af2cdd1c5d4318aaf313a302223aa291851acdda3ed29318e1767
|
|
| MD5 |
965f00db49ee0d64578c9c72da005f77
|
|
| BLAKE2b-256 |
65534e58787ea29a0c8d73e0f7912c0cb4819a95dcc2d0f39016e15162854c17
|
File details
Details for the file dcss_api-0.4.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
660ba379f98a4126ddb451344d214a7753742c8ea8e3dac85624f2f92b8fedef
|
|
| MD5 |
97c0e0d5354ff199caa32b56c6d1806d
|
|
| BLAKE2b-256 |
275142e169026d70998e1784c803e92ce0692d07f3f7b4697191ff426f55428a
|
File details
Details for the file dcss_api-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c2c45dc33723956dbac9f55e86c1edfb5a018b90e7a11178c8eb975c7f4852f
|
|
| MD5 |
f2188b7a43d100248d2ef473ecb7bce9
|
|
| BLAKE2b-256 |
603d0503598c45272966b3b719440b39bf612b6606490f4a9c54887786626de3
|
File details
Details for the file dcss_api-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
339aa6cfec0704d0365d6b589c778a43ca90f40ed868fb99b2a9e085e305d04f
|
|
| MD5 |
5ab927fb3d02ccfe2998a0b86563a8c8
|
|
| BLAKE2b-256 |
f17e26136c8b7fc2df85546db011a95a15231499f13714d4f50d30eb22b07049
|
File details
Details for the file dcss_api-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7793103bdf8db6e4adce329668ced177730700a745af74c17be1a547cc4602a8
|
|
| MD5 |
d572131b615968408be52932a7e16f1a
|
|
| BLAKE2b-256 |
3926017e424e7355692573ed21992008aab25146add8ae3a1aa94b8a329dcef4
|
File details
Details for the file dcss_api-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13640f43daba774b7e320125ffd113bbbd464760f7bbedafa3c70314f134eaa5
|
|
| MD5 |
2d7381d742473dbd8bd5782a79b0c026
|
|
| BLAKE2b-256 |
c32fd3c8bc34a825b43b64d75c4eadf4c267e78e46e8546cf425f77178f46077
|
File details
Details for the file dcss_api-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
093b33d9a97f4f5d58a75459bae6838a14255409c0d9c67d4b46935c26b7c6d6
|
|
| MD5 |
0a8d142492e1caa1d8d04ef553a50f09
|
|
| BLAKE2b-256 |
f86a09dcc3d75e3fd28eef08ab850a0d93c07b199dd8d9cd1629fc1ac376aff8
|
File details
Details for the file dcss_api-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cce1a72bc9d6e8a1d72b50601ae061d093ea74aa87a4be2f6f674e1b33e61ab4
|
|
| MD5 |
146efe1acc2845ade62e2e97cc611397
|
|
| BLAKE2b-256 |
723d08f21148c65565a05e62e380688cb9633e75b548380599cd0edaf1fe3dba
|
File details
Details for the file dcss_api-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e285f17c40c1b626855163d55a022094359725ec83c623c38b153ad84d98078c
|
|
| MD5 |
6011de1d0701aa33b7a82790eef505f2
|
|
| BLAKE2b-256 |
ae53da99f197e4741a39aef64124cf984bb614f9628b58dcee7aeb2e8430f87d
|
File details
Details for the file dcss_api-0.4.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c0eed5896deb3aeaede94726b520f54f051a2a77543ae20dd83f30ca8a184bc
|
|
| MD5 |
eba40850116c529ffd24799507db5562
|
|
| BLAKE2b-256 |
4c6d40738dc3703c551a41567f27b96e5ed5b9bf51894898246d261995bc9024
|
File details
Details for the file dcss_api-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b62f18359ab5a51f921c12ab8b7d3b0ad6c99f6f49313224fc3d1ac191f71df1
|
|
| MD5 |
e3b2dd743e1247a25fa239687c90c92a
|
|
| BLAKE2b-256 |
52d97e9776d7f135fc370942afd7b654a8a962be42cf9e2ff80098c6c3ed3d38
|
File details
Details for the file dcss_api-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfdc8c5aee75cc7c6d0d4c8317ceb23c1ea4514dff315e1d2f96c358fdaee8fb
|
|
| MD5 |
35445e9c6e970b6dfb2b55390072558a
|
|
| BLAKE2b-256 |
ed6089ae971b648b9b426f619bb82c47d847cd1fcf6555d794a4f2629b71f29c
|
File details
Details for the file dcss_api-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d37963da1174c3605a849782fce17d41621292ea0d0b16d07853e1f52880a7c1
|
|
| MD5 |
c7992d41d6f8f8383d09009ad60f6875
|
|
| BLAKE2b-256 |
e382ee926a9c9a7160876a9449ce32ecd8c97ca72df60df7b9f52ba3d0a8d9fd
|
File details
Details for the file dcss_api-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8579b641c833cacee6a2e8d1ad8b12c427df8da9ccf1e3b9e9fd8dfe1963548a
|
|
| MD5 |
3617668716d3068b5d25d08d466eb45d
|
|
| BLAKE2b-256 |
6d9bc9fed9a73009d85cb78fcf3a00db1a1be6c92e637a1bbc7a61b1c0ea6aad
|
File details
Details for the file dcss_api-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
119ec18163d80614817483dfc9797fad201a923f5fa50aaca7acb89a3b1e0040
|
|
| MD5 |
057eeca5a3da7c4dcb8e560510ab47b5
|
|
| BLAKE2b-256 |
c5e7a763bd9a2deaf1514f437347ff294432c6996ae230366778737ad50311ce
|
File details
Details for the file dcss_api-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
790687e79bd0904c41824524d0093020a8160af0f721ac9cc80f2cf04cad1724
|
|
| MD5 |
5a0bc582ccb31fd51a6d4053a7654ffb
|
|
| BLAKE2b-256 |
d0d2a4290d9a52982e5e936478b9c24b6ad0c15f9bcf88dc13f872ea9ce7a0d2
|
File details
Details for the file dcss_api-0.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
496763d04df61f7df7a476f5e063647c91722c566ea860106b1b66ed79625752
|
|
| MD5 |
52c0b800d4d37f8016f3f91363f8b759
|
|
| BLAKE2b-256 |
d57a6cca95e691d5a49d2dcb377980e393e9b08b4920c764c27c64189d941183
|
File details
Details for the file dcss_api-0.4.0-cp37-cp37m-musllinux_1_2_i686.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp37-cp37m-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e17b9cbeb7f97657fc5f7c7e3564f403b5efa36883ec1837cbe8831c992b28
|
|
| MD5 |
6c0f94dbfe98ace54ae6cd384f010e65
|
|
| BLAKE2b-256 |
e01f0ee8ac66a7b13149f5c559656f3160c9a444e57723edf776eec4dbb4b611
|
File details
Details for the file dcss_api-0.4.0-cp37-cp37m-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp37-cp37m-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7d078bf057a810d8b665b5604d10344357d8751c655eb742bb2197e5a1f36c6
|
|
| MD5 |
5ff2e440d1bd3b1e78db1af878318bab
|
|
| BLAKE2b-256 |
d607ab01e020ccdfca39f12179dfbdade198e5bde3c3abfaf1dc4fec6e715df5
|
File details
Details for the file dcss_api-0.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5eff32a611855b83a353aeca9d9ba1c32146112899ad65467ff9c042badebc0a
|
|
| MD5 |
4a522edfb09124c5278a5d84a228331e
|
|
| BLAKE2b-256 |
4d77ee8ef924a3bf51420de02e6ee4fd3fd85048667006455f33706af7f7a781
|
File details
Details for the file dcss_api-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89fd2164f633eada866d53f2026065de4b37507112f6e95682394eadd33ee54b
|
|
| MD5 |
ff90f3001de3fafd4cbe69da0c3d10b4
|
|
| BLAKE2b-256 |
1709ae5656df48b10e9fb3b2f72db8c6ee530dcae070bcd2e3972f5ba8f9bbc5
|
File details
Details for the file dcss_api-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: dcss_api-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6da9066397947adec1b077b6f733308296302641d23abbf4d0a861444dd69bc
|
|
| MD5 |
50a8937dce06deeeb7dcc979c604effc
|
|
| BLAKE2b-256 |
fc0dc4dc16d5641d7671b3caf6f3f312571bf1c15b80198397e4c27909f14902
|