A RandomX cython binding for python.
Project description
cyrx
A Sequal to pyrx the randomX crypto mining library. This one plans to actually have a pypi package associated to it. It shares the resemblance of the actual randomx api rather than with pyrx which contains only a few functions and that was it for it.
How to use
from cyrx import get_flags, Cache, VM
from binascii import hexlify
def main():
my_key = b"RandomX example key"
my_input = b"RandomX example input"
flags = get_flags()
my_cache = Cache(flags)
my_cache.init(my_key)
my_machine = VM(flags, cache=my_cache)
out_hash = my_machine.hash(my_input)
print(hexlify(out_hash))
if __name__ == "__main__":
main()
from cyrx import RXMiner
def main() -> None:
x = RXMiner(2) # 2 threads in this case...
out = x.run(
b"d2a4d89503447401ef6e6f30b46635b45b54f25a650c47464b5311f9d6fd4759",
b"d2a4d89503447401ef6e6f30b4663555",
)
assert (
hexlify(out)
== b"62894d19b5b129c9c7bab19171dc438446ceade7e0e8e3b1c263969e5463d9dc"
)
if __name__ == "__main__":
main()
[!WARNING]
One Word of Caution that this library is made for eductaional purposes only it has been put on pypi in order to shortcut some problems that the pyrx library has failed to live up to. The Author of this library is not responsible for any abuse with this library including Cryptojacking which is common amongst malware authors & large botnets. Use at your own risk.
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 Distribution
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 cyrx-0.2.0.tar.gz.
File metadata
- Download URL: cyrx-0.2.0.tar.gz
- Upload date:
- Size: 102.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f718535e0050dfb44bc8c87e6b506a0292c2519584259169d06092deddc588f
|
|
| MD5 |
2ab284120e238accf0b21932e8281245
|
|
| BLAKE2b-256 |
e838c97ae2992acac5a1a01a850fb77ecd62f2a144b675affc708adc96e26754
|
File details
Details for the file cyrx-0.2.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 196.5 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6181b45f44065904be9747a5d392e64b1c30b20de0956441cbaac8e5bb57896b
|
|
| MD5 |
f4ac00bf2505a09eef1d0d3897e09235
|
|
| BLAKE2b-256 |
e3265c3c4db57b86cd409e4c51050fb706d320e9271b71bf2dd25862d127cb9e
|
File details
Details for the file cyrx-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a6d40139080e0c49e868702d2c1cfa5b2ebbfc3af916785055be183ea1ca5c7
|
|
| MD5 |
45a2a76755b8325e6c6bd2ddb72ff473
|
|
| BLAKE2b-256 |
e19b25e07cd3e84dd89813921654dafb7e759d669c39ac43e800ab6649981547
|
File details
Details for the file cyrx-0.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 478.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e93e22a61dbd2ad3e88d20f65c3da9a39dcb37b6d3afd06c0678094706207712
|
|
| MD5 |
c95853a549a984394a7daaf6489fa577
|
|
| BLAKE2b-256 |
79ad3e936db9d3bd23240406df79d6d3e1be590b09a385ffa232e1bd543bd907
|
File details
Details for the file cyrx-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 209.7 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca73094f7c8f2acfb0d400a7c88c0a1f9381388e14202192ed59819e69b7d747
|
|
| MD5 |
efd80cd9545bd1288413d678297beb96
|
|
| BLAKE2b-256 |
bb8623243b3d1bddbb80766b6f7a453a3a30e48ef8b03d8328d3999133ada9b4
|
File details
Details for the file cyrx-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 212.4 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3ac8f7e7123d9cf5462c2e997c84740326dfdfea7d7ffc9c84bd785d8a68799
|
|
| MD5 |
fc326709722ba33fffb889834ca662bd
|
|
| BLAKE2b-256 |
d39a7561f17db165810a62fe3eb7f6c74811a335e6c30bb0cb12659c7b994116
|
File details
Details for the file cyrx-0.2.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 189.8 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
033c468797061e89177306a0df3545a1fb08ac7194f206d707b84a11cfeb6229
|
|
| MD5 |
f4313efd1e9cbec4d6906eb5e677949c
|
|
| BLAKE2b-256 |
29fe58070d920553b7b07afa8384ba37c56792c0d353554324693b8a4e64ce9a
|
File details
Details for the file cyrx-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
303aeb58cc8f60c71e97c7ff4c340cdc65c149e4850f37051f6753897d96f5b4
|
|
| MD5 |
a74c7fbcf437a479bddf032bf6246975
|
|
| BLAKE2b-256 |
cc4476a03f32bdac25380a4cf6469533744be1ec0e7a449d53ed7f02630a9816
|
File details
Details for the file cyrx-0.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 474.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9092610bc7339f4aca33d2a9427b1c23eda30e2f96742eabc4402f19421089a6
|
|
| MD5 |
735df145b89fd7ed294ac9674973f1c4
|
|
| BLAKE2b-256 |
2cef868e2f8f37c92ab00726d108927524c993ef4e2b0aa7ca18388091d227ee
|
File details
Details for the file cyrx-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 207.7 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87c6bfed4becf00fe34f1e8aa5c72376aeafafdf16239a8aa90c52eada8fbdef
|
|
| MD5 |
2573418a0b04d03831449c14508f4158
|
|
| BLAKE2b-256 |
af1048f2b6762a0c7dbf69cbff50a01fcd67d5e2c264c7b0c676a6a0b386e45e
|
File details
Details for the file cyrx-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 211.0 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
237ea23bee845f16cacd51bb89440a1ab3dd4ea013c42e8c2dc5f8bf73b0dbc4
|
|
| MD5 |
cba946d252fae4471e96baf67a8004d6
|
|
| BLAKE2b-256 |
1b4ea31c38b8e28eda9c62c8099c9617a4b868f05ba36c46b317464674f1045c
|
File details
Details for the file cyrx-0.2.0-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 189.5 kB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c83520c4ff1ab2996e88edd584e8a9d8de3e22407023d0601ff56ab67c9357f
|
|
| MD5 |
33e03a084b4ffa7c27f5a895656c8328
|
|
| BLAKE2b-256 |
ef4cdb61a83acec9032fca9a712c3d7d5fcfbce86422a156c3c9b5ca5d4750b8
|
File details
Details for the file cyrx-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcecf859f97b8d0acb2ece9d532bfdf2a08dca128ec0481020ddaa92dac56c66
|
|
| MD5 |
bd8638abc899c1dc2071c313d9482a3d
|
|
| BLAKE2b-256 |
c9447046fa3060359a7d7910265f96c0c67340b50064b43cae89ec51048231d6
|
File details
Details for the file cyrx-0.2.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 476.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0907688b4287c4155acace688105df6966b8c16906a468837eb9847b2c8be7c3
|
|
| MD5 |
77badd001ec09a4c1f7b28169491cb99
|
|
| BLAKE2b-256 |
be04fa30c3371a3dfc18a2912416066b9afe3b39f37503cce559cdfe5c287535
|
File details
Details for the file cyrx-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 207.6 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c89732cb5448601c6f1cf63fa0de74596b4999936fef899255eb1f9b560ff4da
|
|
| MD5 |
b3e6c309755aca360d23ccafdaa671e8
|
|
| BLAKE2b-256 |
2116546e76c96bb1bd8aea8a914ce718b76000a22540d8cc263553d8ef96c76c
|
File details
Details for the file cyrx-0.2.0-cp313-cp313t-macosx_10_13_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313t-macosx_10_13_x86_64.whl
- Upload date:
- Size: 210.5 kB
- Tags: CPython 3.13t, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb8260a60793931737946d976358f6a49a75943f868b241a245e7919944f72d5
|
|
| MD5 |
83224c24a57735b73e2afcd658ff1e0d
|
|
| BLAKE2b-256 |
f94dddedcd20c112a6c53a0251fc047981cefa330c648e1b71bb0c751f9a924d
|
File details
Details for the file cyrx-0.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 184.0 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7511b7a09055c4878f3a5baaf859b84ae2e7a56cd7594ed1ee0ff16c1a3f17e3
|
|
| MD5 |
b14017a96f48163ec45db5c635f7c8b5
|
|
| BLAKE2b-256 |
1b70607028cd24f2f80c8f5031f327e79e99decc347a5fe2c15ce5da613e2a71
|
File details
Details for the file cyrx-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40dee0955a3fa71862c405d036e519290cc6db2e95a6327651d308bc3821006b
|
|
| MD5 |
83689a857dcb3dfaf8c846aef4d84150
|
|
| BLAKE2b-256 |
e2ba2728cfa10cfb2934947a879cd842f47d794e18a536c942717ab0f41e45ce
|
File details
Details for the file cyrx-0.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 475.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db91eebc7bfe112a337e6addb7adde412608042fc2eb0cb8365c7fc3d2af6737
|
|
| MD5 |
5d3f7ae7b50d7dc7df42b54d1ff63d61
|
|
| BLAKE2b-256 |
31b501b9d6519dec23159e7e3be763bb7ec16c2668489b84f2ce4005e80b0d9d
|
File details
Details for the file cyrx-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 205.2 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e6d2eb6e5cec2ef596c6b4c5ba7d850cad4bb67bfe35b73e2824609c596411e
|
|
| MD5 |
52109bc1d3d7e286fe9d9381af924915
|
|
| BLAKE2b-256 |
0eed97b19d507e18ceebc1a0f8c3f1e96831e3e71122023bf7c9667416415998
|
File details
Details for the file cyrx-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 209.0 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8c14176f0a91ac613abd0b139dd2a18a4cbc54d1c32e3d1dbf9d075b5aec046
|
|
| MD5 |
5d439f2752300ef33a5ab4d0b9140c68
|
|
| BLAKE2b-256 |
0d74a48b355d4f2be62e2011e64b080d2c44c85a9b84b13b2bde4ca0d4230fcd
|
File details
Details for the file cyrx-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 184.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
866594322e6c02a00190187e99569e8b2f4474d82514196770e596b89c45bd92
|
|
| MD5 |
6878fec7c00c8cf34c476ea530104048
|
|
| BLAKE2b-256 |
890d56b81c62ef6414af0e497ea54dadb62cf4859435461665e6edb2ef9cc179
|
File details
Details for the file cyrx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6715dabe594f3fbbfefc72bb363f83b8b064e380acb625a5ef2cba8cf8f0613
|
|
| MD5 |
cc0d9335ab53fb124e38d0ec1aa2b125
|
|
| BLAKE2b-256 |
2dd500e3c00109c79c3e803dd23e4c01dd40ca11af43c3cf76adf58e77862a6a
|
File details
Details for the file cyrx-0.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 476.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b75bea170a5369110753ab43a88de51737e849cc59f342202f2ff971712b2299
|
|
| MD5 |
58adde2698c89ac7d87cf27707f56223
|
|
| BLAKE2b-256 |
b2a244cf5512792f52d5c15e85ece3e0311c09be5ab102896233368bf9c5e088
|
File details
Details for the file cyrx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 205.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8780a02bebf7221b9518381b92f29c23806de3773690e2d3b3364106330962c
|
|
| MD5 |
e9be7ed46ad812c7548221e3621506ec
|
|
| BLAKE2b-256 |
7888221c5ed8be5470aa3f549607a0e10b51104898de223d8e184b1e2949df8f
|
File details
Details for the file cyrx-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 209.6 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c80a890efa671b8949ee616d0cf5960eb794544af9a9d164197740cd0ac83c86
|
|
| MD5 |
d08ec91c51bb27708690d66cf25cd27b
|
|
| BLAKE2b-256 |
b0728d4ad5fbbce0e7325015d67ff51abcd6121d91b24750ee7d2debeed5fd4c
|
File details
Details for the file cyrx-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 184.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20484521354b7df646bd0439e7cc3a2ed1c3906f785c548ce72e31699e3cd2fa
|
|
| MD5 |
5375cf02ad408f83e4b9836152ddbd75
|
|
| BLAKE2b-256 |
2fec3614e3a45bf4680c9072e33ebe7ccb83a52f82f48ca2c272e3633737907d
|
File details
Details for the file cyrx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95ae167706cb7fc0ce9dc06011b3efc6a2decff3e8700d6697623ad868ed9f7c
|
|
| MD5 |
ca6e5fe42a9e6d85bae69c4b36d88e71
|
|
| BLAKE2b-256 |
38d52a0d88f6f7fcd55e44d4e8f02ee282508106c205cee69b0ea3882465d36f
|
File details
Details for the file cyrx-0.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 472.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adf6a641f0a17fec1f24b44c50dab3f00c7882bdcb74d0718cccd49c886ee939
|
|
| MD5 |
95c4ccf3ab85ed10de9f90e2efe71287
|
|
| BLAKE2b-256 |
d94f175eb7d277e2adbd16a1e38e49ea25e93a4af814457df340fcdf9706e413
|
File details
Details for the file cyrx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 206.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
266dd9dad8750e485e9c3a51afd86314d21f4d3907f7de67f5d7fb7ae489591f
|
|
| MD5 |
8c9b94de9901972e3a8251d53f0d32e2
|
|
| BLAKE2b-256 |
34fd65b2ea9b6ccf16986f306b9d0ff4607ef9745da8b2c7069b85dd49b569cf
|
File details
Details for the file cyrx-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 208.4 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4903190738b71aa5e3065c817cd95be874caac3dfbf9362c92a9ba118e3f8d66
|
|
| MD5 |
60b1f4e3f835348bfa0d373e8c10ae4f
|
|
| BLAKE2b-256 |
b22b6a700beb85acb180d55d273b87f2dcbdfc44a4eefd2d2b3280f33a2d710a
|
File details
Details for the file cyrx-0.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 184.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
567b15536cf19b51c628fac716bfb2c0933732518f65c7566352fc3f092cb01b
|
|
| MD5 |
f2d81288daa4455ef10054762779f6e9
|
|
| BLAKE2b-256 |
dd5887664cd56954d0d46759173b88e2c0fd53716ff25941327ef6f43a4271c4
|
File details
Details for the file cyrx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f572706b863d149ef48417e76a2caa73600937345cd8fb2c14273c8064fb90f1
|
|
| MD5 |
e266983112268449a84d7a154ceee7aa
|
|
| BLAKE2b-256 |
3b4c40632a9925ad54b024fcefe5a31f256c7b500a3a2d47d0edf127603e45de
|
File details
Details for the file cyrx-0.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 460.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13937b969c7408d243cad9358cc0c1b88495d55875f82c048f7e0989b79b80e9
|
|
| MD5 |
692913bf64df57ce005b00417aeca71d
|
|
| BLAKE2b-256 |
2ca890ad4467677cdd8a6a808b1f16f2e74cfca5d9cc4e17006c72b6a041c011
|
File details
Details for the file cyrx-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 206.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
240528335119a0db5ac49201baf4ae0abc07624115dc0dfc07a9784205804cae
|
|
| MD5 |
55e4c4817ac54a00ac5faecefce98293
|
|
| BLAKE2b-256 |
e9e2e976c53db5379d8ef4d536a11a5c85b9d2cc28487a5cfebbbbcc6c68efd3
|
File details
Details for the file cyrx-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cyrx-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 208.5 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfb13610ca999171d1d6ebdcfc09e0fe9524e59e8022dcb53acb422a12efcb93
|
|
| MD5 |
8f7e5254afad5ba0283af90ce784c226
|
|
| BLAKE2b-256 |
27040fdaff5bd8440aa4323ff79e436cc674a4fd86d26d931ac3394d2becfee8
|