Semantic similarity computations using Gene Ontology with Rust performance
Project description
GO3: High-Performance Gene Ontology Semantic Similarity in Rust + Python
🚀 GO3 is a high-performance Rust library with Python bindings for calculating semantic similarity between Gene Ontology (GO) terms and gene products. Designed to be significantly faster and more memory-efficient than traditional Python libraries like goatools, GO3 provides state-of-the-art similarity measures including Resnik, Lin, Jiang-Conrath, SimRel, GraphIC, Information Coefficient, and Wang.
Features
✅ Ultra-fast ontology loading (50x faster than Goatools)
✅ Parallel computation of semantic similarity (Resnik, Lin, Jiang-Conrath, SimRel, GraphIC, IC Coefficient, Wang)
✅ Both term-to-term and gene-to-gene similarity
✅ Supports batch processing of large datasets
✅ Full compatibility with Gene Association Files (GAF)
✅ Low memory footprint thanks to Rust's performance
Installation
Python (via PyPI)
pip install go3
✅ Requires Python 3.8+ ✅ Rust is bundled via maturin, no manual compilation needed
Quick Start
import go3
# Load Gene Ontology (GO) terms and annotations
go_terms = go3.load_go_terms()
annotations = go3.load_gaf("goa_human.gaf")
# Build IC Counter
counter = go3.build_term_counter(annotations)
# Compute Resnik similarity between two GO terms
sim = go3.semantic_similarity("GO:0008150", "GO:0009987", 'resnik', counter)
print(f"Resnik similarity: {sim:.4f}")
# Compute similarity between two genes using Lin and Best-Match Average (BMA)
score = go3.compare_genes("TP53", "BRCA1", "BP", "lin", "bma", counter)
print(f"Gene similarity (Lin, BMA): {score:.4f}")
Supported Similarity Measures
| Measure | Type | Reference |
|---|---|---|
| Resnik | IC-based | Resnik, 1995 |
| Lin | IC-based | Lin, 1998 |
| Jiang-Conrath | IC-based | Jiang & Conrath, 1997 |
| SimRel | IC-based | Schlicker et al., 2006 |
| GraphIC | Hybrid | Li et al., 2010 |
| IC Coefficient | Hybrid | Li et al., 2010 |
| Wang | Topology | Wang et al., 2007 |
| TopoICSim | Hybrid | Ehsani et al., 2016 |
For the theoretical details behind each measure, see the Similarity Measures Documentation.
Batch Processing
GO3 natively supports efficient parallel batch computations for both term and gene similarity.
Batch GO Term Similarity
pairs = [("GO:0008150", "GO:0009987"), ("GO:0008150", "GO:0003674")]
scores = go3.batch_similarity([a for a, _ in pairs], [b for _, b in pairs], "resnik", counter)
Batch Gene Similarity
gene_pairs = [("TP53", "BRCA1"), ("EGFR", "AKT1")]
scores = go3.compare_gene_pairs_batch(gene_pairs, "BP", "resnik", "bma", counter)
Both resnik and lin (and all other similarity methods) are fully supported in batch mode.
Benchmark
This library is built as fast, scalable and memory-efficient as possible. Comparing with Goatools, which is the de facto library for manipulating GO in Python
We compare the time and peak memory consumption of go3 vs goatools while loading the ontology and the annotation (.GAF) file, and building the TermCounter.
We also compare the speed of the libraries calculating the similarities between batches of GO Terms of different sizes.
Finally, we compare the gene similarity calculation times. Goatools does not implement natively the groupwise algorithms to compare genes, so we built it for a fair comparison in top of the GO term semantic similarities of the library.
Contributing
We welcome contributions!
Steps to contribute:
- Fork the repository.
- Create a feature branch:
git checkout -b feature/my-feature
- Implement your changes with tests.
- Run tests:
pytest tests/ - Submit a Pull Request.
License
MIT License © Jose Luis Mellina Andreu, 2025
📄 Full documentation: https://go3.readthedocs.io
🐞 Report issues: https://github.com/Mellandd/go3/issues
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 go3-0.2.0.tar.gz.
File metadata
- Download URL: go3-0.2.0.tar.gz
- Upload date:
- Size: 25.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
979f77a09918f1ab8309afb03e560509f758218e02f782b061876c738764afac
|
|
| MD5 |
64c89ba54e79ccd3ecadca5164e824dd
|
|
| BLAKE2b-256 |
e122ac852b58287e45f3c0f6fddd3ebad6607696d0146619eb73b9ff6e6df0f0
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a1da61d24166894c2040427907d7dbc1cab45a1a727de1be75f5bf7be0cdfa9
|
|
| MD5 |
4ffa44499344a0bdc63476ed123ddd9a
|
|
| BLAKE2b-256 |
06d6ba962c5fb063f90191496b4189bba72f0979662f7bef448fd652cfc579a0
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc44f87a85b02048170ccb9630f026ab287e383bcee200d47b9c14d5dbb988fd
|
|
| MD5 |
60272f424b680449ecb45d720c587af6
|
|
| BLAKE2b-256 |
4ac61604459c533366032d10b01fc08546125703a8dd98048a9f95bb860ce87f
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb2a45db303ad9f146056c952b4f9df1c7b9e64df844d5f39aac3b0888bf0d8d
|
|
| MD5 |
188a0f9d1f151aeb5143f9f8275f4d66
|
|
| BLAKE2b-256 |
c6e1f87d536e4d95a368ef5367866b11058bfb5cfdfc1c7981e8eb3ae075faac
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50f8aad293b2d3d3a82f4867f7b5e6aa6c519e449198fa9dc58ac09212285d0d
|
|
| MD5 |
a56306f3ace310b5c2b7ef16a8af151e
|
|
| BLAKE2b-256 |
ecaa13d284e83db188a88a7e97dbec21ea39416793a66b8a23073ecbebef2c91
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c2dba9eb0b61a0e7017fee5935e13f7999474a4b1c8228607c64062332a81e8
|
|
| MD5 |
19ad3497351c56ec91cece954f2bdb56
|
|
| BLAKE2b-256 |
ae758f7b8fb85364ac5ecc8c2553c34895a47ab86300cd62d70b38f29f2dbc42
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59e3065f02e89475c2c0d8ec05c4f5a65e6c72aa57a019fe2bfe9b5e88bef4a5
|
|
| MD5 |
a95163284a54d60a8272d994adc25792
|
|
| BLAKE2b-256 |
443f4bf4d6cbc80781e6857a98fec7a5d763c6645ae5b412ce922a6bd4575bf2
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f5776620c6f1c236b62b01fcf9a75830d1cdd7d11083988689c07387871be00
|
|
| MD5 |
7d99a37c8dbac09dd90d29d338d6d386
|
|
| BLAKE2b-256 |
7175b7e1c83dfc0ed17d605c618ad1381a3d51dff8d61bfc31cec131bb7a34b5
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
452cd1ef8b7823d1d187c6beab38b7b26a39169265131d3c471e24ba17ce0728
|
|
| MD5 |
4064622380dbbf8c475b20e19bb6a7f4
|
|
| BLAKE2b-256 |
37c6441dc123c1ff559bb139b2fad273ed17f05c00a145e736ec2664abd7103e
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd1769aabec0f655922ba6c757fd33956eff30806f07e22a6eed4e2697388dd1
|
|
| MD5 |
43304b9b8b1122c74ed3e02fa39c4c09
|
|
| BLAKE2b-256 |
a839406cf13dbf5402ccc8c9f06784edd24de974c357d4a03f7ff99ba70b12ac
|
File details
Details for the file go3-0.2.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: go3-0.2.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14bd5c7e9fc8db831d39f40675f94f7c899443026af10b34cd0599f37318ec5c
|
|
| MD5 |
07907a0fc7f4fe1ca66bbbd993ea83a8
|
|
| BLAKE2b-256 |
fea47ffc5253d5a5d55a166d76cbd1640304c82693625b9d7903c493d2bd93ff
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
823cbe16818af5275142b0090b19594304b1c6739158d00f5792ee2ffd65d901
|
|
| MD5 |
1d2512bd12916ac831f6c18ae857e997
|
|
| BLAKE2b-256 |
e3003a721b7e214e22965c766ac631e78e9c5f615071a2fa7192ae99e82cbec8
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcd72540464bfb7587e1b8bdf655c9f8275e7a24e9832d3b9388fedce500eedd
|
|
| MD5 |
e6e56b053427a44f1c2a17ad1f3124c1
|
|
| BLAKE2b-256 |
8038c143f64d14d37227288604de41be89d0c8a53f0231349ea822c61cbe9678
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7f0c7352612c7f68eea273daac23d136b3b6b707d41e5bcb81548136cccdef9
|
|
| MD5 |
d28ad81afa5c78ef269f56d17a5bc6eb
|
|
| BLAKE2b-256 |
4497c6a418eb1f88278affd8bd5987512c0706fea3903198ca06d2cfdddc051e
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f02337b1863899c0cb50f786dea270539d4d052cd103a6bc144540a738ee029c
|
|
| MD5 |
6b8bad641d82c2efc9399a9d0d7c803d
|
|
| BLAKE2b-256 |
d03c3fa328102704f6325d812daef6715b4b2b721b5ada4d270695b441303485
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9b7ff47b1eaaa8c54ca3119260e5fd172073e4d1a08ed74f6ca13d4d2194625
|
|
| MD5 |
599012833cd0d0a0f03359e9603379d0
|
|
| BLAKE2b-256 |
81c6d590c596a2bf7b400162d971829f75dc52344f14c2100556e76c23e794f9
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d26ff5ded0991f1042144ac9bd52688a1e104b06db05b68780c69e570dae30d
|
|
| MD5 |
b4b2383942132d4187b5cf03adaab470
|
|
| BLAKE2b-256 |
40b6c4545b0068d6fbf17fb42018f1d8d941465fed53dc4cc88dbbadea879d08
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d60c71aaed69331d4136f04e8a9f9d4cb7ae45fdd9c6328ab29d5fa5156c8de
|
|
| MD5 |
8a4cc031b127ffa933a20dfd0f4bb3d4
|
|
| BLAKE2b-256 |
48e670cfa5eb72bbe78739cd0bc30cee1f898a37702daa787cf5b9da90e63467
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99a5a3f0d2ff2d43100a15dee9eba9af2b9d9c82ec6df4ad4dc92e8a0984963c
|
|
| MD5 |
6927da1ffc804061ef234347f29041d7
|
|
| BLAKE2b-256 |
3daa03178915112b13ad659c9094383b5997a05aae18cff32b40fa72ff012812
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5680833e4015ac3ee87fe2f1d71d09ec7704d61738dc3ffe5d2f517b9b547bf
|
|
| MD5 |
a0b3c41767ad5c11ff4f4f2c836af803
|
|
| BLAKE2b-256 |
85e1f157dc181eecce8d06278dfcb3668f2dee96e10b866eeaba564c3b614832
|
File details
Details for the file go3-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: go3-0.2.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55897c1005a72bd59dec204577e8e655cb84f6c1a7551c0a9615d6e6813462a2
|
|
| MD5 |
3708c3299b05f863b46a59de10c979ef
|
|
| BLAKE2b-256 |
1b6abbc0fd72817626d36747ac3d6a33a1f078188eab86a1684a2c9f07ba7fd3
|
File details
Details for the file go3-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4e3537267c2cb5e04112e69bdaa5ef7b1af8d03933eeb3567c8a578c8ed40e7
|
|
| MD5 |
0d654098130ee8d9ff165709e4d715ec
|
|
| BLAKE2b-256 |
9794f1fde3f00978a886ddb8389217d0a0b5a923bd012d99122a175b790671f1
|
File details
Details for the file go3-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bb21c7802988d9193e4d65a560e75c038bc1755c5e6c5ca597cadf051bc821a
|
|
| MD5 |
9170b7f03d9af8e136e4647d3e8c5bf5
|
|
| BLAKE2b-256 |
2bd57b1ef304a8601bd072bbffee9f8b8a44b486bc8947f07bb4245c83b3a60b
|
File details
Details for the file go3-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d75a4470e77a8bee05568d112f21e125a39a8b5c6335c1358bc4a5e616232cb
|
|
| MD5 |
9359d4fc5967360dce463845f34c094f
|
|
| BLAKE2b-256 |
7fc65219c0fb87e376cdd7ffac9a03fbe0dfd2e34c3734dd43de70077662656f
|
File details
Details for the file go3-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
555aaff4182a3727a9d3a2d8aca333d656bdaa7e1fe95c20d1f83f80950d0884
|
|
| MD5 |
0d5e713a3a4299156ecb62afb585e803
|
|
| BLAKE2b-256 |
cb6a83f879117f3f4bcc74ae6e3d4fb525068b39f1050dcf45e118a7c6525c16
|
File details
Details for the file go3-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb750e952c5b0cc2f1b1d8bcfd837c039febdd8b797cad12c71c860b579f764d
|
|
| MD5 |
8c904719ee5633bf79e8f35536c5b473
|
|
| BLAKE2b-256 |
902b2a8277b31932d07707adcef52bc8be13ad5c1af1b6257e7fb726dfaf0b60
|
File details
Details for the file go3-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
497e985f1db8b67fa1db1153d69033035f77bb87d378f18726bd88a984d05bff
|
|
| MD5 |
164a9e012a5f73e96e08eb5418bd1f2e
|
|
| BLAKE2b-256 |
67354c6b3b40a927453e968c246bd127c9ddf2438aee9c36b440997fc3a14b8c
|
File details
Details for the file go3-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a33cc92afad1789c6e9eff4459a1d112e067b9598be4456d748ba5f7132e0d14
|
|
| MD5 |
b9e0fa31d0b58825ed49c7ba306159c1
|
|
| BLAKE2b-256 |
ccffb60c26c16a785cc9eea73e71b6df366806d142ac22d29016328f4e706282
|
File details
Details for the file go3-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2644a13bddc9e852a3ca3bb7ad2a23e9bba1735a6321c468ea3db54586afbc4
|
|
| MD5 |
691192c3dcc3e838b1aaf248692e10a5
|
|
| BLAKE2b-256 |
037e0cef85d02b1280a7d06755348b813bacf01ac0a9c266f766c00d716c9606
|
File details
Details for the file go3-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a355b80978f59d228f5e961247cf20b8f8977336f657c4ba56ad5083f6588f84
|
|
| MD5 |
01824d363e7c1095933875d2f4ba48bc
|
|
| BLAKE2b-256 |
309b88bc77808de479f336b005feda50d873a2df1981eadf9fdce5880e632379
|
File details
Details for the file go3-0.2.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.14, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
656b901cca4fb2c51d638a2ed1934f576f492528c4c9bf87d1c2f0ecfb47be68
|
|
| MD5 |
55df9b8b9e8b04c8f786454d8893a26a
|
|
| BLAKE2b-256 |
f4d2fc6151a865d20b55916f2ed5879115351469f3325c02805437619eda33b7
|
File details
Details for the file go3-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86fa198451ce19356c9336e28286c016572686507f9c0c8ed0cf7aee04b9af3b
|
|
| MD5 |
b4913a6d9508ca4680393ce829b453cb
|
|
| BLAKE2b-256 |
07cdbf3883757c1f137a31f4548ccc97fcd55728120644cf13457c491d6e0265
|
File details
Details for the file go3-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65c9b54036326fd7ae88671dac1d807089f53d567c65f0cb983f1b8066eed71f
|
|
| MD5 |
e79dd902ff7b1a32bf3ef04b42ee24bf
|
|
| BLAKE2b-256 |
57a0de5c22a4ba5feb7861bc63a87df1f259867634c2350d4a0ec723dd4a0e39
|
File details
Details for the file go3-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74c266ec76b34ba5b532c6701447b234eb56014e5ad41dbada708630f0bca846
|
|
| MD5 |
a9e6577e7e68efe4395d79477fee945e
|
|
| BLAKE2b-256 |
13768075e63ab1691e00cc1a5488f2a99ebc995a1a2d6ebfaa68968c799010c2
|
File details
Details for the file go3-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbcfd02b540a6747221376158ff2ae09d59801d381a27de3f49b3c624e182223
|
|
| MD5 |
0afe98342d68710617bf976300e0611b
|
|
| BLAKE2b-256 |
f112548eb05e4db43281ec791af134519b416322bd7276488bcc47ecda1150d6
|
File details
Details for the file go3-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ce4d061a24eade5c29217cb65077ade442378f47283de24a8093d3264ecaf64
|
|
| MD5 |
6321256e92e02af048cd401fb7a2e162
|
|
| BLAKE2b-256 |
e79b0e37d1b16830fce44dfcf22730b0cef4c36789ebdcaa9238ad4da8456ec6
|
File details
Details for the file go3-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ab166f4399c0f6f4106c691e4dbaf3fa01aa0d0814e5d4f64424a8d01ea1a88
|
|
| MD5 |
bb83c2cfbface877ee719a5da89e1141
|
|
| BLAKE2b-256 |
40a2211c838bdee8d6b95e69afb44b244c42a8d40bd5bb122a093f5ce7624e41
|
File details
Details for the file go3-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbe7770cd1db0bedb7d3b7ded430242962ed600ea399c8f0d6a31938a0b72f6f
|
|
| MD5 |
57f2f0664854630cedbe6865cda6d449
|
|
| BLAKE2b-256 |
d5f6427c02753483e7fc9868e00cd4f4b232e8085322a53a03281fb11d6ed6b9
|
File details
Details for the file go3-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6e29cc2cfd4ea9941dcf0b148974b5dc4962ed3e3accc99127f42fd3f8059bc
|
|
| MD5 |
fb74de9bfa14194784edbd19e3d99af1
|
|
| BLAKE2b-256 |
a5ad9acb05a849cebef2b6da838e9f70cab4df7dc7fdee88023daf37fd00db40
|
File details
Details for the file go3-0.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f39ec8aedc92fe0c46666a446cea9483bbdf0dce4c0860f32086b3eeed4aa1a1
|
|
| MD5 |
d1441ec49b81833bd4c68850839804e1
|
|
| BLAKE2b-256 |
bb5a26bcb4d8f973bcb83df60c442462df3f6fc628078b4f91779484c10a309c
|
File details
Details for the file go3-0.2.0-cp313-cp313-win32.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5aa28673475a1a059d873fc753e8c99be8bf0bab09d2f065af4001ac640d98b
|
|
| MD5 |
7c0d1c50e8d6ac5476a7554a5e1c9d46
|
|
| BLAKE2b-256 |
e97e0314094623d6c39f1c033f849dd39621327c2e1ebf29d7a041c93defccd3
|
File details
Details for the file go3-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74389ff58bac3eee0ba0d110b47c3852f27e5d11fc4d7486e638c8f511e61c11
|
|
| MD5 |
de1905388b825e7058e57344ec13db55
|
|
| BLAKE2b-256 |
ae6c2b8191fa0ca01b3c4c9146cf90758a856335a03340bb56858a83074c98fc
|
File details
Details for the file go3-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c800bada18f2724c4abd6a242713cb07244aa3733c31217753071b83bc3fbea
|
|
| MD5 |
fe2e727fb09408335efbcba97d3a8495
|
|
| BLAKE2b-256 |
5c03c4dfaa591358dec85948d827633db32cf4b32f2272668e0c884c363c2aec
|
File details
Details for the file go3-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e73bbb11ef7436031f580d5ed43a9b33067989602308fdc7134cee3779ef53b8
|
|
| MD5 |
bc5455597881235fa06a624755a6fa14
|
|
| BLAKE2b-256 |
219c918a028c370d27e19517e35183129774e34d21643e83d76b2ca34c346432
|
File details
Details for the file go3-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20c289171781951f6a8301bbe2bf0491f484ad631e31d8411bf1f146d7e0b46e
|
|
| MD5 |
13c4b5f442996c558eb3a8db19cc9262
|
|
| BLAKE2b-256 |
8de5f97890fb72d415f55a112cd1f9d52679bb0ba901b78f5daae7b977592ea8
|
File details
Details for the file go3-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a42c6303b99692be3257a47b630043f589f0112f9992b2cd882be0f33e52a344
|
|
| MD5 |
36987afe8ef5efc34b91b86e6e053e79
|
|
| BLAKE2b-256 |
064c91dc5814accaec4d910f5aafc71fd9351fdb3a3cede60e55b7fd53dd1919
|
File details
Details for the file go3-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6668f68d8770e065ad676f91aabb9385afcce251faf8c622a0556bc9ea77780
|
|
| MD5 |
65a05ef210afb9a807e1aa9838ae29a8
|
|
| BLAKE2b-256 |
86633536c2abff9df328a54c0b1720d5f9c700663a2577bd69d570df42433cdb
|
File details
Details for the file go3-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68261cdc8002468d3cd2ce138d26b8193d39f7535f6b64c19d7bcc660c51a6ca
|
|
| MD5 |
f99bc5fe231131f00e25051067ad5ade
|
|
| BLAKE2b-256 |
14e2c4c1d4fde9c019ea3f452f930289fc393dae8517f1f3c2c5c78bed626faf
|
File details
Details for the file go3-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19fa5301e832a9708f1b2dcccb4c52224d7c8dbd245a21569d77883b425a7855
|
|
| MD5 |
d1e5274e0a739893c0844faf580b8e59
|
|
| BLAKE2b-256 |
7f8d83beec608411b6a5d9b9bffe080cbb4ad6755b12c1410b188cf0e11a7446
|
File details
Details for the file go3-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c69429d4a1cad659fd3bc5ab87f6e9ee81e19b27a3f29ab66aabcc232fed74a
|
|
| MD5 |
1a33f7b08816fed8941bd18f1b96736c
|
|
| BLAKE2b-256 |
1e8ae1fec46a2f6dbd517d0cdcaf9b19e01587030a724390b666fc633e6f1380
|
File details
Details for the file go3-0.2.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0b6c5ec12592244859614c4dd1ad19f4f5c5de99e4498976c1a1861749f73f0
|
|
| MD5 |
9f1ddcc85532154964d37e3505812893
|
|
| BLAKE2b-256 |
9f39d3c4de78603480bdfdf6150eede1e078b0dc8609c54751f9af35418bfd3b
|
File details
Details for the file go3-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b7dd88b55530a625d760f8b91874d68691ca5873d7509d0c916fa38cb8a424b
|
|
| MD5 |
cde4e621f6ce7387f34005a7b964a8a0
|
|
| BLAKE2b-256 |
33eeb9fc130da47c42a3251709396019e046863a1910961b1e6db9cdd326a166
|
File details
Details for the file go3-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8b570c1c8d556cd0b862ddae4b4d027fb5c3adfeceab99266a936bee5ccc49d
|
|
| MD5 |
16df5092fb9596612d8fd301d19a76a0
|
|
| BLAKE2b-256 |
4de8acfd1d67e305b1cc16071bc920a177e0ca1d6c56ab12b47510df509de90c
|
File details
Details for the file go3-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11fec6417f3e335554b0d4e60ebe01b2f0e1df15b3563f1a9abbf2b247846d25
|
|
| MD5 |
bde69b33706765ce99712199f1226e3b
|
|
| BLAKE2b-256 |
4d2c6ca8486b1d33d6428bf6515c6858439079738f85e832b85e238cab9888ab
|
File details
Details for the file go3-0.2.0-cp312-cp312-win32.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
779ccf3be699eed7b9e4f10b90c05cd4bd1c3f44bf5f3f957a8fcf0e5b2718b1
|
|
| MD5 |
6f523fb8ab3c4ddd50a0a122fdf542a8
|
|
| BLAKE2b-256 |
2a833fbae71bad683a513595a9c90e9245e9fdc3a9741ebe909469db10518c1b
|
File details
Details for the file go3-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6337eb36d1d06df765815ca1f302b1627d2c1efb0e3557292da33f7b05090583
|
|
| MD5 |
e5d26db72a79ce5fda3f8acd7d0aa065
|
|
| BLAKE2b-256 |
bf4187cd786309286b7da93b1f73b439bfaf2c066f914ee8e6c1744722d63119
|
File details
Details for the file go3-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e4c98a747c0cbab481648b005fea9d92ef94141b5737c7973b183078587b6a9
|
|
| MD5 |
2a9d39931875c9cc1be5faa9a8300098
|
|
| BLAKE2b-256 |
1dd6b4225cdbaf870bc887105e4806ba7533d1e82be4822ed6a80d3bbe7342a1
|
File details
Details for the file go3-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36e900e821eda698ff388ed47aa9f8c145e915b5c5fdbf6dc724ef99608cfa19
|
|
| MD5 |
2c6aaf14c5cd40a6b092563a82c9a7a6
|
|
| BLAKE2b-256 |
1b1aaa6040e026a6932952916b89a98c58e2af4ce10b0641b2e8798aea888b8c
|
File details
Details for the file go3-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4ab88458ace22492860f263315acb1b974c7afe108a9998309be05f6f0c5224
|
|
| MD5 |
938e7e1993d6d912eb2de01ddb42bfbe
|
|
| BLAKE2b-256 |
82f4c245c31bda1d998a7976214887091a6885d85f1844a14281a1523f1c9bf8
|
File details
Details for the file go3-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
203770954f422e8cb02142bb5f39f6d42bcf7d3fc0fc53d2a988cf21bb09fde4
|
|
| MD5 |
fc9273ae7783a204b06a4c92294dccea
|
|
| BLAKE2b-256 |
3939842ee02bbcf26d8caa10312efcbde29d067e1dd38eb104973b8ccad45d9a
|
File details
Details for the file go3-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
124df243efdc63dbf119edeaff719a633478e957779ea3389d9412884cba245c
|
|
| MD5 |
b7ae3daa17595760a3e79fd20051a79e
|
|
| BLAKE2b-256 |
09b5d70345bd21a5d36c127bd55c260c2a6ffbedfbe929eeb5f8816c0d15d8bb
|
File details
Details for the file go3-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c711d3f5ea7b8915708ba82b9685282aa399f9d6220de9dd27456bbdd7fe6af
|
|
| MD5 |
c447cb382716e59c3a1e3d8f4cae8987
|
|
| BLAKE2b-256 |
b581858ad4b40b0247848df7cfddfcbb2a7c2d6ea34f0c5e9ef5ac1ba9d46aa0
|
File details
Details for the file go3-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a61f58b29afcaba1249a27ddde0c016cdddad4211fb125681db02df42198bc5b
|
|
| MD5 |
6198fda42f32c23d859f84dba650cd45
|
|
| BLAKE2b-256 |
b0b9679b663bcc46a3c2ef6ccf1d28a787356079a88467f8583f35c2f8cae202
|
File details
Details for the file go3-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0d037973b02a8363dfb636bade46d16c5dbee41e718a1b7eb952aecf4e658b8
|
|
| MD5 |
df190a150cfad7e8e1d037f84d37c2aa
|
|
| BLAKE2b-256 |
8d4f2ab887c3815cd05ed835bc75b8f29f317b971f67b32b42d6c4aef2e90a51
|
File details
Details for the file go3-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c57a468e8260681d9fe47b7b99c1c04e15f5f58df60a8e31b65edfe3f1319382
|
|
| MD5 |
f55d4449fdcfc983062ca496aa8b2fd2
|
|
| BLAKE2b-256 |
36ce35bf409463ce28afeb4a15ee3f1d673a5f268f089a992c9254b6478a38f3
|
File details
Details for the file go3-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcb7e3a8fcb8319392cd40b15f8c401078d53e3e0cd8c17dd3253cc77f713adc
|
|
| MD5 |
814b41ab3532265e2471c3aebdcce86c
|
|
| BLAKE2b-256 |
119f5ae529580f337bbd6d4cf7ae1eaf7e0aaa3081288b2bb1e381a846c930f6
|
File details
Details for the file go3-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68e44b5d243804a4b30ff39e075a7f3483903524008f7946fe4aff2872a0c7e1
|
|
| MD5 |
d59532bfe02276ef7184ff600f7f64fa
|
|
| BLAKE2b-256 |
4647bf92a2f5b318c9ef2e1fa6d6fb59bb7ee6c73e3e257860118bd490101db5
|
File details
Details for the file go3-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f3c7c7d9f74aabc3bad21ce1657f3097ff46e9f7bb1d6633f37a2df23fb5e96
|
|
| MD5 |
b542d0a12cbc30e8649fb5c66f2cc971
|
|
| BLAKE2b-256 |
95382c3f587bb0049a042913010a7350233b0c6269228310c45dd3a469efb1a0
|
File details
Details for the file go3-0.2.0-cp311-cp311-win32.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69c258dcc91a0fd2685d9e6647454b2b44fb05c70e04fe51054fb225318d0727
|
|
| MD5 |
93e1bbafc87eabadc2631683332d990c
|
|
| BLAKE2b-256 |
caf14b1f269c8a5af4dbc0842c2cf45972cc03fe41e8d9e859c69ea8c60ec3e8
|
File details
Details for the file go3-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e8eb9ffd54af3acffda74562961f77cbef1aaa03a084e4dea6a9174412a3a15
|
|
| MD5 |
94a67426f437fca352fb1d88859889c8
|
|
| BLAKE2b-256 |
841fdf64e52b42697b91e97037dc982d05af930e5111a9f36fbae5760e08b30b
|
File details
Details for the file go3-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17ef97d72bab901a9335af668602735f837107deb2b0e88150d8d26993faced5
|
|
| MD5 |
0e2719fb2e1b63ad0a7683aad282f387
|
|
| BLAKE2b-256 |
1b511ddd78f8fae2caa796f55abbd3db794d1e70d9f2bdd0c0defe3c20ffad0c
|
File details
Details for the file go3-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e8caeec23641dadde0ce962c7014869a39d9304f9defee5849a304207e8bb26
|
|
| MD5 |
ec7ec5a6169abefc01327693b3d35c51
|
|
| BLAKE2b-256 |
9753d146c55d3aa1c2c8b4e03b55c840bbca3027570eddf21acc109371e47483
|
File details
Details for the file go3-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a01214dbc8d88bca56392d4254beee70cb5b634f66be646f4a0004f67ce5f18
|
|
| MD5 |
d3b036a733d6aa422b5ee596900122df
|
|
| BLAKE2b-256 |
959a2ce3ce667f1a8b6a3e4280475d19638cbb604deb34f7cfe3a2189a36a79e
|
File details
Details for the file go3-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af9f45642c94b87d2b8553902ab1e712336a8df780621b2577dc5f005820f681
|
|
| MD5 |
a62c85a46af4321bb7942b44d5689abe
|
|
| BLAKE2b-256 |
c35b90db93c83c955dee38ca23a05eb3f15d0525e507b93c59670da75f95a8c5
|
File details
Details for the file go3-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f80747e0c28b4f4f1aa9719fa6358d08916b9c658c3a8fd36a9e9d368343b84d
|
|
| MD5 |
10b4db8aec83416a96a2708144a0f571
|
|
| BLAKE2b-256 |
2e9dfec605cf119cacf2b8cc5d71a3a5a4cda7802cbe4bd12f172ae81ba17850
|
File details
Details for the file go3-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
150524d1cfcb8bb3732eaef74be4570eabf169cdc38714f94554fee14790b13f
|
|
| MD5 |
9bf7757637641f35905c5a607cfab2da
|
|
| BLAKE2b-256 |
1f2975c22fbec1ca1562c27ec62f6163ffe16e169f519b74a3d73ad389192324
|
File details
Details for the file go3-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b63edcb5d74002e09ef38b2858eb2ff3c1657ec5dfbf779c2b058a5dae56a957
|
|
| MD5 |
dff5a02d71a33287a699c798ef40acc9
|
|
| BLAKE2b-256 |
8eed6475b0f2fd44daa9549ecf38ed7f63507498a073793a84ba79e384f852a7
|
File details
Details for the file go3-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05a6a4343401388484aadc116ac9958e52a3348e5c852b0f454150fade61fba6
|
|
| MD5 |
6f8ef3cc0f95a6b723984789b286de39
|
|
| BLAKE2b-256 |
7914d6f01f1ee7a38b304f92c35d2d52e1b4bf6a438592fbde4254affec6c275
|
File details
Details for the file go3-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05cd7105099e494de17429812881cdbada6505e865beb6f339c71ddf6a1539da
|
|
| MD5 |
12ce8e104cd209745d367d8bf6fcb8d7
|
|
| BLAKE2b-256 |
11f9a8ce4275130ab80bbfc329b9807975e285436bc8426c9162dc0c34d97672
|
File details
Details for the file go3-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f85f12ca8bdf1e715c7be2cc80a576d8b129dc09ec0c3f034c0735c2ea514d41
|
|
| MD5 |
96934900207a6d3a3d450c8ed1be813c
|
|
| BLAKE2b-256 |
1585a5ac2269709a260457016a3109a41cdcce06b621bc676df6376d00f81934
|
File details
Details for the file go3-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f366cf9956564666dd24f2c7dca0a8f0e96e8b17ffe4834c99280710b4be108
|
|
| MD5 |
f6edf22ddc49abe92dac106451dfc9a7
|
|
| BLAKE2b-256 |
20f93ed0ef72d3ab38ee8083c4b86619d7b97d2e4f4c1413ab9ffb7a55cb1039
|
File details
Details for the file go3-0.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf263461b9364f82af38b8b3e614af81045f7ce03e58962e000ccae221f78ed3
|
|
| MD5 |
30c1182077e5dac7aa51d254cc198d51
|
|
| BLAKE2b-256 |
4e784072228795e1abe67dba3c3996bef79585e9081994c75cdd698e5e17d693
|
File details
Details for the file go3-0.2.0-cp310-cp310-win32.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc184f4b63e04e7c2f6b60ecdb865ca6d5828e4f497f99dba69e8d6363999c19
|
|
| MD5 |
777df44960c006ec0257897f236815b1
|
|
| BLAKE2b-256 |
10b8371446dc2210489e7375f7530c5374437f710f8ed75b66e96acdad397269
|
File details
Details for the file go3-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23cfc8aef34de9f18c701414f7e2d800cbf10342509f36284e72d1f5f7183c34
|
|
| MD5 |
f2f2d5eb2e4780de7ac3187b94350cfd
|
|
| BLAKE2b-256 |
9f2452f8a0caff7b3d27be9b4f632cc9dd1bff4d7db8c17255d95cbb17d9ac46
|
File details
Details for the file go3-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5f34cf2816350e72f2fcbca14c7666234b3b1a7b001deaf2d6a0b834f07a2e1
|
|
| MD5 |
13d9cef39aeaf93aac2755c031022f2a
|
|
| BLAKE2b-256 |
d987725b69ea3e73308f0a5050df51262311fd847953ed58cda374fa2f0dea5b
|
File details
Details for the file go3-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d448ef1f8cb9159feb48af94a586bbd2f08faf3640b65fd840b6e0708821d813
|
|
| MD5 |
7b1f6ea7c9e8dd9afb2d4c506cd4bd6f
|
|
| BLAKE2b-256 |
be7250dca99ff66928f19ead427fd2fa9e280c0dd4e2ad17ef0ad7f3df76ff04
|
File details
Details for the file go3-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
391e405100c687ef1aacbd0049752d1b68ebc728b04ba885cbd92664e82309bb
|
|
| MD5 |
523c91ea555f95f7d13836142e7ca898
|
|
| BLAKE2b-256 |
9c5f8fe02afd27858b6d9f64124405935e9d352c7438500fe23ef8e66e964fab
|
File details
Details for the file go3-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97b067094d3880abbbb12d4e8af47686756d726b169ce9225173cec3520bb591
|
|
| MD5 |
dac9f5fa20eb15f5cc733aa0cfe0c619
|
|
| BLAKE2b-256 |
5ae2c44667ba91c30ff231c604b44fff8b7768e476cbd2565456d5dab4d54728
|
File details
Details for the file go3-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b45d6235b48e684c6b661eb699e8a7798429ecd570dbca4f26946f3d16a9a91a
|
|
| MD5 |
c8d8bc975708698b42d9e789e9ca348c
|
|
| BLAKE2b-256 |
c2e1357668f4ed765117071100845e1c49dfebd6c98d075736b31f14ecae924a
|
File details
Details for the file go3-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
679870a9d2f7601fac9775781d4bc321798725f999837acacba3622d7605d04f
|
|
| MD5 |
acc4bcc96d5f3fa0569014e8c326d718
|
|
| BLAKE2b-256 |
b79bb2ae729268ae6d91241e9266e34679edc64e147b7aa67264d172e60d82b3
|
File details
Details for the file go3-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4f7985826a2eee1a6cf33943921e731ae39204df9b7de640cb928a020c857fe
|
|
| MD5 |
2443b91b5a79ca5d4d1646d51bad79d7
|
|
| BLAKE2b-256 |
08c2453b67973ea3d7d8046dd0d147917c1133cc380c2e206254aee57dcf6df7
|
File details
Details for the file go3-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b79169ffcdbee4aa7616cbb9c7e11e3f36d23619402ef40e1ccc25efb5780e1c
|
|
| MD5 |
98e889f6037dc763dbefcfe36a8af3ca
|
|
| BLAKE2b-256 |
f55cc05a9e4b6f92e1a2219ccd7478a976cbb8778f6434c297153dc287df876f
|
File details
Details for the file go3-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7b6d4e86a44ef226644be8f560ec2e1f00c160771c1a84502764d9af1f940b4
|
|
| MD5 |
a9cae4b082376386c5fe197ad12431f4
|
|
| BLAKE2b-256 |
a9cc4dced93a4bb22d0630a5703b1a43629d073a5249ac3f492f118fa23b7f25
|
File details
Details for the file go3-0.2.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c1222ea1b015b78fa455adf6d9ffb0bc8afb69f414da27b034adb13c4b934a7
|
|
| MD5 |
7f37cbb0536241d64c97072fe0f832be
|
|
| BLAKE2b-256 |
3f34407e9d1c682c6b3c9337a09249cf604c3560d76aff5deb8dcb055d114163
|
File details
Details for the file go3-0.2.0-cp39-cp39-win32.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7959e1321613bbac206dfcbeca1e4a27c9bb57231fa30f3b08575311d48e08d
|
|
| MD5 |
5403bdbaa5cb62b92d889949375e6601
|
|
| BLAKE2b-256 |
63ce5d3834fbe36f72d5340c20cc7da74acd0d208cac8bf8d6aef34c4fab96d6
|
File details
Details for the file go3-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4af0bc7a19f3d9c444745c0be22d2f4b7cf40a38914eca4cce6a385e504bbba8
|
|
| MD5 |
67f824deb28e8d353f950d5c813471d3
|
|
| BLAKE2b-256 |
36b97326ee0799db12de7fa93a479bbc1c24d568b90ee127c6e9d59bf0a0db90
|
File details
Details for the file go3-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
905e064eaf8104f5157475899cc67d22696715e5e08e3ea97d6680b5b5a603c8
|
|
| MD5 |
aa8faaf2f8ac7ba6d526415290655fab
|
|
| BLAKE2b-256 |
ebecd4398905ff2a7939e66702690c874fb95c40a7c86ef2f056aa219d510c3b
|
File details
Details for the file go3-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d95cba50474fe03b9deca7704ba0f37950643cd577375a110a65477e476b02e7
|
|
| MD5 |
58116283941112794880db989dd9b194
|
|
| BLAKE2b-256 |
ab1fc015e7d0668b935e114e31cc2c9b4d0826d726718a8d19fcfddb185ad3ff
|
File details
Details for the file go3-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c4941d7be1d2ac78a1a2f15423bf2263023d57e0e045a51fd6ffdb19be9cfb1
|
|
| MD5 |
718057975bdb9c2328bd8789ada133b9
|
|
| BLAKE2b-256 |
91ec419b172075cd5c51e9b1cc65a00567d510a0f0049b8b569e7ab0e1843b04
|
File details
Details for the file go3-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9337fa27a6f29dad5aefefc2b1b8e33096a203002d5bfa693c62b16b84f425ff
|
|
| MD5 |
4802d0273aacb4119a91e1cd8ce7bed1
|
|
| BLAKE2b-256 |
5633e7bf2e6a1bc8be7fbf566f4ed8abdbc4fae3a0614791be292eb43ecfc63c
|
File details
Details for the file go3-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db72b8304314aca9222d6fda37bed4ab4a6b33e553179a9c327a22f376583f60
|
|
| MD5 |
2f046733d2a49d3843e2c5e796b7ae7e
|
|
| BLAKE2b-256 |
eb52c85d8d412fb5af74219c79700cbf4d3b994ec39128a9e2ad0a3f64c78ada
|
File details
Details for the file go3-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38814909fbdf61638b0e53a5e85f773b06e38aeae1c55c4b4e25e420f8c16639
|
|
| MD5 |
57eaf4242ce202cebf05b9acb4eaa005
|
|
| BLAKE2b-256 |
4f3507bebc1d9b9493df7286f85aed4ffe1de1602d103f81add56d0c739f0348
|
File details
Details for the file go3-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43b121bd7ad0a606cf5fd51ea89eb3228f422d9dc1113a30448b743f620ab8b2
|
|
| MD5 |
88400207c5120bd57c4b8e0a9fed9486
|
|
| BLAKE2b-256 |
76db4c53193195409266ac60e426cd1973ed3b00716e84be0b82237b38e148ee
|
File details
Details for the file go3-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4f9fb93535ed91ec069a6b1e39a513610bf7058115f1e1525acb112f3006cf3
|
|
| MD5 |
5cb0c578b1ae1e237fb90fba4ecd25c2
|
|
| BLAKE2b-256 |
ec987b67301531e468d8611f21b9f37c6b64f1aa9fdbe74da7bdf34275c99987
|
File details
Details for the file go3-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fe15efabc9cca229de1e7480f57da2eeb1683a795a5b4a8ffef95151ce0fcc9
|
|
| MD5 |
4e25c0d18539f2d4a12301722f271279
|
|
| BLAKE2b-256 |
6decbc975af4e2b3025c297db53472a198715e0476ff1304c4bf4aa6d91160a0
|
File details
Details for the file go3-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5d9e7da4fe705f8cea60e8fcda0f6d5fe741356590f19fa29dc3caf65a5ab03
|
|
| MD5 |
184b1f4a42bcef28faad45ba4040ca68
|
|
| BLAKE2b-256 |
b633b41521155cf8c464cf7e88a488bffa0171c7b4857676f4b8bf27c934e69a
|
File details
Details for the file go3-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
027c8af31ea031cc7dc84113871864662c27be9c1d338abcf25558414dcfce96
|
|
| MD5 |
e446e4d27ca2dc7ff8784373760c90eb
|
|
| BLAKE2b-256 |
42e0eff0f4e72dac3b3d57cf63339ca7a66f53bdbf13a3af2450b1ea67e950dc
|
File details
Details for the file go3-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be8eb436507555fca41d002bd7f5bc9c3857af55b1445118a5cdeca08c2caf4f
|
|
| MD5 |
0705e00359f984c2cdce4b9b339f1c80
|
|
| BLAKE2b-256 |
5f60dd8291dc02a16136a69141bb3f7b409c4bdc1c6599046915439bf106edc6
|
File details
Details for the file go3-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6193f92847468c004525b245d6402b1ce426a123644392b43380a159fcf9a50c
|
|
| MD5 |
e16e6012a21a8340bd9e906535fd00c7
|
|
| BLAKE2b-256 |
0bcf2b5bf3b8d4317dd46971f2492bd113dcc8a8d88a2499713343d435d6cf15
|
File details
Details for the file go3-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cd80006fc74d295e44c47a840e0221fce3c9e61dfe04316facebcb1934d5f73
|
|
| MD5 |
8ac70b96d8054250e75e5fbcfbec0eb5
|
|
| BLAKE2b-256 |
cde5b1006293fa6775246e47c4206a716d26f795ed5d13a327400a1a3f319d80
|
File details
Details for the file go3-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d15a5707ec95831077d738e41fb3c1dab9680d574284856b9b9a45f2c0319bef
|
|
| MD5 |
b7681898cc316d3105b704b447b96a89
|
|
| BLAKE2b-256 |
abfb56f839154e3bf43ff578f5f13725e0bf05ed996a0b5f465937ed5ee2fa37
|
File details
Details for the file go3-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3af2e8a85b0e3092cba67a2025efbd1f93f2072fb56866e8fbbb945a44f654b3
|
|
| MD5 |
375c44b88392ee8bd81fc7b0fdb1a390
|
|
| BLAKE2b-256 |
8b13b829afdfe76c0d1bdfa35de62a19bf42e70c8e27a17d7fe2fbf4ff59ee73
|
File details
Details for the file go3-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
864e4b9d724e89ad5e6b76e710af0cbf2370b79c91b641ae1feb0451477001d1
|
|
| MD5 |
5e2c2bd43a84d902324952b19db44562
|
|
| BLAKE2b-256 |
a421684ee4505569e881956648a37bf1244a95fbe0acd62383848acc15e2096a
|
File details
Details for the file go3-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b563f42f62c4289303b34e40fde1352ffb131cf87751b72a49920be8c10dea7
|
|
| MD5 |
9bbf49839b0d76726a275c016015d499
|
|
| BLAKE2b-256 |
fd2e9b918c99ee1e3ee4db74b7d91237a838c336cdb92998875c1175efa43aa7
|
File details
Details for the file go3-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
243b3e077dd23e8d1f86cfab03e85c5a85fe36401db1a6130b285948edef0776
|
|
| MD5 |
29fa720a5a21262d459bb7050e42c34e
|
|
| BLAKE2b-256 |
4e9e9cf49639e67a02ee774aea67516df7535d17a4f144e0d99df8b08ad99f50
|
File details
Details for the file go3-0.2.0-cp37-cp37m-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: go3-0.2.0-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93fb3f5f23bf507e56e15841d823c4b6d596b88a8ffe33ad2ba93fb11be54b50
|
|
| MD5 |
2e1bd25b9fea8e2800429958d0c9f1e3
|
|
| BLAKE2b-256 |
e81909c41d74c858320bb42669a2fd7c16fe3c56447881d24ed208506fc41c9a
|
File details
Details for the file go3-0.2.0-cp37-cp37m-musllinux_1_2_i686.whl.
File metadata
- Download URL: go3-0.2.0-cp37-cp37m-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a8cf1ed27de61c074a2b9a1f24b5852e3cf3e1fbeebb19823595205ad7c6456
|
|
| MD5 |
3240a7a6cbdeddea6933d7a0fbab35af
|
|
| BLAKE2b-256 |
4fb5950109718d65fe48b424de3d881661a502036a28d0e7e5eb725a63778d26
|
File details
Details for the file go3-0.2.0-cp37-cp37m-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp37-cp37m-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4784d10d43c00a580c738b5a11e7c88a61628aa1d5e7235ce226893196e2dbda
|
|
| MD5 |
fdbac2af6d5e5a6f09592cb4df209b95
|
|
| BLAKE2b-256 |
4e809eefab079d0121182af92bbe5a51bb833f84e205164aacb0474b50e846db
|
File details
Details for the file go3-0.2.0-cp37-cp37m-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp37-cp37m-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f38365837386497879a31b241a4e7e601ee91d7f8ac534cd4dd0088f57479cd
|
|
| MD5 |
545aa8f36cd4a3d7ac620d9968d888ea
|
|
| BLAKE2b-256 |
9c1291198ca2add22a89aa37f344ae30b2167c725b9d70e259aa7558a089ec6e
|
File details
Details for the file go3-0.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: go3-0.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c75f0183fbca8ad46b775cd3da64594c3d2965e1d620e1756848e61c1ac55b7
|
|
| MD5 |
a656a9ce065f6a1b498a2a36c245185d
|
|
| BLAKE2b-256 |
b99e49f8df0ed4bf23ae1703121755cd50072e87a247b7ed0c00bdcb6752c6e7
|
File details
Details for the file go3-0.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: go3-0.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e23039944c82fe9b5b6869c88054609b66240a6fe3cbffd1ee4da80584327319
|
|
| MD5 |
ae4c81a93a09fdb1f7d51522cb30f60b
|
|
| BLAKE2b-256 |
45a67f3dcf1f418065745e9968e0a0816a4c736352aef23905eb26cae29a1226
|
File details
Details for the file go3-0.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: go3-0.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e596bcbc3f9a11b3efb6c7c3f585cf1b080ceddb3ea9df1838178336218f4c4
|
|
| MD5 |
1aec5e0578b7b1e13afa74371767a1b3
|
|
| BLAKE2b-256 |
6fe8751db63856065c25b520046e11bb948156da31673830c0fdbc8069a8a6ef
|
File details
Details for the file go3-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: go3-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec5e3c8508baff4c6feae3d9b4ca3247d79985046cc67c42695991536e352c3c
|
|
| MD5 |
3b85272f23e97dd71487cd97d185eed7
|
|
| BLAKE2b-256 |
4268db7ae6bd1946f573ad8dc788023b4de50726d81a9f1c4a36727e1998aa64
|