Quantum Circuit Optimisation and Compilation using the ZX-calculus
Project description
QuiZX: A quick backend for PyZX
PyZX is a Python library for quantum circuit optimisation and compiling using the ZX-calculus. It's great for hacking, learning, and trying things out in Jupyter notebooks. However, it's written to maximise clarity and fun, not performance.
This is a port of some of the core functionality of PyZX to the Rust programming language. This is a modern systems programming language, which enables writing software that is very fast and memory efficient.
See the CONTRIBUTING.md file for detailed instructions for building the libraries from source and contributing to the project.
A bit about performance
As a very anecdotal example of the performance difference, the program spider_chain
builds a chain of 1 million green spiders and fuses them all. In PyZX, you can fuse all the spiders in a ZX-diagram as follows:
from pyzx.basicrules import *
success = True
while success
success = any(fuse(g, g.edge_s(e), g.edge_t(e)) for e in g.edges()):
In QuiZX, the Rust code is slightly more verbose, but similar in spirit:
use quizx::basic_rules::*;
loop {
match g.find_edge(|v0,v1,_| check_spider_fusion(&g, v0, v1)) {
Some((v0,v1,_)) => spider_fusion_unsafe(&mut g, v0, v1),
None => break,
};
}
On my laptop, the PyZX code takes about 98 seconds to fuse 1 million spiders, whereas the QuiZX code takes 17 milliseconds.
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
File details
Details for the file quizx-0.1.0.tar.gz
.
File metadata
- Download URL: quizx-0.1.0.tar.gz
- Upload date:
- Size: 101.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7400377906b74379f6952aaacb37d4174d14f635636be521bce0507de560adf |
|
MD5 | 4b2f103eef6f61b56c111eaf7391b026 |
|
BLAKE2b-256 | 1adce84066150ef07a64ddb435049136e31d574d5fc7da0de76cadd97df473ca |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 917.4 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40fb4adf48141a7c5e6c47c1027ee59fbede07e863f76b165027d5590f2ec77f |
|
MD5 | e0c2bc158106508c8d81f931fbf7a9d0 |
|
BLAKE2b-256 | fd420d30ce42ea7279f3bec9fc2a06c2dbac171c32618fa0ad63ea4c58442133 |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 961.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5614dafa7d1c0541220f5c3e5e5ba645e56b2951dfa8dafd6d6f83b403fcae34 |
|
MD5 | 21734e5709c227f5c48b028c58cefdf9 |
|
BLAKE2b-256 | 35fad0b660dbda04b46f4a510c81ee4eaad672dccce9ac13c4558511f57fb251 |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6cc40ce279b2a15d91a489312289d772e61bbfae4d7a71d5787baf652043226b |
|
MD5 | d6cbff3362f3498e24458bf9c1b80877 |
|
BLAKE2b-256 | a6613e88b6061a055999b3fb3de1341a4271031738031cc78f9d0e9c1bbc3f0c |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 926.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2342873ff70b0c0fad0bcd8827306fa1c5072c32bf82d4d7fa635ef092f67fd2 |
|
MD5 | f7f565f8306f76c30782338dd5eb5eeb |
|
BLAKE2b-256 | 185e2fc085e332f3d09f156da35e663c7d15587e35c6902582c2fff4970ba36b |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 744.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da92903883c1227b5c2f552f004f02f44260c2cc0b4b575809e982bede0a81e0 |
|
MD5 | b77d08cfdb3eee37546c4384a0d28433 |
|
BLAKE2b-256 | 29ac651763897c3c4fd6312d9747fa6b1230c10ee979c93c0ab582b451a079a2 |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 889.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e59e44d366767e244dda58a2f0da55bc7862bc05eafdeafeb60fc49fa5f31780 |
|
MD5 | c8ea291ac5fe767eb94c72daacd7ed41 |
|
BLAKE2b-256 | cfc7a3b7546f240cf9106ad494864cc887b32e0dd6da5fa97507d53de9f7bec4 |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 814.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c9278be6f28d12dcef201bde43152122890da930bdc981e78594a061cae255c |
|
MD5 | 1bf45157889e43e014c3913915d6c87c |
|
BLAKE2b-256 | 3c5cae9033de19f630b0f77b7c2c5485c83171ff2aa4d44f4ccd5c256c9a228e |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 807.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7478b0bbf148f87d903ca00475bd5ac6492d2e853616933a45c34b9fe5ce370b |
|
MD5 | e14ddcd3e11ab118a60b45884150f6f5 |
|
BLAKE2b-256 | c34d5b9ae32a91aee61767cd551f92ab9c8e94b0a83976631415852b8ef4f04b |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 742.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea92a214b50d12554794f49b1caf15db368d6122edf9a92ab10a0dc5613b2041 |
|
MD5 | aeae87f9d06e5725c2784073cf9ffc39 |
|
BLAKE2b-256 | d7bcaac7e89ae9fc05c18551f984ceddddca05dee5e968bb9b6dc9b544145e44 |
File details
Details for the file quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 726.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34e59d1dbe094a39928b791cce65e9efc6b35e671512a92715aa3fc656444a45 |
|
MD5 | 19c31da509e46f227791da8858bd0b53 |
|
BLAKE2b-256 | 9200500ab88d87eff2442b5e3650d2501903646ef1ba97b41a773e74e3820bb3 |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 918.3 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25dd8cec0798e84d4adb0e5e0415d38f2d19427b4f4d83eeacdd43369c5c7ffe |
|
MD5 | 73c8c58ba6d4c13abbdd07a19e1a2e0c |
|
BLAKE2b-256 | a720f188a15372c65dfd09c4051c0bbcee4dc36feccb86e7ce7b9b620b6b9acb |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 961.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fc2fd0e8e117fdbc5c41d3f367bfb696cf3e9015f741cae6abeb1a248907103 |
|
MD5 | fa552ad42da604059cfa6e76bf610d9c |
|
BLAKE2b-256 | 25181edd0f4797af183e4b73d826f343a5455b69d33871021a802168f2d3b15f |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce83e26a3756cec86aa8e2db10c870b4d1f2fa9e6bc68281e560f72be8ad8ee4 |
|
MD5 | 82dcb42766a670b0af29eedf293d923b |
|
BLAKE2b-256 | 71513a283ac27f693f8fc09b36b586b048187a44445a6706fd8e94229ea17b02 |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 928.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c14901883c4d0b588fb713ab2d7750b06f40750a34b193e61f4c1e8348339114 |
|
MD5 | 1706a9c314dd3bf7ef196cd141566d67 |
|
BLAKE2b-256 | e9abafdd98d2e9921d496482031d127ef7b90380342fd1fcdc5dba78373bba7d |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 745.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3da87d2f5d72825d11d6f266e748e3f10bd558c374f6b295ad925dbfe5666695 |
|
MD5 | e11a1e11bd09edd89849dc04e4772963 |
|
BLAKE2b-256 | 2307f70dcb5aeab71e0431f80cf0ad9bcc4779de8f54b6243a018cc8769fe6b1 |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 891.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fefd5ffb0f2bcf1ebb4c1e4e5c2fcb88de9bb2f0a4d51a4ee3eb015a90897ac |
|
MD5 | 3a459d6e2bb6262e1cf708eb6bd7d6b1 |
|
BLAKE2b-256 | 59c2565c047ad8bbe7758f849856070b04184be7a5008139bb8226a7743d2c10 |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 815.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62ca07402c8a5051fb2a47feefc4c26c67e304c29d25da04d3310bd675e5768b |
|
MD5 | f13eaaba26e6582e9ffab63233501a16 |
|
BLAKE2b-256 | 100856b160af08da9ce2b01ed6eab50de43bd636ffea032317d316669523f399 |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 808.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a86d221ea28ec468ddb759ba48ab3cbb047d4c95bd0e7b960dd6b48b45b1aee9 |
|
MD5 | 4aa214f9815a537f03affeddecab10a3 |
|
BLAKE2b-256 | 041aea135d3b0e16fb935ffbe11c5572b6d1e9bdd45e174650c997925dbf4928 |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 744.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d61300eb5bef988d1c93782ce3f61144138e5441ca49ab2c7737fad912ab4e0a |
|
MD5 | ccad8770dd1d0139f6c7b6e12953eb06 |
|
BLAKE2b-256 | d0887777a35aa23c0aaf6fbc9d1620b958a780c6d21f69c07c51656e39758001 |
File details
Details for the file quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 727.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e8234157eea783d13d03048543fc199ebb57f1ccb0f2160b14da6163de0318d |
|
MD5 | 2acb8cfeb256b181a9dc546b0c96820e |
|
BLAKE2b-256 | 32cedd2746d560448838b0138f6e93f7f16ee8bbd36a1d6d0b7ba3d9c3441072 |
File details
Details for the file quizx-0.1.0-cp312-none-win_amd64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-none-win_amd64.whl
- Upload date:
- Size: 554.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3758adea37ab00fc1fd45a474164060e6cbde2cf00e0c3de30c78e107e84dd1 |
|
MD5 | 9fc0da2c93281d26f050aaa06f6c6082 |
|
BLAKE2b-256 | 4490d1cf0f8c3a789eae9eb85d5b4d980bef50d60aec1b0797d0d1130fba121b |
File details
Details for the file quizx-0.1.0-cp312-none-win32.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-none-win32.whl
- Upload date:
- Size: 521.0 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcb4fe44ae67003c45b62b3022c43818a91664c27aaa5bec031a4f7281cab663 |
|
MD5 | 25a6431557ffe732e280f66c228c8193 |
|
BLAKE2b-256 | 8487824defe405e1d49aa1aa5691e1b12c4886f388a7cd8cd8bd63a317926036 |
File details
Details for the file quizx-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 915.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cacd45c08c5aaa80a5b2fd4818b99e08d2943496e58f71247bc34aa4decc1067 |
|
MD5 | e13f76eb92984c6e007a0f0bf6d27237 |
|
BLAKE2b-256 | a07399f0d9cf2ae775c78fc192aa59adbd07b69b6bbdd55a233a68116766d6a2 |
File details
Details for the file quizx-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 958.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5dc9dd20f47bc39677534101f1f89ed178d2b1043db83f29e81d7d0412a2022 |
|
MD5 | fc6440670c2b727476c233dd12b2f383 |
|
BLAKE2b-256 | c24ca713298d37ea2985446920f2835aab8e351d715b0052ff89a7075e0f6b7e |
File details
Details for the file quizx-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cac6b7195a53ba7e11c9668c2fe9c92a548fc93ea46b0c7c05a89e2593442a94 |
|
MD5 | c011598c9862c0b9ad737397e4419eea |
|
BLAKE2b-256 | aea89bd27cc35da1648caa6de5be39822b21c9f3ff57cf53b398feeedb55375c |
File details
Details for the file quizx-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 924.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aca2ff2d35eb759a7b1469a45c0a2084dca12cd22779d7820ab68cc87c838c37 |
|
MD5 | 4e3fbe88470222360b785179f27c7511 |
|
BLAKE2b-256 | 5ca5ddfbc180a0bd0350f7f96897423942d421aee474bede76af7eb68ee98713 |
File details
Details for the file quizx-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 743.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cefe0e7622d20c9d7667d841680e63855a81f4db25578d104074e63e89603a9d |
|
MD5 | 2432e7e4fc35b403096b74458fa5caee |
|
BLAKE2b-256 | a49c39a1d97682a7e0c3361de28f84e9f47e3fef0f9dbee09a397078b7a326c5 |
File details
Details for the file quizx-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 882.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da55b44f4edd7893cd5da6f6fce2f17a3b698c00d119f9bf16500dc1735cc7b4 |
|
MD5 | 8f27a2f732eda81e70906cf10397ff16 |
|
BLAKE2b-256 | 9eaa67d030a7eafc2854ad6e1086bb862d9bafc0b2f8fe504f565e68c20d4ff2 |
File details
Details for the file quizx-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 813.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a275b83271e43eb465f14e28da81e8661a1f95ae07490523fff79b93bddd8cc1 |
|
MD5 | 4de4cc75ffff60a7a547c4036b1bf8f8 |
|
BLAKE2b-256 | c110eceae008eba95543e4b4d6a4324c0939cd8dc7d90e78a7ab2e64e31d6fa4 |
File details
Details for the file quizx-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 806.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 828a973ebe41a6f0de0739a173b8501357f40bd11360c8d07d2825ca7d6f13f5 |
|
MD5 | 4f1524851b872702ad4fc3316b108c2d |
|
BLAKE2b-256 | 466a8c2c9e842cc04b08198663c8c781304fc489395c293d91553a25b3e0c750 |
File details
Details for the file quizx-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 742.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 568bf095222d5a4c9b31826b82ce0c4ec4db16ba39f3ac415f943d6b21ccc6a9 |
|
MD5 | cfe300a0ac14a66bf6ea5692ace1d025 |
|
BLAKE2b-256 | 87fc66e5225828d74096dc868d16520348a49f5959e6db32d797d1b4159c63e3 |
File details
Details for the file quizx-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 725.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef6e1b490d65c95384b7f6f373f94ef05c766ade1fcff60c92d8a498a8853528 |
|
MD5 | 479833905467443e94af1927f93362a4 |
|
BLAKE2b-256 | d92ac2ec08258490e6a4a39314d5e083409efcfc273234e40bae8a7959222ec9 |
File details
Details for the file quizx-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 653.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a9eb894392858d2f5072c059ff087f46dcdf8bf483c2fa54efddb80f7eef8ed |
|
MD5 | 808eec67eabc1195f9114e95f561d8f8 |
|
BLAKE2b-256 | 943082be8f0c87c949d7669013a4f3b5423440b7e121208d22b8ad9bbeaffffd |
File details
Details for the file quizx-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 674.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f46e2a3efbb47979f620f7fdde9cb1bdd2d3bde8c782decf7b595af341428929 |
|
MD5 | 3c424592e5f26287179c1066eaa4e7c3 |
|
BLAKE2b-256 | a3e03139c59d65b1fd2ec43e5664349bd5950ec064725df1ab31e8279e769ee0 |
File details
Details for the file quizx-0.1.0-cp311-none-win_amd64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-none-win_amd64.whl
- Upload date:
- Size: 552.7 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22be86e792d724697bfe86af6eabebfdcb3bfa4133165d94c34caffb5514eeb8 |
|
MD5 | 50f4178dfdfd36edced21bb0f0115976 |
|
BLAKE2b-256 | d67eb3def2c26e357c7269c779c3f8ef41e607c97833d8720fc5c9f51949065b |
File details
Details for the file quizx-0.1.0-cp311-none-win32.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-none-win32.whl
- Upload date:
- Size: 519.9 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0593b7f82d3cc9f8be0486131e609063898701a757618495c067205142d6052a |
|
MD5 | 21fcf16f73343ab234b8645c79d5d246 |
|
BLAKE2b-256 | 2a54fbe9bc553cfa675b47199166004aa8cb53142b835d3d72ddc753397e6e22 |
File details
Details for the file quizx-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 914.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 301586470208b9183bc9bcead42dff040a92069252ebd7fb1e67138630688a4b |
|
MD5 | 64be02882ab567e32aced14120be1d84 |
|
BLAKE2b-256 | e181cd378b314ce84972609f3c3100c81123c1bb2488545bb268ee225b9de345 |
File details
Details for the file quizx-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 957.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e02a64aa4a899de8abde45e3096f9483900ab85c1949c818d33f16c7684962f5 |
|
MD5 | 53cd9482620ad120847ba5dbd1f2822c |
|
BLAKE2b-256 | d962fefad51683c0be6693bf1cc317e4faf850ef2b8faf17a0d3b81dddb9007e |
File details
Details for the file quizx-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7872141ceab41f1631c32a45d99cec9d8ef146570b98233f7eb31b2762d07ea1 |
|
MD5 | cf644fade2200ca56cbf95526f35c6a3 |
|
BLAKE2b-256 | aec192c72f740c078d06d735f4950b87dcbaa680f2172274941835bbaa3cb5a4 |
File details
Details for the file quizx-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 924.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55aa2f031e9e82ac25b7d4068a040a8e0ef8f14ef074d1a734f6525da8d4d0bf |
|
MD5 | a6c8bce6ae492e1eda95e3b263a42c29 |
|
BLAKE2b-256 | 21b09234e74a43c7d0428cb41eddd66017b7a3a40be76d856c3c9e5a61750b57 |
File details
Details for the file quizx-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 742.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4254561e5ab4d1d56f11f5214ef5aa4969b9eff7aa81f0362d82c5d9973de05f |
|
MD5 | 4a2ad68b4c26ba9dd4a42e45f3d43e5f |
|
BLAKE2b-256 | 7a5e5afed58b7b481331c804761bd2e541f25ebeb6e1a298961f05e940e410d5 |
File details
Details for the file quizx-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 887.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba0b5e7df7e982695f0bab27550c977835ae8679643d938935103636eaf0a486 |
|
MD5 | c5f96cbe172a7dec6e2ac0f202e064a8 |
|
BLAKE2b-256 | 96c486209e0ec97fe126ee4651b514fc32df20080bf23076f0dca01659b2c1f7 |
File details
Details for the file quizx-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 812.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e58626d41be1eb3066b7194767f8f504d2e05fa9519aab1d2c7d8fe5df3b10e9 |
|
MD5 | 1e4e91fe3825ec1eac4d5471da5df272 |
|
BLAKE2b-256 | 6425f02131530a3dd049685379b31697b4af84cec0d3307aa5b9defa91ff9bf8 |
File details
Details for the file quizx-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 805.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 973cde6fee7f8f53859af5b2c478684a11a0353a7a27717009f59028597418c3 |
|
MD5 | bbd81569555d05aedf1a81dec9896d7f |
|
BLAKE2b-256 | 0b2a9be80226d82096b6c610cce42462cdbe998e9bc76f3d21128a653f7abb44 |
File details
Details for the file quizx-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 740.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 488cfb1964ee3a95a16c29dbf5c3c6e44d315369033a960c7690e8a5613c529d |
|
MD5 | 6e4475917de5ab7e341a88373341ad85 |
|
BLAKE2b-256 | b54179da362883a8da2b75ab29b6a80ee3790ca256c0f839e621116e07517b3b |
File details
Details for the file quizx-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 725.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3e30863e833386b3dd5b7b3027e8fe92fa51d4885574fe2126fbf7cbfd29281 |
|
MD5 | 53bf1549dd8ce8c8dc4bcb3f90c88c5c |
|
BLAKE2b-256 | 2b92feb9e3b94f9dcfbc6e295b3ffbe0116219bbe8a9ed1f9e6504d3f57e010e |
File details
Details for the file quizx-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 653.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0260b84582755c87a05ffa4052cb619cb79dab47ccd04c5e8903c808f00b5687 |
|
MD5 | a0cf079f228ba4cceb10436efac98fb7 |
|
BLAKE2b-256 | aa3c81639cbe2c7652bdfac24e5d4db620caaebeccbb3f80d91e9b902e29e1f5 |
File details
Details for the file quizx-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 674.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07ec41e5ece4d2627fb0dfc7ea08d981587e2087e1b1be0b9395c702fa1f4679 |
|
MD5 | 798229ddb13fb08306d9aeebe981edb7 |
|
BLAKE2b-256 | 2b4b018ce4578dbaddf7452f37331c5b923d11c008cdf8f42def188b73aa6fb7 |
File details
Details for the file quizx-0.1.0-cp310-none-win_amd64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-none-win_amd64.whl
- Upload date:
- Size: 552.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9a23f60c38c34ea2d1552e743b90235d409df4509caedacd7999a80eac91be6 |
|
MD5 | 1aa5a1c49ba848cf711047328d90a1bf |
|
BLAKE2b-256 | f60eed2cab3c633ca442a5a664b037968dee6b5fd3d5830865870102a88f54b8 |
File details
Details for the file quizx-0.1.0-cp310-none-win32.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-none-win32.whl
- Upload date:
- Size: 519.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f76ae4f8a0e0457882c9f50da19a9e2cadaa5571f006d6d2c8fe1a292b2d9738 |
|
MD5 | f1ea8c8284a30cf67b8e5ce7c3fae01a |
|
BLAKE2b-256 | 0f9f7bfdc7df265c37dde2f12747852158ffdef5baae5f11b7a1051c5d383a4f |
File details
Details for the file quizx-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 914.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 973ec87425c0e24e652b7df523b91a3d3f47b2deb53d1390a857e19b6438e988 |
|
MD5 | 424ad6ddc143a30f75e00ac3242fc620 |
|
BLAKE2b-256 | e59ad6c07c3553be7a9f4df064f9b187afa0da29e57817928ea008e135741596 |
File details
Details for the file quizx-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 957.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56a25cef4f4a8142639007bcca53adbd02beb80b04aeb6a786729d7872086e09 |
|
MD5 | ee02ce5a888c23f9b30b22b8311c65ee |
|
BLAKE2b-256 | 66f51b86da56864e3153706d983d76215d0720ab01f3f223f2d4727039eb4981 |
File details
Details for the file quizx-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 440809322b50f9924245f552d5086b220720cd1e8b3a3ee89b9544caa54cb0dc |
|
MD5 | dfe2858a0bbd1e26aaf5708980b48849 |
|
BLAKE2b-256 | 4e1110cfd9ab5fdbceea9b3beebcc8bf3271240bf5ff9878e568cceef3c13e07 |
File details
Details for the file quizx-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 924.3 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8688512291a6590723bcb06a1dc7c7ebc791fe8d9bd7543bde8e4c1c2bf0e95 |
|
MD5 | 91d34ad19ba948a1e2bbace01c68c6ff |
|
BLAKE2b-256 | 295e9841e231a96fd58d84a15da7395e11ba1e4cda94b5c638bea7e6bcb4af34 |
File details
Details for the file quizx-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 742.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61ef12608544bab7f101ba88dff623855e33504ae6df7a884dcb0381c4d866b8 |
|
MD5 | 0acdc924c21f4a5143a4aa3f4248cd1b |
|
BLAKE2b-256 | df0dbda7832dc5890e811b3ee2f4e164b11e24ae9f22150161e0021191bc3934 |
File details
Details for the file quizx-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 887.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 496341520db82547ee656cb811b124476cbb118dbfaba01d46184633df7ba26b |
|
MD5 | 0b35a59926031c15741f32e5c4f1cfea |
|
BLAKE2b-256 | 49ef3676d38a36dab671758382ecf287b0869070af7c86ff4de4bc6565c36aa7 |
File details
Details for the file quizx-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 812.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a1b48fdfa064e371141b77bbe125f07d16c852a57c6ec31e03899f3ac2f7fdd |
|
MD5 | 2c9ea359e0fbba9f97ad1f1b8440d789 |
|
BLAKE2b-256 | 83ef888032eded8190fc9bba3f74c0bbed67cc969a94f9e77dfded86c4b6f87c |
File details
Details for the file quizx-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 805.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3048d9fb58176f42446af3cc27564497778f8e2f7cbbd7f82e6c6e068718771e |
|
MD5 | 7e3a0a030ad67597501610f34698d46f |
|
BLAKE2b-256 | ad09a5583acdaa5c178e383b9ce9fcbc3d909687bbfde29a89977f3c94694cbb |
File details
Details for the file quizx-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 740.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a9723c00483d3ff90196f0bbd8749b215107e32d206a009b2f24d4846cfd61f |
|
MD5 | 4614ed0b8150b38b413c3959110e7e5d |
|
BLAKE2b-256 | 1eeef6d0798833d0b0cd0999251ddd908241189d574ad9469b8c838e54469e7b |
File details
Details for the file quizx-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 726.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df9074a3abe8de239b340327a5025e03d0b519882c838925e6b4e62bf47161f8 |
|
MD5 | 503edf3135557a57a46131c339d6da9e |
|
BLAKE2b-256 | 1a2967aa213047d8d66e09e2d1cfa6ae458f61cdb2ae2556a030926348324df7 |
File details
Details for the file quizx-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 654.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e29b536ef98808c90b262d35266bff0553e0d1d108aae2dcc030c68fe7965971 |
|
MD5 | cceb59c18efb4efb742f1110f5b204ba |
|
BLAKE2b-256 | 9ff89cacf4275e608f510d2b601c43c0c819d17cf4946a9490c60468d69d0969 |
File details
Details for the file quizx-0.1.0-cp39-none-win_amd64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-none-win_amd64.whl
- Upload date:
- Size: 553.4 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ccea1d6630f7a986271b2b85de957a0c9421897612ef9cc0e4179eb9873581de |
|
MD5 | 03a2cb3d48837d3246810b594b012d01 |
|
BLAKE2b-256 | 6513b7458a2abb407cb18bcf81ae3cc2487d9a05647dbd27885bf6764c31d511 |
File details
Details for the file quizx-0.1.0-cp39-none-win32.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-none-win32.whl
- Upload date:
- Size: 520.6 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 71fdba0c6d4eb0b26ebdce3ea6bbfd65c738f2d118d2e2f054e131c29d3dc922 |
|
MD5 | 374fbfaeb0fbae3e0685e95da99c5713 |
|
BLAKE2b-256 | 309d77cfb42550f146c89a1ae6f2e260cbcf55ee06d0da9a90ee3da042d833e7 |
File details
Details for the file quizx-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 915.2 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45bbb1074041100e1a06a9d393a1cf3c13ecfa473e897f8f56406c3bce764e23 |
|
MD5 | 853b45fe9b15710375b363d813d67067 |
|
BLAKE2b-256 | e9d7c81009ebb2dcbc6b56a8876a06c688c497ea243f9b67f94988d2ac9b3ba9 |
File details
Details for the file quizx-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 958.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1449fd2f6144ea9ea1029078bf134e8037169374aa5130ad96e02e787ec6791f |
|
MD5 | ed0c1f8aa9bd396116cc30ee00c794d3 |
|
BLAKE2b-256 | c097769430daa2b0c24ec7ad12e504bc6236d5bed0f7869e48a238d0bbc2a06c |
File details
Details for the file quizx-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc4a086374382e0d1eccb9725d0bfcfbfaa29a3dc3a0b3f312495611df0f42c5 |
|
MD5 | c07d8089596715a39d42759fce963571 |
|
BLAKE2b-256 | 5a89a0ef2e6d807a83f32b6b9552dfa938b95cece83b8fc362de706cbae6edf3 |
File details
Details for the file quizx-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 925.1 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24e2dc694f497c90f634d7f03ec8f90ae62bf6cc53ee2611fd42b1410158ad88 |
|
MD5 | a8d4a2acee6a3f0cfe0d0fb62a9c7bd4 |
|
BLAKE2b-256 | 1ccb86ede683fd8949daab6ddf86f4e0df694f23cbcd77f59701cf2a83930957 |
File details
Details for the file quizx-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 743.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b99590d8e41fb44e4614495f968b5a9fefe698c4a8e674b542c5c7afc687859a |
|
MD5 | 6f639516dfe4131d1192444f43da38ec |
|
BLAKE2b-256 | 604ce1c1994f50e29ea5980dcea9b87f55daa498bd86e554c7a0b8207586c5a0 |
File details
Details for the file quizx-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 888.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25502c01ea5059a4ab11e640ecb82111163f631d69af5929396eb9f73ccc45d7 |
|
MD5 | cf33b9764f866e59e9c3688ec489ac65 |
|
BLAKE2b-256 | 612064a06f4a9f32548e55b06b853a9e28708ed0c674aa23e0e63759cb10f3df |
File details
Details for the file quizx-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 812.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16525a6f99daa9177a14f51bfdaedb6528de85a5cc2709c6dce2e0bfeaea5c68 |
|
MD5 | 02a449fa6794105aea2346e53901a985 |
|
BLAKE2b-256 | a48843396116fb0d0fe7dbf4ed3190cc605e11b8f20b3ebab4c4e8ed0f060ff3 |
File details
Details for the file quizx-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 806.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8943cf457523bf0afdc7e83a8d68e22ff60febf374cb6280c11685e064fb45ef |
|
MD5 | b6d5fe98bddc70d615a7078fe59de8db |
|
BLAKE2b-256 | cebdf5a064d860fd5ae75faf7c760688b627b2c40f4e043b9511123adaf3e499 |
File details
Details for the file quizx-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 741.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8884c05f99a76dbc769bbce126049fec969a94995fbe6c5784c9b0be4a2dc818 |
|
MD5 | 2d1deee5d01cbbfbd087dc0bce1d8397 |
|
BLAKE2b-256 | e6b5de69884656c365dd554c2820fbb0335f0b9d8486a040569442b2e65dbedb |
File details
Details for the file quizx-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 726.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f166c53002a8c33847977d6c9bdb9a3c012856765fb5cefb41cac5d743ad75c0 |
|
MD5 | 51a560b62ea14a36f0a2156b76314086 |
|
BLAKE2b-256 | ddce048c3d908ac64fc120e9131db9770721848c9daa38c97fbf32fff0499846 |
File details
Details for the file quizx-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: quizx-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 655.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 831212736b224b73b2c27e695b081b0d33b0d3cc45f24b1454bbfb63d191d2d5 |
|
MD5 | 0c9710b7fd7c324b5ffc8dd523ddc2ba |
|
BLAKE2b-256 | ef1936e0b121fcf41f750ad6658e1d77b0594b8744531a44cc0d5fe698661023 |