Builds a queryable graph of the imports within one or more Python packages.
Project description
Builds a queryable graph of the imports within one or more Python packages.
Free software: BSD license
Quick start
Install grimp:
pip install grimp
Install the Python package you wish to analyse:
pip install somepackage
In Python, build the import graph for the package:
>>> import grimp >>> graph = grimp.build_graph('somepackage')
You may now use the graph object to analyse the package. Some examples:
>>> graph.find_children('somepackage.foo') { 'somepackage.foo.one', 'somepackage.foo.two', } >>> graph.find_descendants('somepackage.foo') { 'somepackage.foo.one', 'somepackage.foo.two', 'somepackage.foo.two.blue', 'somepackage.foo.two.green', } >>> graph.find_modules_directly_imported_by('somepackage.foo') { 'somepackage.bar.one', } >>> graph.find_upstream_modules('somepackage.foo') { 'somepackage.bar.one', 'somepackage.baz', 'somepackage.foobar', } >>> graph.find_shortest_chain(importer='somepackage.foobar', imported='somepackage.foo') ( 'somepackage.foobar', 'somepackage.baz', 'somepackage.foo', ) >>> graph.get_import_details(importer='somepackage.foobar', imported='somepackage.baz')) [ { 'importer': 'somepackage.foobar', 'imported': 'somepackage.baz', 'line_number': 5, 'line_contents': 'from . import baz', }, ]
External packages
By default, external dependencies will not be included. This can be overridden like so:
>>> graph = grimp.build_graph('somepackage', include_external_packages=True) >>> graph.find_modules_directly_imported_by('somepackage.foo') { 'somepackage.bar.one', 'os', 'decimal', 'sqlalchemy', }
Multiple packages
You may analyse multiple root packages. To do this, pass each package name as a positional argument:
>>> graph = grimp.build_graph('somepackage', 'anotherpackage') >>> graph.find_modules_directly_imported_by('somepackage.foo') { 'somepackage.bar.one', 'anotherpackage.baz', }
Namespace packages
Graphs can also be built from portions of namespace packages. To do this, provide the portion name, rather than the namespace name:
>>> graph = grimp.build_graph('somenamespace.foo')
What’s a namespace package?
Namespace packages are a Python feature allows subpackages to be distributed independently, while still importable under a shared namespace. This is, for example, used by the Python client for Google’s Cloud Logging API. When installed, it is importable in Python as google.cloud.logging. The parent packages google and google.cloud are both namespace packages, while google.cloud.logging is known as the ‘portion’. Other portions in the same namespace can be installed separately, for example google.cloud.secretmanager.
Grimp expects the package name passed to build_graph to be a portion, rather than a namespace package. So in the case of the example above, the graph should be built like so:
>>> graph = grimp.build_graph('google.cloud.logging')
If, instead, a namespace package is passed (e.g. grimp.build_graph('google.cloud')), Grimp will raise NamespacePackageEncountered.
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 grimp-3.5.tar.gz
.
File metadata
- Download URL: grimp-3.5.tar.gz
- Upload date:
- Size: 833.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc9560aed1d82222b361fe5f312a775b15a96b9237670f3a9fb20f44d30d5762 |
|
MD5 | e008503543513e3d417b06d2b72c2c8a |
|
BLAKE2b-256 | dfbd4f919930f4b9c89a6d6905e4e8e4f11aa2489e385064501ff191c7b7d9cb |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 563.1 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 | 1966b0059b38b5aeca9da3fb3c036590d783d7330eb9e1300b2779f7e6d41650 |
|
MD5 | e9672b34cddc0d3d627757ac0a16f19b |
|
BLAKE2b-256 | a483b555170978c5215538dde599ad67b3b029caadf74f675c6d26dbd2b78128 |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 591.1 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 | 813ec51de74800043c543ab2979dd7b383aeb6b5cd52adf092ef7fa69c6c2b2f |
|
MD5 | 8a8b653b6f4aa973f98e0e2d4185810c |
|
BLAKE2b-256 | a971db58869deb88f5a22f57bef07078a8b282f73d2894186e2fc43ecfddbf39 |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 666.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9ef6c6c8d1d64eabb555a7ecf4ec3dce91d0ade54b3724a03169a298a65f2f7 |
|
MD5 | 3fedfa485dc28e774173034c0169b25e |
|
BLAKE2b-256 | 228a318d926a02591947362755dfc1b692f7330dc3e8e00e155639be42c263d3 |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 574.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 | 03350ec0378d984d6d8ff09fa607ecdeca59d8ee4636a029f1a7475e8a9cd74a |
|
MD5 | 8228c35c04dfed54192e9e637b7e8ad2 |
|
BLAKE2b-256 | 77d95d657a9e51b1642cbd0b3d5a849ccfdca5e8425a16aa90b091a0788a4abe |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 394.9 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 | 2b35460a314a720d1a332222621dc9a8b412d9c56bc19866019d6c6451cc09dc |
|
MD5 | 16fd9e104d0c761b15aa31ee1cc01293 |
|
BLAKE2b-256 | cdf7e590dec79bde8b901976e6834a4f34fc0b8c01776b0a3883c88a60b25545 |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 448.7 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 | bb6feb9667349fba87d85d210a85480e43dc96a65b6229baf3a0439ebf44613f |
|
MD5 | 7b319b4edfff1d20af32c69ebd8beb75 |
|
BLAKE2b-256 | 7356d89e90812fd26ae354080d44e6a981128ab13c03941473753a61ed791af8 |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 438.3 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 | 4dca05a5beb2346630968127612ebd7771084890297d4de25cde24ac937dc11b |
|
MD5 | 3b0b14f86fcc046e08028354a741c522 |
|
BLAKE2b-256 | fa081c00ffa880b6c27a985653f0f3e67ead67fdea8dd9fc3b02dd7b4b8bd38e |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 419.0 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 | f8ee28ff91df8e6c8ce2ea4334bb487ebd7adeef94f6d0170314cb3e0179e272 |
|
MD5 | ae8738a1a4b6de8c0288ec727aa69d2e |
|
BLAKE2b-256 | 9a7087cee9b5177c9c4ecf51b14dbdc2bfde7f38fb28d0bdf3e43a23fe8a275f |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 406.0 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 | 33da59560da889ad41018f0c93f58833018922a1fff7ae44bcf20a0644bda9fc |
|
MD5 | 5cd372af0be5fd7763ba5ea535e755f1 |
|
BLAKE2b-256 | e85b3ab129590dad22ddbd6315e1196663af88dda6ba443ec47d686c8c728807 |
File details
Details for the file grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 400.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 | 952c0ea0c652c3aea99411921e1a43b015c4ef96466a8b0d78b8d15c820228ca |
|
MD5 | 643dc8cc795fbe2e1198bef20c0b582b |
|
BLAKE2b-256 | a408f83b5f34ed2ef3dc165dbd48d65a1998ba16ee55d44b3a5535dd85e2a1cf |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 564.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 | ed910d51b1105799882beb3936d5dcb7617ae17494864bbef01617e52c9866f4 |
|
MD5 | 37263324d3af81f0ad7ce34a679fbbb2 |
|
BLAKE2b-256 | adfc5bd7a37c2d4f5df2ee996d3f9d73065b6b46f826c2f55bfc6df48c02d5a8 |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 592.1 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 | 320bcca184841f7935df8c50636607e452ebea1891e9985a6fe9b82b96a3cd6c |
|
MD5 | 74b8f57fc0465bbbb108104a351a7797 |
|
BLAKE2b-256 | fd428a8913e94233ae9abcdcf08750d70a104b0f3fb03bf70b6a87f2bd9f6a74 |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 667.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f3b3a8f309c9a9026324745f744ffc60cd54d1a07bc1ddbb1ba73e7bacb2a78 |
|
MD5 | 7620da2f04d36ac84c273cb2ac87ec84 |
|
BLAKE2b-256 | bb17597a0bf19aaeadc2ec04cf3d613ad00c6050b9a545c9aefa598b3cc36870 |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 576.2 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 | 697ec33b8ed0803b5c7ca68d297d90cfc36940b2a4fc64651bf29953f126ada3 |
|
MD5 | 4585aa16efae8fcedd208a4b5117ec9d |
|
BLAKE2b-256 | 7e3b58c7741744afd2f057ae5e6ba4e4ac9f430f2749c0d4aa661a6a39ee85b5 |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 395.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 | f6e6f7d75e9f32022b57ca9d83239a0325a495cb6dc3ddb629654aa3d30f0a88 |
|
MD5 | 9f1b0741a3100dcb0de0e7512a99b84f |
|
BLAKE2b-256 | 1ee9fc1e0761e300d64bf94661418ddc866ffc4979103be0b2b50c06250ccd9d |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 449.0 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 | ba0066ab7d081c1637947a82c744081654150e9dcb6967ae9bdad3a69a55224c |
|
MD5 | a6667552e28cad319ca8baaab533613f |
|
BLAKE2b-256 | 1ed2cb17fcf23d448aa97caaf8e39b8346231dd8465c25cfe5d928ee765103cf |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 438.8 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 | 74b035af58fa6171f07972bac3cb970ac409c10c222515c913b468c7e067f23a |
|
MD5 | e89b7f7d85f9d4f955716b73c807b67a |
|
BLAKE2b-256 | b05086072bc601a5ef0780fc9b0ce7dc6033772e2ade774d8e895ac7d9e4bd90 |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 419.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 | c07bab1917ae798381a63f065e804fb1b5797bb727bb17671453bb6c02639944 |
|
MD5 | fce722a8d7a224d7dbfe73fbba3e65ae |
|
BLAKE2b-256 | 6bc77ff06dfea609253756ac8590df5ca1d02b39bdadc277cbf7c389c0f1d66e |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 406.5 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 | d2257a4abfe40578e546e2f74b698b58645aeb3137fd7c3c95ac49a84ebe3009 |
|
MD5 | 1d98f45164da374330bfe6c27c754dc2 |
|
BLAKE2b-256 | e771d2486981f9ea1a6606d30d5cbcae1deced387872b7e3106337b140dce8de |
File details
Details for the file grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 401.2 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 | ca26b2e1acd3ecfba14a9987dc2cf81b44cd05be755e7a112e05ae8c54626548 |
|
MD5 | 17bc2a7bb42050585222c3b1189aaf49 |
|
BLAKE2b-256 | dbb38cb724f289886ef0aea73c3d6b08d6b478ff90269a7e82d7f9955c5daee8 |
File details
Details for the file grimp-3.5-cp313-none-win_amd64.whl
.
File metadata
- Download URL: grimp-3.5-cp313-none-win_amd64.whl
- Upload date:
- Size: 236.0 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 099388df82d922ddc589f362f1a523ab053c8dee5d29a6b622b2cddf481c6a2f |
|
MD5 | 799682d46c45ae1a412dc7cb487a6346 |
|
BLAKE2b-256 | e58c15834d919407c1ab11590367e03ac9d1c162d518a0f54f2970e315e0d623 |
File details
Details for the file grimp-3.5-cp313-none-win32.whl
.
File metadata
- Download URL: grimp-3.5-cp313-none-win32.whl
- Upload date:
- Size: 222.7 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 506091bfd600dd7ad427586998ef5e54a2098485148a1499bd9af5943d2fb0b7 |
|
MD5 | 803c7259ceac4b44db4d890b5c2b2af9 |
|
BLAKE2b-256 | 1e29300daf9b6a7f3f979a379cda69e04374912031fd85f3b6f0e03d9b637263 |
File details
Details for the file grimp-3.5-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 560.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24aabae0183ca5fd5a710257ff37120b55d8e6d6d4cbb2c08481552832e5c901 |
|
MD5 | 5f4bbec15e287b2b577be4504719c26a |
|
BLAKE2b-256 | ad2903156310a1bf278e8dd46e2e02311bad1d1551b1555d245e28008c318086 |
File details
Details for the file grimp-3.5-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 589.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6af125013ad2a56c18f2f53a3fcabbfbe96c70374abecd6f14b82dc444726ebe |
|
MD5 | c58b0f0eb1eaa2caf0105c6d960965d8 |
|
BLAKE2b-256 | 6b7bce6cf6ba2da6305725692ea2a7a4080da60ac075d23353fc07cae7adb5b7 |
File details
Details for the file grimp-3.5-cp313-cp313-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 664.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | edee4b087f007dab8b65461caf6a1b67b2f9480cceb5f6aceea87008d8f283c4 |
|
MD5 | fa0278841d6279bd33144d7f78cfc448 |
|
BLAKE2b-256 | 241db90853a0b7eb7aa08073dafd896551d26a416e922a68eb1cab35319593c7 |
File details
Details for the file grimp-3.5-cp313-cp313-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 573.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf7f5367c4a87b8e9f08c09e7401d2d73f21cb65d6142445819f9df0d6ab3f6b |
|
MD5 | 178f001e3cb8e7363503cc011ccf4ac8 |
|
BLAKE2b-256 | 46621a7f8b54d73f3ef6595dd8bfa10686321c04b562fbb997e9d46f95fe7b96 |
File details
Details for the file grimp-3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 393.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bff39a0061790f074f86a7841cd8e6064aa7b2208cb1ee5c3f2e685dead2b66e |
|
MD5 | 56c58e0a07608ae104d55014d9f4f34a |
|
BLAKE2b-256 | 12e179f6a4212d46ae6db6281c5b179990d2dd53c72eed7587592c0968f0d3f0 |
File details
Details for the file grimp-3.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 443.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11c66039c0475e5c9fc6a086264f11870181ae79f603caa5dffa1411ddad636b |
|
MD5 | b0b3a15f6d29767124265700b6c8d2e7 |
|
BLAKE2b-256 | 1a2155ede2511dc111e9ca90d23e479e263e0845dc7e389515587f9575c5b139 |
File details
Details for the file grimp-3.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 437.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60a9afd3dd00ad1d301a07f97e26bc9ecdc3d2db39ab6ac46c315a7dea0a96cb |
|
MD5 | 88a85fb38ec129d09f630c14e1ae0465 |
|
BLAKE2b-256 | 933c185a0292111350823fdd7d61481157295d90260e248888ab274a00f84456 |
File details
Details for the file grimp-3.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 416.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eaedfba320a70d87b14acb25a685c8629586b943129c71ffd02b47d9531c11ce |
|
MD5 | 8bd7f6444ec0f2b2c352cf5622cfeaaf |
|
BLAKE2b-256 | 7df832446714ed0f23a1b8067f9f627c55f7c186d3477baa5c6e6312c95060ab |
File details
Details for the file grimp-3.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 405.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aba7ce7839b72efb4c6d06404d2b2a3026e28dd89816f4e546b3cd6626cbeeb1 |
|
MD5 | 018c5d83735146c5ce48a26baa464631 |
|
BLAKE2b-256 | dcb9aa6365859c96881d02f6ad6ab8aa38eaced5887f3cc431165ed9ee7b35ea |
File details
Details for the file grimp-3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 399.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6a55614945c319d1dc692c3e43f3a02b80c116a1298e593f5f887b97e6c983a |
|
MD5 | fbff53064b423534ad4db499dab5dc0e |
|
BLAKE2b-256 | 55e6b0fc52ab1ee04c80f1709eaa2e99468a8981d0a23dcbc7c2c6e781da22cc |
File details
Details for the file grimp-3.5-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 342.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17113aba41269d0ee91512c96eeb850c7c668440c6a8e0bfc94d17762184b293 |
|
MD5 | 2a93006225a8f3a8ec9a7fe8f3682760 |
|
BLAKE2b-256 | 78e044bd64767763160ea0862ad756b88dfd375060b5636aaeb79c10861f09ae |
File details
Details for the file grimp-3.5-cp313-cp313-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 351.5 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 448dba63f938d0e13e6121559749816e3b2644202c912cc308e7608c6034737a |
|
MD5 | 8ba0a69b9c5a53be2fbde5c0e094abaf |
|
BLAKE2b-256 | 310233f4b4bc6d22b5ff7672ce5c67464f4dcee6e86cf3a072cdc9b1d46e5178 |
File details
Details for the file grimp-3.5-cp312-none-win_amd64.whl
.
File metadata
- Download URL: grimp-3.5-cp312-none-win_amd64.whl
- Upload date:
- Size: 236.2 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 | 6fa422c150597f8e6ad51c4fe2b271747057abe638acca5eebb2162e536065ed |
|
MD5 | 04984ee65be95615f438bc21ad099836 |
|
BLAKE2b-256 | 2e854058a766fc2b53b4b1318944c46bc9405fc7dea7ebb2eca377896f3fbfd5 |
File details
Details for the file grimp-3.5-cp312-none-win32.whl
.
File metadata
- Download URL: grimp-3.5-cp312-none-win32.whl
- Upload date:
- Size: 223.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 | f88307f0e50883ab73cc59164a5a9396e8e1c8b68b8e2edef68d478b91d81000 |
|
MD5 | 54b5f9c8284eb3591ec29cfb742fd9b5 |
|
BLAKE2b-256 | 1352fb9ad8e26710d7eb0afccf083087810d8cbd0f4eb3863f0641c8b251c046 |
File details
Details for the file grimp-3.5-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 561.0 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 | 3f83b85aad278dfcaf2bf27b9cfa6dd6533dd96ecc510ba3bc0141344686857f |
|
MD5 | 3217ef81b9cb6af088f487be9f26c604 |
|
BLAKE2b-256 | 73a203ffdf03f2ab642bfe296eff94f51a6a8e3b04d4b5c7567a7b3c9261313c |
File details
Details for the file grimp-3.5-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 589.5 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 | 8194ac4c54fac7641bfcef332aaec1af590e97b2aa8993e47a7c51ff84220f44 |
|
MD5 | 76aa8f4cde1ab3e0205bddc90c106523 |
|
BLAKE2b-256 | 67bf6de7ec680daa963d215dc3bd71831c22e15e488ed7b835e65b36b8424aaf |
File details
Details for the file grimp-3.5-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 664.4 kB
- 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 | 13924943d6e5a0f0150c8f2a05d87042f03510b633b198ac3dd5c4274d36f28c |
|
MD5 | c28c427bf8d5f1f3d57cd3dcbcbc8723 |
|
BLAKE2b-256 | 8ca0deaeb03bbfac9e5503c270447724c10852679809cb26e57b3e4baaf60cf5 |
File details
Details for the file grimp-3.5-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 573.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 | 8a98f06d58b0cb7b8bfe5846d8ab07adb36c313dd3c7298836ddd3df98a8344a |
|
MD5 | d8e526d61ee9dc74b7e7da925b932057 |
|
BLAKE2b-256 | 91673cbb66ace2a4a253bfda3dbbcffc3b044e470d009a87cd75a7ed729d91f3 |
File details
Details for the file grimp-3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 393.8 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 | a486e985fa4d4fb9dc6ebb094ed17a293809ff5cf6532bba26a5ae064d350539 |
|
MD5 | 444d729cdf462b46e6b4c33f849c368a |
|
BLAKE2b-256 | 677afde60dfb1995e8b6a2f26ac280ca5ad3cdeec2d363172c12450850dc93ba |
File details
Details for the file grimp-3.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 444.2 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 | b0724f60d7cccf2c94616f0282ba8eec85a1956b59b8d22274409a60539fc462 |
|
MD5 | 2b1bcd955b354baad5c373fd27e26dc8 |
|
BLAKE2b-256 | ac543319304f1f1050b8093314e875fcf73150323beb18cbf918c4ef6a8ef89b |
File details
Details for the file grimp-3.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 437.6 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 | ce7440c8498fa5b47acfffce7fe42d6c63be94dbe2fff7f524522fa7e422e0eb |
|
MD5 | 4641376b7619aed11103245acb56fc25 |
|
BLAKE2b-256 | a54f17e7c07872370b92560b189cc83714e358ba58a72fb4b4272b0977f32233 |
File details
Details for the file grimp-3.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 416.9 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 | f4e023c883a83fa8ca1a613b1e8b39834545818971a8d94977bcd4b491537cde |
|
MD5 | 6c3cf7e6e3ea615c1a34e5a131fe3407 |
|
BLAKE2b-256 | 9563f2c4d5796bde917f9ec37d8f1b555416a4f24af99899d4bb4131efa6d92a |
File details
Details for the file grimp-3.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 405.5 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 | 8d7bb3f2178b3a8115eca5f6ea5f766a283b8a7ede84fbbdda2a40b7d28624cb |
|
MD5 | dfd486ab1c3cda2b6d773156fe2422cf |
|
BLAKE2b-256 | d9da391129fdca413bed18409d0594445b9c2b839b1265d8c207c82134bcfc7e |
File details
Details for the file grimp-3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 399.8 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 | 4f4e2159c3c75b62f9ea59a539ac93f89b9ced38811b453d3b78be62c8395b01 |
|
MD5 | 1d8425a7b16b27af10cdcc0a9faac248 |
|
BLAKE2b-256 | 7e64700b9a9434b3e419e8f2faba1d527cd04398b341e4c6f471fd61849de5ea |
File details
Details for the file grimp-3.5-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 343.0 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 | 977c6b220671d7332657be13c51e4f6f38c76d911680f844806a5346142910fc |
|
MD5 | 11178753df1727747fdb863f596168be |
|
BLAKE2b-256 | 3b1a075518b888a9e0695f80f481563c62ed62cdc4a3bb5c3fc060392f63bee6 |
File details
Details for the file grimp-3.5-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 352.0 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 | e09db10a7395b3930ebe95eee2ac440c5ee24ce77b6171e807a8aacb4625cca2 |
|
MD5 | f238c60fb4721d8be66bc26eb31626ca |
|
BLAKE2b-256 | 5c2d3cdbde81fc35da435f71c1ac1756d54546340aeb73bd2435062f5d56fa96 |
File details
Details for the file grimp-3.5-cp311-none-win_amd64.whl
.
File metadata
- Download URL: grimp-3.5-cp311-none-win_amd64.whl
- Upload date:
- Size: 237.2 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 | bbcd2468a2609a8c662429ed34357ff50efb194c00c1c88a6336c92d662439ad |
|
MD5 | 7a0f37fa16f2148303328b398d84a324 |
|
BLAKE2b-256 | c7491c2672d5d8590df8fd94c7348afa2bc73ff06d38162646a6dabb867d0fac |
File details
Details for the file grimp-3.5-cp311-none-win32.whl
.
File metadata
- Download URL: grimp-3.5-cp311-none-win32.whl
- Upload date:
- Size: 224.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7aa32379f91494d1f1779a3e469ebf5d3e515c8c978bb5d585f6a87c297f45a1 |
|
MD5 | e4f198f6645ee99890913549ef45e171 |
|
BLAKE2b-256 | 41cb86e1d9fb3ebefda925d9d3ef05d1f19c286b436bed80b4c3661881bb5b00 |
File details
Details for the file grimp-3.5-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 561.3 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 | e6682704bd7c3a2f9098747b524038f15df4d1456aded3265596fb2360fca872 |
|
MD5 | 99262180a730b67a62e9563b5619e830 |
|
BLAKE2b-256 | f439ef290ebc04fcbec73c46c9650a4b60f3396bb77ad1df5f90142c59864d4e |
File details
Details for the file grimp-3.5-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 590.0 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 | e270c5342302aabf97ad4e810101fcfc38c5f9360cbdd5b6f653ce43f29bf1bf |
|
MD5 | e2734bbb55d96c05d5e579e059440dda |
|
BLAKE2b-256 | 23c7522a372331e2f82ce86a1b9ee14d059db34414fbb42175d49e7d7add8275 |
File details
Details for the file grimp-3.5-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 665.6 kB
- 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 | f8676bc2e0ecdc61376aba038b8ebd3380630a78f1c44426b393dd616eb3899b |
|
MD5 | 507da6b7ca5de1152661fdc2e754b40f |
|
BLAKE2b-256 | 5db9b4b57c19e50969f57f137ca67b3758348d6ceb575feac9a7cf1dbe6a5443 |
File details
Details for the file grimp-3.5-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 573.6 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 | a93990401856d4ba7620faa123d1949059b2b5c169b6ef1bdf4d1f8df316c0a1 |
|
MD5 | c181dd82d4b40802619b58ef9854f473 |
|
BLAKE2b-256 | e2d1e1aa71d456953c08048aaea9aaf4091aa50a47fc43abdc6d714a1251bf97 |
File details
Details for the file grimp-3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 393.3 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 | b175fb636e7d2d1e6feb79ad09794740b03458eb838c341e51112beee8ae5f6e |
|
MD5 | 30324142620aa5a84ac1a3fa213e2ab9 |
|
BLAKE2b-256 | ade911db7823c46aa7fc5af4cadaf50db1617fdeafc866f93c2bdf720c14c4e0 |
File details
Details for the file grimp-3.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 445.2 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 | d3d11d7ed0b0313cb378a5d138f4644189ffc77fb358d60d21d54c3d32f0a5a5 |
|
MD5 | 0d5fd21b0dec23c9b41293e680025124 |
|
BLAKE2b-256 | 34416616ceeda32272fcf659c1d62d1059ecb172430b8f63ca810e407e15ab4c |
File details
Details for the file grimp-3.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 437.1 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 | 2ba4988e1c96415d02f49b4677e1a219c048c2cbb358c812c99b303310f4adaa |
|
MD5 | 646140222352e30e4ebf35f3b53e461a |
|
BLAKE2b-256 | d3c3f0afb8d9bb88a7ab2fec3561fc7e2c9c71cf229ab900b089241f8f8cfdd0 |
File details
Details for the file grimp-3.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 417.0 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 | e6abffdfe3b70723fe6a61f3c3e2c5c415a18d06387929bf4b223aa050c618d3 |
|
MD5 | 9de661d82be34600c8ed00e130d7f79f |
|
BLAKE2b-256 | 45757bd0c94404d5aa3cb58ccb62d393bc309f7f841c83717e42ba99b35b30e3 |
File details
Details for the file grimp-3.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 406.2 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 | 24b83512a3195c4f927e3968b0c61db9c6d5758f748bf6d3fec197f0b61309e8 |
|
MD5 | a5f71b94820b9ea6186b31de8ab01c7a |
|
BLAKE2b-256 | 480c83df98d37b942bb5fe54d097d2302b8312d8d5b8e7cc9a42dfebd46a7d10 |
File details
Details for the file grimp-3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 400.3 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 | 2320207ad620ed383533f3178783b5d82a9f100dbc9d7fc1c50e40275dc9a002 |
|
MD5 | efa92a308258ee3d3b79662179b6627f |
|
BLAKE2b-256 | 283e8443ce7eb20c36f109000b91f4d45e4cdf036aab845057902f7603aaf674 |
File details
Details for the file grimp-3.5-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 343.3 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 | b2f9fdafc36dcf3ae80f7da2696bc7cbd1ef73ddd0f043446d63facc474cb2ab |
|
MD5 | b0ca44e926fdf8d60b63adbc07319667 |
|
BLAKE2b-256 | 440aa16179c6a98b732dcd3dfc397635211041e6669539d9516520de0174b1dc |
File details
Details for the file grimp-3.5-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 352.5 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 | 3d2130cbdbcd01ae65ebe39520f8a38e5f4ed445a4989eb1c8c0796759ddc5c6 |
|
MD5 | 1f826652101149483dca8a6cc08a226e |
|
BLAKE2b-256 | 78f5cef05699ed75a8b7cbf5686a5b1b60af4f6f22aa16ee966ce6d72a03604b |
File details
Details for the file grimp-3.5-cp310-none-win_amd64.whl
.
File metadata
- Download URL: grimp-3.5-cp310-none-win_amd64.whl
- Upload date:
- Size: 237.2 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 | 80a04c1559bfe45a8cb49caf160391e180cf24db9af443f34ed01e5ededba025 |
|
MD5 | e682df8d328d776bdaf98929a9e4a824 |
|
BLAKE2b-256 | d9913a69a336c2b3b795e195fb8799a31cdec241859e89e94b5c854a34953567 |
File details
Details for the file grimp-3.5-cp310-none-win32.whl
.
File metadata
- Download URL: grimp-3.5-cp310-none-win32.whl
- Upload date:
- Size: 223.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 | 077a0e5fe97a95183e9302615dd10b69f4b378efb9158504a57b7e71871259a3 |
|
MD5 | 3f35405fa1e18210753a61412f37aa67 |
|
BLAKE2b-256 | 4f66cb6f24e7fb43a77f6f100ab9aec88ab0b1a8b1cfd32ba2fd0d99602b6474 |
File details
Details for the file grimp-3.5-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 561.4 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 | b10e7d4f67bae4326275b63aa1987652f6d673264fd8e2eb6804d64e0bfc4fa2 |
|
MD5 | 2a67fdcfd48273097a2b4957c7a4177f |
|
BLAKE2b-256 | caab335344695e70ca1ee3ede3c9e3dec51dfbfb135c094c2040e368a9673671 |
File details
Details for the file grimp-3.5-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 590.0 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 | 374ad436ffdd29ffd6ae4b2a345783aad08f0d674b1ee01b55b824420b6f8e85 |
|
MD5 | 45d258302190ffb3618457b84cebfbc9 |
|
BLAKE2b-256 | 19bcde80f40aab6b40c32a751b637ac71a8e5c236be5b5262654e70791de7c1b |
File details
Details for the file grimp-3.5-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 665.5 kB
- 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 | 7e6f9af573b59bb0dd07e182482277922889329672cb418a0e8617de3aaf4922 |
|
MD5 | d06902e42a51375286c7a15e6a279307 |
|
BLAKE2b-256 | e787456bbef29269482b3a374cf5cfd171de590d27e60d3f7fa8c06786f096b9 |
File details
Details for the file grimp-3.5-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 573.7 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 | 3140ec48aaa43e124a735878fdf527cad7fa65230c2b69abc8124a22afb755bc |
|
MD5 | 77e3d6fe52f78eca0c4bc66fd3831287 |
|
BLAKE2b-256 | 84cb1d3bfdf994127ca6a439e266e25fe16ba6b4b8067cdb1320fa1f1313055a |
File details
Details for the file grimp-3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 393.4 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 | 7fa6188b077339f030973b6cb3e1947175c45f6f9a472162435a5f80afd21805 |
|
MD5 | 30acb3b142194acb8a1b8847ced46443 |
|
BLAKE2b-256 | abb125415841c96daef43a4879c6fce01f94d7fd6226d5920888ac171fb4a71f |
File details
Details for the file grimp-3.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 445.7 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 | 5f9db004a253329f480a3ec0b0929558a6427f2db0610900b57fded591f6e3be |
|
MD5 | 3a0490259d3df0be685eb6d501ebd373 |
|
BLAKE2b-256 | dd4f00f6db52c34a63763a2be0d524ec3fa21432a287a91d53b3bd2576b2064e |
File details
Details for the file grimp-3.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 437.1 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 | 60e92da02c72eebb9f1aaecd48c3b9fd234de6a6427da6b2232918cb88b409c0 |
|
MD5 | 757428e44c7540fc8e9a8bfd2c6543e7 |
|
BLAKE2b-256 | f9e31577e3411490c8a2ea22dfe1166cc3f26fcd3fa0567c8140a45ac2ed9de2 |
File details
Details for the file grimp-3.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 417.0 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 | 8a71a6c4e411adfeb6b8ba0fc5eff60505bf758aea9e4c7169a6fce5a57833cf |
|
MD5 | 79cf6709ba7f48972d2cd2cc82cc7212 |
|
BLAKE2b-256 | 20b974145048d39295f680594ff62c8d5125e47282e589843e31d96b0106269b |
File details
Details for the file grimp-3.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 406.3 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 | b2ea1402221bf00dee7ae5357ef549151b1ad213a892cfe734b7156413d99a38 |
|
MD5 | 514f25779daef0e608180ae90b12820e |
|
BLAKE2b-256 | 97a98bb8a78c4d60305360b067ee7330a4bc98b987c9e63959da00fb15b0d04c |
File details
Details for the file grimp-3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 400.3 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 | b5d495c9d527535872d78dfbc0f74f2650ad6b13e12f7d8b11da9d91ebaf2bda |
|
MD5 | 0e3993ce10058a7281e89e11411adbce |
|
BLAKE2b-256 | 6610e830b26e1001d9eb66d68e02ad786f40940d72026da957569e15887fb46a |
File details
Details for the file grimp-3.5-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 343.4 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 | 8c2f4a16626b6de9f5ea6e87e685e5810be7712461ef29260c67b5b868f64ae5 |
|
MD5 | 16f0aa1e49144d28de9e53850d0b4192 |
|
BLAKE2b-256 | baddc975bb50f01ae581887d5c84aa371fd211d0a6643598a66fa459a8fc5c0d |
File details
Details for the file grimp-3.5-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 352.5 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73538d288752ea7b10fdfd05406a1c1507531b5763ad97994cd1646283112d93 |
|
MD5 | 72f0c4a7d82d385be5cc9da3377bc4b0 |
|
BLAKE2b-256 | 056bd0323289dd9300313bf0555a59659c69e723434b0b3b49c115ab30bd7585 |
File details
Details for the file grimp-3.5-cp39-none-win_amd64.whl
.
File metadata
- Download URL: grimp-3.5-cp39-none-win_amd64.whl
- Upload date:
- Size: 237.1 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 | 98d6be78ffabc28016d313847ff990f2625b6d2c7015edd34f0bad4be97bb648 |
|
MD5 | 028204ee368a7c9ac46054db56b0d60c |
|
BLAKE2b-256 | b6746f52d25365664c291724d23cbcaac0ff602c316fba47cd2c42cbd2ce9e76 |
File details
Details for the file grimp-3.5-cp39-none-win32.whl
.
File metadata
- Download URL: grimp-3.5-cp39-none-win32.whl
- Upload date:
- Size: 224.1 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1aeb5ffb188d10a28a4508cc33e5f06f03a032c484a8b2d5bd0a2fad115d3c2 |
|
MD5 | f93ce5cecb3311b7540bb04647c4acc3 |
|
BLAKE2b-256 | 4e00dae4472b5639d223a02c501d1dda770ba6e7ffe9712f0a5734f3b2a30895 |
File details
Details for the file grimp-3.5-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 561.6 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 | 2967cef66f123f9c90281ad2525995302dea3d52416e5177b3eb9cd7eea0f617 |
|
MD5 | e74895aebb718e8a61b4d70704aa5565 |
|
BLAKE2b-256 | c7e48d11ce87b62b77c538aec9eeb9dbbf7ab1e748474d300355a24b8e01fcae |
File details
Details for the file grimp-3.5-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 589.5 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 | 40c6473a12ac8f71f66d3215269011fd8e480b99947f1dbb12e1d83b3fc3df74 |
|
MD5 | cd8f58f1f91b2daab6b8fcee9bf09f8d |
|
BLAKE2b-256 | 98ee1e360f2e7d272d6aae74acbcde658563aa8ff414d38efcb892af1216f2dd |
File details
Details for the file grimp-3.5-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 665.5 kB
- 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 | b14b00f15bf1e5901ec50fad0b4238522aef7b37b0cce770c100e387e278cd6e |
|
MD5 | 562e05a7aba61e953c3635c1a2d44b4b |
|
BLAKE2b-256 | 25fea97d156b4c5d0ff1649d544b48a147baf14d088613768b68fc09d81d501c |
File details
Details for the file grimp-3.5-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 573.8 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 | bb3adae6cc3938aa487fc206c4a44af026907ec98322c738e5f2f3435e34e7cd |
|
MD5 | 3e17e103de673b4db3e9e9dc10d97fcf |
|
BLAKE2b-256 | 1ced9e2990c7f0db5ffe8a64519e90a1a6898338386d572ce170ccc4bcb0d401 |
File details
Details for the file grimp-3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 393.1 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 | eb3a24b5f4c1b19a19712855dbb82a7d82d8dc565e99464c3fb15fefd5ae81ae |
|
MD5 | 3bcad799528d8cfedc52e5ff8d438b84 |
|
BLAKE2b-256 | 5f903ac9bfaebd5bfa5d300448bc59949044dadd0823f5a7f5d8d6c5c954e4a4 |
File details
Details for the file grimp-3.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 445.4 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 | 57d35306da73b62d3d29fc482e8add9e6781fc004ca080c1b74b0d21d62e1613 |
|
MD5 | 9dc5214fe40d3c62941ca6756a789229 |
|
BLAKE2b-256 | 0db97182b2d4c9eaccff03bc29e5b340b9006001a34bb9fcb2ede09b4c1705ba |
File details
Details for the file grimp-3.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 437.1 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 | e7a59650956cd1e29810a5611395560c33a27cf3acddd587437745c8b136a820 |
|
MD5 | 60a50e261039c12c5fd51192c6e14093 |
|
BLAKE2b-256 | 1ef995b73645a905980ba2e58563fdcc3b78f5d0457b0c69441edd4e1453ca78 |
File details
Details for the file grimp-3.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 416.9 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 | 057a4afece42540d51817f8acca889bde87d78720ff7bf51833b27a83ea0a74b |
|
MD5 | a609eddde97032736ae406a414634a08 |
|
BLAKE2b-256 | c400fe45b5515381adac4421f483a839619f66e363910bea1980e5a890a59a93 |
File details
Details for the file grimp-3.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 406.3 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 | fffb6e7b066636e69f1b70ed617891d04efc14c8d740015026c6c01ede03196f |
|
MD5 | 36e64acb74a8d7525518648ca0692595 |
|
BLAKE2b-256 | 056f7255b125ee66302838a17df4316dedfc8a0cf99c1be6537aa490c6d677ff |
File details
Details for the file grimp-3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 400.4 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 | 1a63b444410c78763b506c9f31cd813b5c3ff3ed14100d102f1a705201f70f2f |
|
MD5 | 17ff4f0016270b59ad32fe779f787fe0 |
|
BLAKE2b-256 | 7b49be8845344e4063888b4b2dba523b362ce349eb4f5654fa96fe421d0fb71d |
File details
Details for the file grimp-3.5-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 343.5 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 | ea11cf5a0e1cd8fb1a119304128c85162bb2e4ad49c7583ab7835c783fc45457 |
|
MD5 | 8f761bd918c0b24625bc78edf558ec31 |
|
BLAKE2b-256 | c5dc28e5a1a5e7909521dcc6176fbaace42efd7496f5149dc7a7a665c59943a4 |
File details
Details for the file grimp-3.5-cp39-cp39-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: grimp-3.5-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 352.5 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4bec3fbe008c8f8c546a640e6e74a519c9d33720c315c72013f1b6455543d1a9 |
|
MD5 | b5bfda5953ef1ff3bf0b6a5f73e28ef0 |
|
BLAKE2b-256 | 7ad774da01bfcc376a365e038a0c5a3fdc02886c91d8053da9fb12db5779ed3b |