Rust ignore crate Python bindings
Project description
ignore in Python
This is a Python library that binds to the Rust crate ignore.
ignore's Python bindings can be used for building a fast recursive
directory iterator that respects various filters such as globs, file
types and .gitignore
files.
Example
This example shows the most basic usage of this package. This code
will recursively traverse the current directory while automatically
filtering out files and directories according to ignore globs found in
files like .ignore
and .gitignore
:
from ignore import Walk
for entry in Walk("./"):
print(entry.path())
Example: advanced
By default, the recursive directory iterator will ignore hidden files and directories. This can be disabled by building the iterator with WalkBuilder
:
from ignore import WalkBuilder
for entry in WalkBuilder("./").hidden(False).build():
print(entry.path())
Refer to the API documentation for more information.
How to install (from pip)
pip install ignore-python
# or
python -m pip install ignore-python
How to develop
This assumes that you have rust and cargo installed. I use the workflow recommended by pyo3 and maturin.
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 ignore_python-0.1.2.tar.gz
.
File metadata
- Download URL: ignore_python-0.1.2.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8ac7b6b1778c35cc6c24f6262142c80f8b4950351b1d2c6296f7dd0e4ff799e |
|
MD5 | 03dee7c465e84831e19775ab3dbd0a55 |
|
BLAKE2b-256 | e19d39e1cccc84d65e0ec192002ee678cc182e37000d23210a055b8630a9e490 |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f6bfd7044995c6a44230c1c1885d45d80af6eef6eb22d90dfa1828ecabe3dbf |
|
MD5 | ce575de6cc087ceb2b54392e44f08fec |
|
BLAKE2b-256 | e4f5b12c0e36582364c4cccf1e3b71c7b8e20d5f2b50ccfd25a401fd69a44dae |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6d0e30e68cbdd070383bbcdc0f4c5c5721a17ad32598eebda4a7ff66c2ea583 |
|
MD5 | c8254b3c884be438e760bfef57f356a8 |
|
BLAKE2b-256 | 8c47b0380cc5ed410f42a162074383e04c5b28a8d13ca371f7666e63e0d58c7e |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 894bf9fbccb9df0b0ba4c506676a17fb6b82a7a949e2aad91419556570949f98 |
|
MD5 | 2ea27f29e9edd67a0759d236bc5fe8fd |
|
BLAKE2b-256 | 56d811c884f6a95787b7201ef3366c6f3c4d7fa1fee545403c996ff2044f8e12 |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46499ccdba2bea88074eb1cd2208963676578dc2c2a9143897ceab0c92fdbf2d |
|
MD5 | 2113586146af72c1126b44fcbc6abfbb |
|
BLAKE2b-256 | 22d5324662731dcb7ed9c537e08d7191d38c44866fe7b86b99323c192aa014e7 |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 962.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01bc9d9d95b3bdd688b6760a9f6b16de65b1c00e1c3e2fa15222b348f69e426f |
|
MD5 | b30762d0d8243d276c04c5de17c04dce |
|
BLAKE2b-256 | 2a009f3f63bd24276abb8411ca1e08ea1dc757e711d1feecad713e28c5530554 |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ecfa6a9c216027172d358d3d3a08c6b15c4fbb880402cfe21e0d198fce0f3f2a |
|
MD5 | e9111af9082d7a870ee75295ebe4014b |
|
BLAKE2b-256 | 97e461d47b1b55f8ec85baea8614611929957b2e3370ca3b20005927b5cca416 |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 993.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff58d968c91a90cbfbbb3cbc28e38a8c6b64bfff6feda7b087100596487afec5 |
|
MD5 | b3c97085e4d86b530a0c6d02febaaa07 |
|
BLAKE2b-256 | cc5f93224efd025ab364f09ecd97dafaa17aea621f074043fe38809de84e8c14 |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 891.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9596806f512b757fd650450c15bd912595210cbd5c0945e9c40c86dbe121cbc |
|
MD5 | 2ff0799fdcdce80c42389e4307b3b133 |
|
BLAKE2b-256 | 666862c28392aa59847d3c1058fdc1be5305c51356f76a1d744c0d1237a1d4f3 |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 933.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9964804f3b0e0c3e5cba99583a330a9417ac7dc7c96f7ef758794bf0c76a4316 |
|
MD5 | 426f6976ef89fb0a3c73173de469c66a |
|
BLAKE2b-256 | 894a8b961c5561ac98cd7a320e6c879067240dccb39043b38f99b8c467ec465e |
File details
Details for the file ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 984.5 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 894d328979f829387ad47c163145167ed74200289d70bfbf436d9391c8abf9ad |
|
MD5 | b4b8a895b63d67fe9a3afad93751cb4a |
|
BLAKE2b-256 | f7933636c240a22fa3ecf97ad3270cc9fa8326b12c9a580e0cfb90da50d7589e |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9901314121bfd31d831ec0049338d899a3063d1a07a0413e2075453c4af9ed6 |
|
MD5 | 67cdb1551be42cb25afde0b8a7145cc6 |
|
BLAKE2b-256 | 2b8a44323352c55893daf16b28166c1fea4e76cea2e087ca9fc01653e9267b36 |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3f1ad917f88794fa5b32f161453f1b904eb6eee0c4be88764ba45c9c46c9e0a |
|
MD5 | 2d69e6a1b270e1175cde6c38c238e1b8 |
|
BLAKE2b-256 | e89788df02f40d29a30bcc0eeb55b59833a597608c7bcfb8c390a5145e761531 |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a32a63ba8baffcc6c21f7c53eeadf839d95c0e2ec818d211402bb12c3ba148c |
|
MD5 | 85420881a58a503be204a96b27a8a63b |
|
BLAKE2b-256 | 72de0b65694fa8d0881684dcc7460e7086f67b57c73a77b22c77572244903f61 |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ef93c9e88a027334615bc0f91f52ae155af8b1402f28cbbe76a68e38c892e13 |
|
MD5 | 2197d3cbcb45756a82301b1c3992c951 |
|
BLAKE2b-256 | 96d01da92f38063e4f2a9423981d34b5259639106550f694e4bae6b2c090f0b8 |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 963.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eeb750607e4492f0e4f938fcfbd3a9981af1dc71afe29b221009099f4155bc5d |
|
MD5 | d9af5b1a3ccd7e6629f816ad33cce2b9 |
|
BLAKE2b-256 | c097a2d89c5869063382a40058f934338f753ee054e67e2a9f3a31d567c9a88a |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d994040939e7dedb9a967df92ec0737e1d2e836d656cecaf4b64f874fccb748 |
|
MD5 | 5adac988b3cf7571432dd0376ea89e48 |
|
BLAKE2b-256 | a5734363d8268bc259dbf18eceb2f327a06378557625da8175ad99d3f430d845 |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 995.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42eab38d2894221a377a5bb3f67725a795d08a0690b13e058ce6b803bd842e24 |
|
MD5 | b30301b84fddc161e006f6a298626998 |
|
BLAKE2b-256 | 768a263f845aa33a870a0260abbd066563c915fe5f13d0ffee4d0be3a724d02c |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 892.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31de139c6995b446d362dac2aa9d11430a990740ef0d8c290a2d971abd4259cb |
|
MD5 | 6d51ddb68a0a0e48f5f37eae08f32df6 |
|
BLAKE2b-256 | c62b221fb2622aab55e32439809f9fd4f6f2dbc964fd61a5eaf8f246900c9883 |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 934.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e71936ca2340d534f56e893599b76c6d5faf1e71230960d79e5ce33b424bb52 |
|
MD5 | 378965622802e18e8e741c680fb9186f |
|
BLAKE2b-256 | 073c3ae8eed173c1c887eefa9c047d765a39c884f8be0d7f7f05ab55985001b4 |
File details
Details for the file ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 985.0 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e68f074821ef9273c07f5fd5d8c41631f2b1a5d8a63070d77faa98fdc93ec37d |
|
MD5 | 3f56e64d02915931e0ee1a474468ccb2 |
|
BLAKE2b-256 | 5abdaa4ba6a1949f3115c37a7ed2b460e963f876cd2a6c3f694b0285a2999b53 |
File details
Details for the file ignore_python-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb34089ca0386ef086f4cfe1781d685bbcd5a0f078f06b50f07c90051b10d69f |
|
MD5 | b265b4ae2ee82290757d79c5ade2c139 |
|
BLAKE2b-256 | 92b16f4fd7bc9ddcac3aee370c75b5e922a3a186ead46291944daa50adf374f7 |
File details
Details for the file ignore_python-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42c6c784e855dbd28afbccc0296b34e99edbad40ccbf9e82447c8476450d4c4b |
|
MD5 | 889200cd47098f4a4dedbc3e92b0da61 |
|
BLAKE2b-256 | fc5c9ef3bf6d3573b410b0c623e7ce0b9212176e36a163ae197af9954569fe15 |
File details
Details for the file ignore_python-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f268dfb3728851caf3950333857094903e1298d7c2efd63e3ba540957b96364 |
|
MD5 | b32741f08f1c1d0cbb92ff8656b48c9b |
|
BLAKE2b-256 | d28e7d2de737dea9c8e82c974a31e83a71d483c3a29954b45a804e0dddaf7ec2 |
File details
Details for the file ignore_python-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4501b853464d82ccc7668daecc966a79e791bbad1572b66aad5d0edcb58d4c01 |
|
MD5 | 8e053eead0f23c35a86b2da6f881bda4 |
|
BLAKE2b-256 | 65c66e2bca5b6f6a3a3e7f8cdd3620cb84ef50dc8a258814b89ced7db9b47643 |
File details
Details for the file ignore_python-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe880cb3bcf733c6fdf7b66e83e50c73b1622879799c0710abdc19dc2c19c6da |
|
MD5 | ecdf323a420350f2955d61faee740a96 |
|
BLAKE2b-256 | 1103625f5c25aa4ce2d54f84c901f99486718362cae41a9b618519544a9bc5d5 |
File details
Details for the file ignore_python-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 995.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d45f832215c2f1cf58d10e8dfb1220bddd4eaeafdb41ef1e933afcd6c3327807 |
|
MD5 | 80611ee99ac20eafde2fa8d2a15022fe |
|
BLAKE2b-256 | 142a1201d57aca2b8cea3d98bd773a61dc15ad1ec789b1f8498913cc5d54e0bf |
File details
Details for the file ignore_python-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 892.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43fe9de8c159948333919e9679df152afa95ba836a10ab27077391a1efb3df32 |
|
MD5 | 2586025c65f40d7bb6062a1684d4267d |
|
BLAKE2b-256 | 58f06299f9b4706d38622074dc77e282791947a356eb1abb6826fdad11cb4d4c |
File details
Details for the file ignore_python-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 934.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a646166bc6f41a10fdc1db657065a9974976e089ab4a07fe23d5b9403055544 |
|
MD5 | 85ffdd692f744bab728bac7fa947b7fa |
|
BLAKE2b-256 | bf4bfc7a776dd29966b19f7cde9584354330d8e639cb6e1532903baeb566fdc2 |
File details
Details for the file ignore_python-0.1.2-cp312-none-win_amd64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-none-win_amd64.whl
- Upload date:
- Size: 735.9 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a7717621c667a51c50f24c4507d8bb1161793e2bd563ccbe9f509d5d411bfd3 |
|
MD5 | 36eaed604b29b2a3098357485377143c |
|
BLAKE2b-256 | 26f2270809f611129126c7d012b7fff7a5f18bb5c02507eb70ecd15a49d1c0cf |
File details
Details for the file ignore_python-0.1.2-cp312-none-win32.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-none-win32.whl
- Upload date:
- Size: 656.4 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1dc82fa28e0735228ea0d15065395b9bc121a1c079d37521f6fe62df3c6f66d8 |
|
MD5 | 5b1ff013fd8b32e4614fc9e6e7c0f962 |
|
BLAKE2b-256 | 4cc5e81b57a527ec1d2724f72d3d4c3e2a84ec529487ef91537e37482ca52f07 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f55deeb3e389bad7c7d5f614b80e5212d3ab906554e0c9e6c517ac384e5e31e9 |
|
MD5 | 9a5b6c568edf31123f401e237c836500 |
|
BLAKE2b-256 | e2b21dd8bebed54ce0cc6e712576077afabc2870930b9b82b633c0756a3c4376 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec1384004093ae3f63c69dcd95db9b75b8351f8b861ab0b13101f68ea129e454 |
|
MD5 | c633c40705bbb8af5545c4cbc555fda7 |
|
BLAKE2b-256 | 16269a15323aaff5aea2ba233c17d86990b6f1c53ff0165123ab69f7938f75ec |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 590f53615a9642846a4763ec0cce5a013434f077aade9986a5d4ced4173fc8e3 |
|
MD5 | f136adff81df98cd49aeba56468f97cb |
|
BLAKE2b-256 | c5ea66904f43e37cf6b779dde5131b94a58f21243cc4e6dfc0c1d9c84f5e84c7 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7699540d7991a00ba57886e407bb8baa8b31c56dcf81dc26afe9b5d862dadff |
|
MD5 | ce28c838c3ff661691c8663ee90d4b4b |
|
BLAKE2b-256 | 1df04f78353b54e8a5e2f2216e4b3b7fc909c3c07841d1689e6290e2666ee878 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 960.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f33dc3d10220e0957fbd09aa0f7cdb7abba17e884568173605eaa903c09b9b8f |
|
MD5 | e1b96e1713edb2c1c2de335235ded129 |
|
BLAKE2b-256 | 6194870b110d5a4ea68c5b1490194802aa5e338787100dcad6e68e594e7f64c1 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 999.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31b0f087b348570870ae10fbf57093a85c96d39c533d6a58e5c372d6841cfb48 |
|
MD5 | 7fdfd793322482ca80cb23e7ae79722d |
|
BLAKE2b-256 | 12d642ec32e19d5331bd068ec61038f281326b4e37ae95d9f9abcc8858f9a161 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 992.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21b4f9750a6bcba8fbb6b6b55f27d74b67a0833e610733ad65772831fe7ab23f |
|
MD5 | 30607947caca35015103bfc45a98cdc0 |
|
BLAKE2b-256 | 85cb21817020a2ee24001cf48e9cf6dd8c6b10c7b0253b75c18a89fc3f7b4277 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 887.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54d217d0b1a0258fbfcbc2563dafb3ef1be9211c54ae92a27b073b9b418e9509 |
|
MD5 | a4ac39ba73433783b8a1080b4f5de1b6 |
|
BLAKE2b-256 | d8c88e76c50ac9f86ccb90c0995f35bd292011d9d4b1e9cfa7891fb8467e9e19 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 931.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ebc6fa95f4598adeaefdd26a7e29069792a2dad06d14428d86a46e86640b849 |
|
MD5 | 4fb438c5adbc404c65bc59bf69c61b20 |
|
BLAKE2b-256 | e937fa1f42ab4308b3c222be0f85ceea4a79370beaec61e938b417fb29b64582 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 982.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a543a49c453ac25bb1b4df8573e8deb1c817a86888cabbf8ebc9e3495653d09b |
|
MD5 | 2d846bed0aa2628a99131917fb7ded35 |
|
BLAKE2b-256 | 8be0b9fc08e262c0f714c2924c6a3b77114813de3be858212a7a538c71de49cd |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 828.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcfa8675c293c85e2a68957b2e70f11ea19847182f37ed8b937edfca7d103f01 |
|
MD5 | ea57c067875362002c11eef9bad65b39 |
|
BLAKE2b-256 | b5d6b6ae768d64d202f2f9ddf63b5480c50946c4580b885c6925f2b0391fa618 |
File details
Details for the file ignore_python-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 878.9 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a7e3cb5a457f7b06bdcddf32f4c7c5961367ec521bc33e996e1c7e4fcbef485 |
|
MD5 | 4497835bb6a6d0fc73b4ecf00c8830b6 |
|
BLAKE2b-256 | bbee73167e63bc2dce49601329c9e423247c7ebe42777e7d638de5501d2ceb51 |
File details
Details for the file ignore_python-0.1.2-cp311-none-win_amd64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-none-win_amd64.whl
- Upload date:
- Size: 738.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6995063bf444530e38de8a14902bf8befaa093af5cc03343dce2cf1a8d41cbea |
|
MD5 | 04b9f25a7e161418544ce5bcc6e523e3 |
|
BLAKE2b-256 | 938e62e5c59e7dded7594cc076a32b480255070db366314ac46451e44c62f366 |
File details
Details for the file ignore_python-0.1.2-cp311-none-win32.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-none-win32.whl
- Upload date:
- Size: 657.3 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e649801f3216373d2f8bb7c28f026afd63f1fdcdf0125f7acd0950ade5fa96d |
|
MD5 | a61f3ec58900a3508d501e012758ccbb |
|
BLAKE2b-256 | 449fb8724910728346e5e169b9f0b36eb731ee4075246c2b8b688693a9b868b1 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 838b03d767a699fb93fc845407911f131e98daf530dde2a839d1c11591b38960 |
|
MD5 | 538b491af82308f1943c57cef95917c6 |
|
BLAKE2b-256 | 0641ebb1dff6cc9869e3d5a81ffae24a0d8abe8e059d194ea4e7b06dd8cd4d51 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 546641905058b46ba51d68e0ce62b17fed7d5b0e483319ea7da0f6d834d154fb |
|
MD5 | 79f0fffc72ef3910c38baf0ba8382ea5 |
|
BLAKE2b-256 | f925d391c3ec0062b9c33d32ca07c12502d3c0917b8ea3a47cad7a12415ce274 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d8d79dec0e5d3212d490aca4dfc731d7460181f94f73d4b7cf8708dcf0c7522 |
|
MD5 | 307f72fbcd42e6e09f6cf557c747b322 |
|
BLAKE2b-256 | a09ad885a179cded644bd15a1dc8c6cdfed7323b857769003960d968c76d9321 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9037ceb8944e19a6bd17ccd908a3397905ed59d51d8a4541751bfcf7d351420 |
|
MD5 | 5f932e4697dfad3e2d2d8323b9fa48af |
|
BLAKE2b-256 | 746dbb002b261a6478a60f9a779bebf45008720149c29f84ab0037ad669af182 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 960.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6403d9e9cf82ba4d2eb1fe22a34dc1fc9ea718a8f8a4e008c3b9cf8971bff585 |
|
MD5 | a057b8a1563910094f908950dc0dfb24 |
|
BLAKE2b-256 | 793609e28e37a2f65ec465ed0d4186f40a679a5490159fe7860f607659f7e9a4 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 983b786654dd2bc937eecacba15a2dd3695c150821808aaa9fc16eeef9cb4937 |
|
MD5 | dc4603487a25f13aefe411763238de56 |
|
BLAKE2b-256 | 7163ef843e8ac95654ca307b3263324b12b6d298b9b22149fbe0dd179ce4fac7 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 993.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db9645b66ccf10ca710d3d5ec363c1cf77260858b270ef846eedf7b0eca02d0d |
|
MD5 | e88e39d130b9f1d9aa99db0cb0acad91 |
|
BLAKE2b-256 | 7ee6a29f99406e20efdd25b4edd429f036e4f315ffc88451deb50bc0d5ca0870 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 889.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c8981426c4845bb0ac35e3333a4c480285d3ec4bdf16ee1ff2c906114253092 |
|
MD5 | f48afc9f94783f70ddd5b3ddd186d7f0 |
|
BLAKE2b-256 | a2ebcbe7d4606eb1eea9adf7e43fb265d24133244b325ff13be90e5b26c42b04 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 931.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f42906460491351a51dcbb0b5609fd4a1fa019a0263872afe5615181aa59e95b |
|
MD5 | 8469ee63e57f8927b0833c654ec040b3 |
|
BLAKE2b-256 | ada87e427c4df724ecb02cf3303663c4dc198830c3dc67dee357060c7e35ad7f |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 982.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9e45d9450e7c9afce043c5eb7ff7ea087264cc9e73acd069f069087d9efaa2f |
|
MD5 | 8fee7576a4a21cbe2065eb5045fb48b1 |
|
BLAKE2b-256 | 9fa608c6c81837aa7d5a1cd53f09ccbecb50b6ab60592a976b0175b59149a46a |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 829.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c9af111e8c14b2fcdc60f16f53b4776d2ff9d781cf55e5537971b1e7d4fb4ea |
|
MD5 | f682106868e69bb0933a2cf3a00ea37f |
|
BLAKE2b-256 | 0f27f1d10b9654ace7f8af6a96ced3c3be000829a85d944a96526a4afe6651f4 |
File details
Details for the file ignore_python-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 879.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed5877f7ea05884bde9af09b07f20af11c33191a106c6ae1ceff42dee02b49cd |
|
MD5 | 6130ec637441ea65469598b479a2cfb0 |
|
BLAKE2b-256 | f25f08a5668dd5b5ebbea6aa0ce96116cb8f07d4259900e2c48dee11d7916942 |
File details
Details for the file ignore_python-0.1.2-cp310-none-win_amd64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-none-win_amd64.whl
- Upload date:
- Size: 739.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 717b67bf6d38e6793b699da84622bf5b08aa1efde2a1a0ebb21742fcaef1b1de |
|
MD5 | 4ddf0518b2de3a3a75f8b79656e075b4 |
|
BLAKE2b-256 | 09607b7e268be603d87f21b145c9e67680bff8ef5a6d54b0fcdc48d970b71f78 |
File details
Details for the file ignore_python-0.1.2-cp310-none-win32.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-none-win32.whl
- Upload date:
- Size: 657.4 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5574159c146fe8356e562361ff8e2a433800639252b178ac3d196c8d61c685d3 |
|
MD5 | 35bd90f7feb33c3c50c72b4273ae1c8e |
|
BLAKE2b-256 | 21001586be277c33ba2df91ecdfac189be53eb5af3f3dda4f465f20fc1c67ddd |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c64e3961129a28b23124fc9cd40d1b768cc1234cae85ffe00aefd9cdb5fdc58 |
|
MD5 | 5c0f43d6eba95b62a69c447628e68c8c |
|
BLAKE2b-256 | 5a2b2ecbe723053694b6c8c2847b1e5016401c7c86bd3743a68d1056aa595d84 |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56346861b4c2258ff952f344c15439b4b23d3798b35dd90a91e5a80778b8ad7f |
|
MD5 | 84e93c273771ae9b0ffb5e9c990a1a37 |
|
BLAKE2b-256 | 67d47a590eb1b3a59bc09a5d6c1f14c5347d7cb84f2feab6508f1be5580b1dd2 |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86414e9490277f9b388432e7f379b9eff182fc44c25f66160f63f505ed3e06f6 |
|
MD5 | 28dae9cc1392c212cb17da45dbfee149 |
|
BLAKE2b-256 | e3f8478ac586a7aec2a3094a9f8ad0b6254201c51e663bec5ed98b25ef3f5fad |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd3620d8ad78a9631a440fa04004c1e167418983a302254266a9d2c54fb868c8 |
|
MD5 | 1e24a6d7856241fb7e24cf25f561305d |
|
BLAKE2b-256 | dd471bc14c65d54095d388ce84bb2eed16e281da9d76a0dfb8286280013e27e9 |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 961.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12e1f2c65407efd22d3497fea66f7f695da0daca5e22600e7784a5e69c8c07d5 |
|
MD5 | c2598d8e176935f078dbf5d42d05e66e |
|
BLAKE2b-256 | a4e2746195c23494506b3be5ce887a4f1c20f3b17722488b911aeb2cc0e633b1 |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39499f4517daaadccb0266b2846a932a25a3dba6bad49564993f6b9321e151dc |
|
MD5 | 6e7375c38fb16e4fbc5c0a4a0df909c6 |
|
BLAKE2b-256 | f33e89e299a63609380e2265dbc288fbd995b0d42324e1519d5914ea67b47ab1 |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 993.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa82b0c862b215611a3ff7c33b6d08aae724a1f6c1c9779db0c72dcc559d8746 |
|
MD5 | 92ff8082ae935c901cd602a25656b2ca |
|
BLAKE2b-256 | a8b3c5ce90082c1dd1ea9e940c3c36cdb8b5709858960d4a48851afd1ee97040 |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 889.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 802977dfdb7e6424c58fe0d17fea7a32ca477553f23c07157d2de46197e53ac3 |
|
MD5 | 5d9a75086accd8b740dc554025e55410 |
|
BLAKE2b-256 | 518648a090ce165cdb88c959ba2aa3deefa7d9dcdbce97d9b6cb6f9f608103da |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 931.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c94b1fa8cfdca61e3e9ef85c67a1885b5cec8acb06377b5e0e62576981e6aa63 |
|
MD5 | 118b5d9071b0e29edcbf7601376558af |
|
BLAKE2b-256 | cc565f093142f0983167729b882a389146d34ceba9ceaae80674a7822493617e |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 982.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6940196abf85e92a22a35e4778e3cd18fb20721d0a7801c868beb9448a01f0f0 |
|
MD5 | 15ec10ee9948f6f461f2ac724feccb89 |
|
BLAKE2b-256 | 8d8691608dbd03210586efbbda911b7d6a997bd3db9f83349953e3ab3a7b3f52 |
File details
Details for the file ignore_python-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 829.4 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f46f4e71b6c09566a6040ead1f1410d894f564339ad3a35a0e666afdd162e89 |
|
MD5 | 9417f4c7601516a7ef7e8f17ab92454d |
|
BLAKE2b-256 | 9b2b20d4e5e97fa2fa0a9927b8c7cc34947a77f69c65fe1b5f158876e10ae05c |
File details
Details for the file ignore_python-0.1.2-cp39-none-win_amd64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-none-win_amd64.whl
- Upload date:
- Size: 739.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70d53f13d88843978ecd175acae90d6847d402aad34ba70e92b2778a4cce44ec |
|
MD5 | 74af78664a0ab21b7953741313b6f88f |
|
BLAKE2b-256 | 291a32cb3f43a75eb6be58988e8e553e28647f182255a1ac8eae483488ff8e19 |
File details
Details for the file ignore_python-0.1.2-cp39-none-win32.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-none-win32.whl
- Upload date:
- Size: 657.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9519b1f2cb515ae2d0b14b7c0222d98ad979a1dcb661c385db425a01cfa5c76 |
|
MD5 | 743fef847f668e76ef0580882dc13db3 |
|
BLAKE2b-256 | 656d359be8e00282e1fc695dbbff0183b48ba42501c37630bb57c15d46906f0c |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6587c8f3c318552f2ffb8d65fe6183de14987fc367e17f074599f7ba7ba0b1fd |
|
MD5 | 68887a3a9494f0ccfa95487217f7c117 |
|
BLAKE2b-256 | d9044e8136406be1e03d5f4758ab65403a817426e7ff44cad963fa50bc27f967 |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f78d9f2f4a1a2be9142ff006b76e0b04741b26a66dec4974219861e930ec07a |
|
MD5 | 1124f53e01e6c0b05dc5feb878bdf13e |
|
BLAKE2b-256 | d6f8425121420dbad3b92b2c5a22568687b463cdea3b9a90c6c74d5ee2742840 |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36a41f85ebfe5a3e9667f5959a4681c1dd3055e93e7a2f5aae0a172bdb9f9f1a |
|
MD5 | 8fd27a50dc55377c9694b65144e8fea0 |
|
BLAKE2b-256 | c07d6b7b772fd112f09be17cc28a7f497e1280d46b6e173489147519e9cb1866 |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f763cbd991a5370d862f3a9f7447e98cf482d4b8d2c2b7ad5328c4d0f7833b7 |
|
MD5 | 4c4d0a34996bde5629da49ec7d362497 |
|
BLAKE2b-256 | 7ff6178757d1f00df419a474abd56c46ec08e65ee1d3295491dc1bd38a3ff8ec |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 962.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7233a0398a99f2abc6fa7f0d3dfe2ca9413ce3e38b31eed773760df6bc371aa |
|
MD5 | 4ca1ae1683a46f9ed7d7ef0d3dcf14b0 |
|
BLAKE2b-256 | 0c7f55de91014f9cdc7c88c36bd2df9b380a3b0f2f799758da01b961aff80860 |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2975b46115453051fb99e4f214ac695f9d6c99c966b884077ef0900de7eb9102 |
|
MD5 | 72dbeb423dceafd9c27260b9d5d901a0 |
|
BLAKE2b-256 | e4cf19a3e0f06dc4e450363733a166e66828f676134fabea3f111833eb0ce33b |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 993.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3af8a0f23effca3f7f5acbda0ff2f6d53de708eed875b21404ac45a977693daa |
|
MD5 | a1620aa7e2961be70943c3f84672aff7 |
|
BLAKE2b-256 | 91f679d76d1bf03a739aa353a2c6ba69456be5a81009cce5311d4b9d7d661145 |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 889.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cec28f77b87b0176070e7d27f2f101ef7d01e080683f1156d84f8a071c276a93 |
|
MD5 | 5576085f3155795c6b09eccabe0ae8e7 |
|
BLAKE2b-256 | 481a9b42b3cce3de4d31d66643a1a5462f8918a8774aaf8a797f7bdc39f41b9b |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 933.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67738a9495ca3d04b63402797e89afdf103a8385006756934ff0c278433be300 |
|
MD5 | 98b1b89cfe691e11075e74c9ca7d610a |
|
BLAKE2b-256 | 9f611a59eefb4ac4681b88ea97828674791f7ff1860a02b38eb496270a8c457f |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 983.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 985e271aba9d669a60146e39276f32551375a14c7f7d350cfdca587f321271bf |
|
MD5 | 5e745abe63873c135926246f0dc9589b |
|
BLAKE2b-256 | 69e4989fccb041694996a6a4702b0f6c3ec7f1a25aeb79ff8759ee0781a73982 |
File details
Details for the file ignore_python-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 829.8 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 552463f6bddb223b9b98aa4771b5214f06c2c4c4292e42383e5c51956136ac7d |
|
MD5 | c87e34952876c8e46b97b396b97872af |
|
BLAKE2b-256 | 69a6c1d45d7638a9092716ad9d941da9b8422930782ceba3bfa584ce8bc1af89 |
File details
Details for the file ignore_python-0.1.2-cp38-none-win_amd64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-none-win_amd64.whl
- Upload date:
- Size: 739.0 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2ea6181645fc4be4bcbf9f562b06f19d72de4cc0d2a657ea14a8de3f2e1e4f7 |
|
MD5 | 0bc80849a9dbc59585ce4817b7cef6bf |
|
BLAKE2b-256 | d8c889cff6fd32f82ad337542bb9d6d2b40b5ed64fb0b39b336585c147e3873e |
File details
Details for the file ignore_python-0.1.2-cp38-none-win32.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-none-win32.whl
- Upload date:
- Size: 657.1 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2461b42d992b9f40637427b500f5bfff390a63a8563e60d2a32de587f696c888 |
|
MD5 | 75dc1d7678b0d3b807f7cc6304915a8a |
|
BLAKE2b-256 | 260589780428d8f58479b4e9df750ffe1662624ab151025c566a2fcd6bf9fc34 |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d591987732933564e6e3aee21b8b8275912b63e6d973e83c61fae8aad1169456 |
|
MD5 | 7ba32c9f5a0ab0e94590da939640b530 |
|
BLAKE2b-256 | 44d207386f1c9c8602d6203e819a2b926ece8d5f0cf4882add54ae3a33078a58 |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c06b1e09118b74ed4df01e884c16b4062cb24d8692bde48aca7a388fba702480 |
|
MD5 | 18c762036a684ef6c617e1bcd5a96847 |
|
BLAKE2b-256 | 9710e44394a117e29055fe4ca68384c123837a5e2439b1535a1653b149a1a968 |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f71a72bbd103deaed7100c53dfd2a1e79165124f8aca39c37626187bc1a03a7b |
|
MD5 | 1539c5d9bd5f673a30ce4a161863dfbd |
|
BLAKE2b-256 | ea04f4a163c4008d10381628bd98060c14f4d7b6f7879acede812632a9079946 |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2612eede619f9218658f7d68848382a5ab6393654e2f70740165eea4a0e817d |
|
MD5 | 404d30b78e6da0021999b8057792b04f |
|
BLAKE2b-256 | 7089fb683dbd26a8f1eac4cc85d2351763133afd1bb6dc8890713da93ad45221 |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 962.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef0f53609b945ab73124206c764e5118b9cb752126a4fa0da90bb56cbde9d172 |
|
MD5 | 082beb6c406e530d795c972499be544e |
|
BLAKE2b-256 | 80b1531da7b1d96df5d45a52787cf0b16a62507addb2cc214fa0536f1308e625 |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec68d92d2be59926133a042958a7c2bae567ed5ad1abe4ce6bfd496447c999b2 |
|
MD5 | 619112f732b61fd4ebb062f4c822f112 |
|
BLAKE2b-256 | 49a10a056ea1f911137d09e38f09ce3b0dcdad05588b4cab0cd1810430e547ba |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 993.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 081ab554f167b29f7e261b6c5d6fd1ea14cff3d90266c014af437b4912c21f75 |
|
MD5 | e53ac16487272243ce39dcea2569e596 |
|
BLAKE2b-256 | 8e4026db336e071e4373707dd0eb5af4d82feb1a05c042b27034eb52b2ba734c |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 889.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 039062cfbf6ce1778e6484dbac7d197cd854e2029e65d13e945885740fa72cba |
|
MD5 | 1320dd7e517db71b67a22a6b271f61c9 |
|
BLAKE2b-256 | 3a334e87762a66e18d3fb128d39585ed24612fb222c93b17f8b36a5b24674992 |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 933.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2c13adf5f1f4b0fa559279b1bdfdc5197dc7e00d571ba9827b5a0c029f154fe |
|
MD5 | f41ed06c39441cf6669cb53c5c87b168 |
|
BLAKE2b-256 | 522d31cb7d6f441eff168a9812544836a0e9c0c7ea1c6b3ce331db56e27917b8 |
File details
Details for the file ignore_python-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: ignore_python-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 983.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9b82302590403194038fa4887e9984953345d91d4647988d85847636f5aa020 |
|
MD5 | e805a0f3393393b51bc78aa449d09dca |
|
BLAKE2b-256 | 3037330710977f8c4161f8b803279cc5be6fa17391f85d2006baa4f93312067d |