Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ignore_python-0.2.0.tar.gz (12.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (910.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (938.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (910.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (938.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (911.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (939.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (908.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-cp313-cp313-win_amd64.whl (751.4 kB view details)

Uploaded CPython 3.13Windows x86-64

ignore_python-0.2.0-cp313-cp313-win32.whl (663.9 kB view details)

Uploaded CPython 3.13Windows x86

ignore_python-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ignore_python-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

ignore_python-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ignore_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ignore_python-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

ignore_python-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (908.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

ignore_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (847.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ignore_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (910.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ignore_python-0.2.0-cp312-cp312-win_amd64.whl (751.9 kB view details)

Uploaded CPython 3.12Windows x86-64

ignore_python-0.2.0-cp312-cp312-win32.whl (664.1 kB view details)

Uploaded CPython 3.12Windows x86

ignore_python-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ignore_python-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

ignore_python-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ignore_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ignore_python-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

ignore_python-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (909.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (937.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

ignore_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (847.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ignore_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (910.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ignore_python-0.2.0-cp311-cp311-win_amd64.whl (752.4 kB view details)

Uploaded CPython 3.11Windows x86-64

ignore_python-0.2.0-cp311-cp311-win32.whl (664.9 kB view details)

Uploaded CPython 3.11Windows x86

ignore_python-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ignore_python-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

ignore_python-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ignore_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (988.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ignore_python-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

ignore_python-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (909.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (937.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

ignore_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (852.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ignore_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (915.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ignore_python-0.2.0-cp310-cp310-win_amd64.whl (752.0 kB view details)

Uploaded CPython 3.10Windows x86-64

ignore_python-0.2.0-cp310-cp310-win32.whl (664.8 kB view details)

Uploaded CPython 3.10Windows x86

ignore_python-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ignore_python-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

ignore_python-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ignore_python-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (987.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ignore_python-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

ignore_python-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (910.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (937.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

ignore_python-0.2.0-cp39-cp39-win_amd64.whl (752.6 kB view details)

Uploaded CPython 3.9Windows x86-64

ignore_python-0.2.0-cp39-cp39-win32.whl (665.2 kB view details)

Uploaded CPython 3.9Windows x86

ignore_python-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ignore_python-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

ignore_python-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ignore_python-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ignore_python-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

ignore_python-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (911.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (939.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

ignore_python-0.2.0-cp38-cp38-win_amd64.whl (751.9 kB view details)

Uploaded CPython 3.8Windows x86-64

ignore_python-0.2.0-cp38-cp38-win32.whl (665.0 kB view details)

Uploaded CPython 3.8Windows x86

ignore_python-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ignore_python-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

ignore_python-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

ignore_python-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

ignore_python-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ignore_python-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

ignore_python-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

ignore_python-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (911.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

ignore_python-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (938.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ignore_python-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file ignore_python-0.2.0.tar.gz.

File metadata

  • Download URL: ignore_python-0.2.0.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for ignore_python-0.2.0.tar.gz
Algorithm Hash digest
SHA256 8c6c66125b375799a01973cc951931f09ac87c187005e7c44fe9cb9c121af957
MD5 3d96286636ffab2d1d1bcf4fc9d5c515
BLAKE2b-256 5a76e6968b370f5f24a5988a32fe4f2e72c4e4af35ace90ca8b29915a50946de

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 742ef535102f5f08d440bb70336c30f62a21084d8520aecf5888718186390761
MD5 1d928943fa351a4228a1a2c813356c87
BLAKE2b-256 1fcda6d07a64460814d78963aea908bd6b88c93d8f559d834193a9a1f46ac9e0

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15bfaa236cc369522484ec9c67717f41f0bb8db4959f43bd6b6aa7f13444122f
MD5 7af8943e1c852979fcf4c0f769fc50f9
BLAKE2b-256 431b3d4501f72a552a0fc357e905c52a721bbda08a9114ee892e46b22878a2e8

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51288901b4491a70aee4943716f0aeec4692768c978dd69b50b4895ebbd9699b
MD5 d0bdc00444516f266cc9580b51e40b3c
BLAKE2b-256 9efc02a8b93711641cc0b007b02f49cce2b277945246fd6f29efb3637bbc89c6

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1f46b426da50c1cc2471e16122dc89aa7f341c321e7c3b31e0121d1ef058d3c
MD5 72e847a437a7bba9fd207d9dbe126b42
BLAKE2b-256 9d7e2167309a3d35d6031b36456c1aa9eb093370874d16e06d60f6e7c23df978

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b1db995a2a8268c8ee3ca5b14364ebe15b9e0d22af71a7e649dcb9bac8fce3d
MD5 4310e99ac7e080076046720809b134a1
BLAKE2b-256 b91c3f30b3365d987d48f147c72519a0dc65bce940ffb12927879c1ae185f503

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ae66505a19f4acdfd9a3ea439560dc1cfef3f2e969451e667ef31a8d14d7bd3
MD5 a038eaca56d3c2f0620d2cf75d314e8c
BLAKE2b-256 d53d9d64523d99805bc8c5cf7ae67f8d5dcbf58a500f65a58ba697ec6ec6c075

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 090745e2f6ff521353ed0e047ff692683be1149bbf3eb372ca80fb129f38e2ae
MD5 a1941f7bc73b23047e33b7733df1380f
BLAKE2b-256 1c48e6a286040089c257c96b50f9f0239a279686a739b102a0ef2b88f59ddc07

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ebf4e0a538ec133d91e9ae1103a85f2cb35ed9a7459a46e0107c46e4c2058ed5
MD5 4e661070d018324db825f8bf009bfae3
BLAKE2b-256 9b8fce1fe0309c1433efd8caa7af4cf581aba674dd9d8b11226c5b784991587c

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 701e1658d8747a2fb4f7be60e9fcc64529970dedd65c1b1fef58af93e7c5e40d
MD5 bed25a26aacd4d6ab7589b304a17ae2f
BLAKE2b-256 7b7744248eede79eaf34f5baac5e4be3b5d6bb48743081252efc1b2c40d82a42

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 474129d08813dff5cd826f6a883006cd5c82582e21fa4d5a91d6422dd376ca14
MD5 2219a79567f266dff180f51baae84352
BLAKE2b-256 3ae9af7209edad3c28f22274639b6ccc1138318a353bedd79fa3ec35a2714249

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 886a3648fa5dcaf7e20bc56a41e579e777e6d2de37ed6fa27c5f2373cc9a030c
MD5 2e951ea9b6d719ae571edfe63cf3b13f
BLAKE2b-256 812f7dfe132d9c83bd551a7d5df52f993d83efa0dc682affd0c47d4740ad997a

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71eff8df1007da79093f40ee217712093c0585098c59480d4305b044662ffc0e
MD5 e89938bbd02157340edc13665a6741a9
BLAKE2b-256 dd8383328ce69b64657b802bb688065f219028cb9afde50adcdcc989eeb8eecc

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9600f7b5a18e4ea78dc125dd1b921c3615861e318608ae46c902e470d4ea1e4
MD5 f42a18bc9f3cc587935660b8c32dadcd
BLAKE2b-256 4cc12716749f816601bc8fbea82e7e24df43b65bb2065002e4a13a99da450c77

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c7871b153622732f24d119cdd8b83ffec1f79e3661c222a4f7ff26536f1de32
MD5 282f8ee7c2ca24f7055a688cdc7156a1
BLAKE2b-256 122221aae51cb9231229ccf2aa35b13db97d81b508c694f8bc366f5ec13bbb3b

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 290b93a68c8675ef73a77b5c5f8a346e1b2785154bdaa6458c276b7c46f308d5
MD5 f2262ab5e3ed7c3ba5eca0508ee93b0d
BLAKE2b-256 141b89c2cec6ee69a15578fee51f5aee505747450461895fc0f5208157c01512

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca212c574722b25592d65ed9a730938bc28e0af45f3c6423afcf51a4cb87aeeb
MD5 2efea279cb6ef02fddf35a1aaed85723
BLAKE2b-256 49cb773ef79c95e2fe6c9c0ddb9a5ab7248702f70d32516a09bc354da6da629a

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f8087402d0cc19455fb5a13329e663dc8de8999e01211a5e470432b2471f1ea
MD5 2591ea9c6dee68d5df795791d24c0d3a
BLAKE2b-256 cd604ced2fa9fe7a8f42658abe1ade13f99a8c5aa4b4c83228bb75f0eab6a2ce

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e404e93aa37b0ce9d3d0cd01d9b1891f98d5e797a32e6c14e67c4ea3af3975e6
MD5 c85f6856b65a3707600ab37250a3636c
BLAKE2b-256 ab77d6c1657034f39845a3881fa863157a9f2e3458031fabcb4ad55351cd375e

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5b005177d578e03521c81b9d612f683519e0c137ca3eaef20377ee88e609e65
MD5 1c92c15a01c252ea866e02553a746686
BLAKE2b-256 c078fcb097a6ad05f2b3467aed7f83853565e8562549feb0d4031d6358b92160

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c38041b82deeaa9dc655e02c0be070e7dfe3030c869ec8ccff0c15c3f1a7084f
MD5 3240213b7d59315f7c8d10a67a7c4596
BLAKE2b-256 23a0f1fa55fbd538e8448374a1087fba34a0cfcc6f24847e7be48cb206e19225

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f6aafd45cfa8a27a09277bdfec44b717d04c5b629361afd9ca2687e17749b8a
MD5 e20fd8073ec702a2715479545e215402
BLAKE2b-256 95f06a4523e82922b788de4e37b4c2cd8dfdb4add462d0006a89f2a37b26e688

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e53ca818e9d347e2ee15b2a895d8f546f4ec602fedcdf2328c6b55041061c4b2
MD5 590c9911e675b3bfdc53635111537b98
BLAKE2b-256 e10a8565a0f5e546275ff12b7290f1b6a169b06990e0be172471a86b152b788c

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7e9cbecedff22f0e639fbaba27a07b396ff6c9d53c1996e99004193e8d46d79
MD5 dedb07e197acaec36650df2fe393c7e0
BLAKE2b-256 744ac048feafe8e5e99d9cb3f75a5ddb5801ee510e3f31e09d48799e5c6f830a

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fdd1b87e80dd245b7493e892bdb70cfc60dfea50b459d31fa09762aee2fc5c7
MD5 de142465981a9886485c78790e6b1be9
BLAKE2b-256 1f4854fc805e5765f8380c3aaacf2d06f749a5c2ec920d846df8cebe27037d97

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae7e90cce055eaaef8cac3a50d8ed9c6fc4440049458c4ef6ca129478fa39d9d
MD5 b69b665e27ddaa66e768996730dcd9c6
BLAKE2b-256 d62cb342cb79a6b0a7b75f9050d88d22de67a134cffc6f4a5c3015a43ced5328

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe88fa7796f9da3377c4a3d093f1485375388fc87278f15a5930376f84c7bc88
MD5 7f6ff2eac385ab188fb6f4c351b99baf
BLAKE2b-256 bcb26c2edae1b3eeb05c0d950ba71d443e0f8428dc2e42794736c4881e8e23a0

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e9b27e34b6d6b84341851f6e5b2e08e2cbda3f51df092da9a422b7af8952479
MD5 73ff576e9133699e59ecc88c8fb49875
BLAKE2b-256 e7507bb6e1163754496387d5a0bb6b355fc2ce1f7a8e79062f3514b1537aa791

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cb4050ac513f831bce9d85e0f7b4dd5b7543e6f524372f2f989687291db2160
MD5 ffca12bd671a3cabad1094e5eec0d721
BLAKE2b-256 590afc60ef5bdcd8f661ac2420444574c48a473f56c681b3e1aec6fd63b56fc0

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 907280ca2efe14ec79e86327180bbb0ddffa7ec3b392f6adb86e0afe6ba81eeb
MD5 68aad6bdc9c571b20dd4857fbf97a3e6
BLAKE2b-256 8edb6d53f8fbfc0b239d557e603436c97eb1c52979d6fd4e726b2cbc2e9e16c5

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a9ce3f7b3d7fe730c9c1dcee7226db3b98011ae94c2710b492a38b68baaa755
MD5 139c093908769e83eb97e133b0275565
BLAKE2b-256 af27a951cb60a5eaa583689d9ed7dad5b98ee39e23653b710b870bde5629410f

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd047ca64d9623cadeb3284000e12fc9fc7dabe892a4955ed03424c38d0d452c
MD5 8b37d137596faf2e7b35f95f42aab14d
BLAKE2b-256 845aa3bc0ce79bbf1849ce23e1fe5fd4ed828457842d1ce44c140c94771dbafb

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77432cf48bcabed2637a4bf9ddd90ddeaf74e0183154a6d54d9aad630ac51ba2
MD5 d496e71957898af2ecc453e870daa017
BLAKE2b-256 1d605e60256aa80e25bab24f2d9d0e5922886f5dc370923cb48efc31f0913238

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af2baaab39035b705d18e4526708ef8507f0acaef37000abef14676d7596c160
MD5 ed4e906ec57c8033b6523e6526920eee
BLAKE2b-256 c9dad7afdb5cef0f41cd97bb7facf087e5da7c1256e380731b85dc38ce6a6dd7

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c12bfe4e767ecdad8d6f69b3156b5301aaba135ee8c466b8a7ed8bca73dd069
MD5 efa4af69159e63229b864024b7d85938
BLAKE2b-256 3e3bb5a21dbfc70b1021bf396905b28773b8c310aa6e1c027e7059bd8c492829

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7de8bf2cc6cb9d1102a9799c65aebb334280b7883d8ed199ff7e909bf172efa1
MD5 429f9065220357f70628fac646ebd45c
BLAKE2b-256 aa1ce1112ac35e5c4ec08cd6fe9d9b8c2dacef4ad63c957a714cf5c021ee05b2

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ece46a4b6b99f697e3c50196614c8b6d6f35992fd0da14e2867ec8d9f7a6601
MD5 7296d46f9d4a3e099fa8912c3de78bb1
BLAKE2b-256 af696fe786aa143bc26cc2e80af44cc68eaeb5af282fbca14616d5082d2f0631

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7c60a5cdd5fe39ed9f8b543a69f82c737f47e8eaebff415d50b254029d31bb30
MD5 d56a7ef6904e7c5025af39d324606258
BLAKE2b-256 7d8ccc1c208eec348a405330a941b5773400974e747b90dd0006c41c0368febb

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 25e4c6d6f62ee1c370dade0c11c8641c0f0034b1f4f2e6f8b9521346741b1eb3
MD5 a22c84030d89ec9705c2e56ca1c6a387
BLAKE2b-256 7f755192dbbd112f6c5d1664a53f00a19074a671073b4861d4be5d6dbdd0442a

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65bf3c501dc47a40f7deaa47b41512d85a7aac1bfffba4d373589a2fc0c7e3e8
MD5 bb31675b6a5524ef5f7551461e17b8d1
BLAKE2b-256 72b236c85bf99e36c57ed150a02b63e8c5ca9af5175e53ccdc3938094d19f8bf

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 392d14e88ac71ab351c9a27380fc0a237654b8a5b2e4733c5bcbdef16ddadc34
MD5 c4bdad50f7d710a797074b8990dad7b2
BLAKE2b-256 f1159b4976089bb9767c8da6dd33e2cbde50ab1044c05949e6d70bfa389f9a45

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a859095f3607c2335c02a48c85244f6b67dec464bfd0f26f78112d75df02ecb0
MD5 8a1b5a6ec2aa4408aaf5531080d6eeb9
BLAKE2b-256 73640b606c1ca5eaa76f62d211bc52f40513776cc65e399d9925388dc58497ab

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c47be1dc16ea8eeb6f74dd7fc6e0fc5104960f78e78e4f8ed23aabd3590ee7e
MD5 e7204dd2d860a6f075e9d74aca6fce76
BLAKE2b-256 57005cc4ede11e57591dacc8ab2f5208a89201f855f66dc69c627a42af2c8fac

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9fbb7df98bb09f7e1a80bb33417c049c039eddc90f081eb86d36b6f23a7c0c5
MD5 aec4e481245057c2ee949559457f4f83
BLAKE2b-256 f2d18beee917120d231ed88381fa7d72d6cd73e7109a56954eb357a01e0da0b1

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43d8ea0d47c42285669c547b99dfe7b1a6ba9ff86f4a7e1491c4a9e06b9c79db
MD5 8585a2c0d5d2b03717bcca949c5054ec
BLAKE2b-256 69bd86bfd4181d216f319cd72528eb0cec7b1a48f5062131cc56608a3a2ab34c

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05c3c8ef9d241bb69bc0abd66698f8ec97273f7e89414e38fc24de883d0ce537
MD5 218fe99d041fb000e95f7dfceabd5499
BLAKE2b-256 b6eb5ccdff77dcd91e5cd12a478ed09bd219f8ebe29ecda9b4bc25882c7158f2

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11322a38ad648ee033f5a851594d02d83d096566e2c9625ed7ecbbe4142b8130
MD5 ab87f33e803b776e61b252bd5118b3ec
BLAKE2b-256 e387b831db9eba7d56db3f924f9f3399342df092b4926f68ecc62a3a57a1cdfe

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5183dcd0f2e40ac092fa590e4575129d3b08dc6650e51e976ad8d40e7717b1b6
MD5 d7a95ff21b5e0876763a0a318619b2e7
BLAKE2b-256 d6fd43b1533376c47dd1c04dd692a4e3a328bb16677429c590d0a1c7598a174f

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34d3452024c0dd976d97220152b98ba2f8f114fa1cbdc25fc2ff7fcb51fb0bf5
MD5 68f96d6e6ce997d37417925ab2cd6db7
BLAKE2b-256 da345c1cb8a331c25f055654587c398155ee3e3479ac9d2f1ad9637d6288e220

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c1ff88d3bdc433df486d5086262d7f04c9624aa514632734c3cf8b2a8b8dbad
MD5 af3d60e9297f3ad9f056fbfb9deba807
BLAKE2b-256 acc7dcca3b0bd41d07ecd70571f85f29957286f0f876f00f53e55e4d8cf78a68

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b3e1243408b5b3610c9932ed43244a42f2dbf158e2884a18937cb8b10cf42f8
MD5 da7cdf620608e254b92353841d3fd722
BLAKE2b-256 01aa6e99a89d88b8c70184697df04982b8a3cf9ca95fb3baf406f34e3387636b

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 419c356166fee4ec61b70701fa7d2faccc0a90b00a295e59e432437461a2530d
MD5 0ddbd70cbd9f089d03ffd80f9c0cc387
BLAKE2b-256 7c2e8dd3c7de299b6bb04a3a66865481ee251947c013182619c97ccde2c2ed93

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 283d51a14c81aaf666c46421e40aa3cac8c1584d60df19e4c6efb0aa8c712302
MD5 4de5f8b28050052598e79d50ff9e2b58
BLAKE2b-256 da682ba5aa9a29b7a4c2fb0d7c20fe0f58080b229da3a88c6aee06c9b54ed705

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13827b2332748cbd2132bc36fad3c01e5dd01f95961d52014ff722030052bdef
MD5 54a13a7a26d226b9668786be5d92fa7f
BLAKE2b-256 388d6722e02132f94b28a662ae8a0874b53dd7f6a54d50063b16d4c05329f5d0

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69ce2d1469b18b0acf86f78dea6be8936f9850dab5b88b3184814be934673d82
MD5 05df0982125eeb21c4cb0026543f8474
BLAKE2b-256 01b547277cd0938d47d80787f9c58890b782856694a1fbd3a789676b7f4323c6

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b956975a1532627ad44599c4a266a53817ae02f5a62bfdaa4ed2df15bdb17a1a
MD5 3a9123cf971a46cea2998174c5457181
BLAKE2b-256 c863e32383c4077805c18df1e25784755a08ff022dfd3218916eb48f36066533

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20881bc404afbbee5e54aba337b978617868b461e912a53bd3d87c77878e7df6
MD5 d789caa66007540288cd12afc7caf52c
BLAKE2b-256 9cb5bb1279f53ce54d0a4dc1a17c4245fe6cd14da172653cc4565a2d98eb7d3a

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbd823d9ef69c47b7840ac128974586b5e7e6515683613d48df3564c0837a821
MD5 a32fa60f369d46059a21b6fd4394c1d1
BLAKE2b-256 46a00f81cda2e475f8e289041c7bddbf612457760c8041cdd375804326d12401

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 382c439ae33ef8e87631cfa03f0a0c0f927f6a95a298b761bdb28acd16a569f2
MD5 2417471e9f2cfbc2183e7e3dd9326d56
BLAKE2b-256 bd82e77bf1b3a973a40455a5333dad42a6f8e62ab97b8b94a240e77030b01996

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ac208619d18cb8434a7aa49d9dc735a31e512012b05fbd49530c62d64e12fc9
MD5 8470a8fc9faf77277da6ae7c3b1e6a6a
BLAKE2b-256 7f14b5839520d5cfe40b872daebb5c27e2ef45712614ba3c9805d33572288beb

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58d2bed5a2df66364de653563e91dc13ae8582fa1817acdd7fa598c90fb24344
MD5 8cde930aa5b13146d02cd43233807683
BLAKE2b-256 bb2185c29f99000c692de2791e5c4b83daa517d08e39cf74455fb58f878441d1

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cb895cbf379f367ecc91835e6769491c19b879fbd050e4d4ed66d92c14a9a11
MD5 aea7dbebd67aa57dea861c9d1123e24b
BLAKE2b-256 f072ef8e88c5e2ee00ae05196c9e1e1c19f9f6d1507f7c331e2c814b266b164d

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dbb0378e3a2a3172163cdb052fa377ee0cf6ed69644e68e254d8398349a0c8b
MD5 8c503eaedc60f0d984adb5f0f040de01
BLAKE2b-256 d066e8a02db7172d3f595e8479ab97be30cd2273c5918ea6efdbd3fe2442b15d

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7486e61ef4b9e6dfd6b77830a6422dbee8026df2096eb273b68cf74c824fb43d
MD5 d24bbe3dc6d973cb0f225a48c29bac11
BLAKE2b-256 d54eb2eea64401a3177cfc4902c7a727a370a621a1531e96d7cf3bf9f1235a9a

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18cf581b1ed1117485ea93581a894fee0f59eb4b04d579156fb6dc9ed63794da
MD5 a972f9ffcc911659da78ec9c07872e0c
BLAKE2b-256 667f0c8803c4f71cbba4433f2b34c4bbb93f2764096bb31e2367dff2fd415d64

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4fab67e70a281aad3c698c5d257f28c5ca933c28dfce9fa05b45e494b65599f8
MD5 ffdd991cbec782c98a37bc4bb7b663c6
BLAKE2b-256 c4a2370872616ecdf8752ab34ebd47004bc78139c460eaa7cd0d46b6b55b3daf

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 903ab084c23e66b355a86998bcc10ffa5f96c49e48a87447aafbe447fec4142c
MD5 805d184bbd4bb28f499446c957db49d2
BLAKE2b-256 ee49d3c9caea93798bd7417264506d578ac457e5b4b7596dab263213f84aace7

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46b0231f1061d65520227f7af087de585800103d38477e6624c86337a40f89bc
MD5 8def9a3491236e069bad3caa44ed0124
BLAKE2b-256 6eace70aa3c95b91c0b7089003b0c6ef20bcea3cd6c4cccd039168c371f3a247

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02bb6901fc5d08b197fcd3d9b52d68ebbe3f6d86abecd6c2de49eccfe7044ba0
MD5 09c38b5cf79a9d3d623b84ac03d3108f
BLAKE2b-256 40a14a84c5595ae45ba2bd46963b70b75afe345e1800d69e2dfebe954ac6883c

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88aa24d893c6f0fe206365e5962a7e485b933d10fc27aabffb348d1fde9d3105
MD5 4bbc210f97d8afdb09c40974b6490eda
BLAKE2b-256 ff8e63765ba3c89ca164bdb811586ecf54aa01035dabb5d17b79cbf131dcc0ce

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 985900c534d80e1016bb2eace6c6420089a513cd1e7720923b92ddeb2dca6231
MD5 e924c9f72d41b94573199462324ddd09
BLAKE2b-256 765eae4c2c8ea6358f87afb91beef6f2c7d982fb00e3541a4f0ab9bc7f0a0308

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0890d95efdea438b5426d36dd2f08f042f57a874a66428e1f745e585f5728c0c
MD5 4dc0a465f86350d2bd4791a3135a3006
BLAKE2b-256 a7753fcea464640158f8906ea8266a6d12619860e9f6933c350dabed62200c35

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d4f87d6974e1e3396775c11366ed4770e90a48687ea89a87ed2beef7a720c19
MD5 b33aebd36bcc3239912fe4f33b413cd7
BLAKE2b-256 36f0b5b66d509fee74ffd4581c47cb0aa4aefeb5f04ff30846df67a84eeeaa0b

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db9fc6bcf3a92095cf12c5d9335ee6d999c62c363743a02c2ed912da38d1cdfe
MD5 e42417c54f10d34bd7b7a16f05e83193
BLAKE2b-256 2b5a35946e421564b2f844e40250e4caab3153fb22d478600c49a84cc90ecc6e

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba3d2ceaeab9eb24be3f26b0e81477e13d17c0f5dea9ddc2742babfe4f25c2f3
MD5 1e7431b8046ed6896d4e2488b95b8ee5
BLAKE2b-256 2a9e32464b731f3a18473e04721236b166b964c52cfdcf6082cbb4e1750d33ff

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 420acc0b0939d4a636a29ff5fc03febb78a2c83d9e67e9181a91545c1161203b
MD5 ec49c626442032e0b5e00c4ab07740ef
BLAKE2b-256 77dbd57fc05f96735eb3008b638e3f40c208991d1d6a098c4231a396c467fe5f

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 50cf1f6d59c57d7b4acde9f7841131fd873f3ab31751ea9ed64f6beb2c3d3480
MD5 cb502a8d7270436510b3afded626a917
BLAKE2b-256 9ca4f14af5c84b9a35336815223043d3f30fc169d6c16cbda8788b1073b1f51b

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21e6fc33392d7defad8e6dc1a753ca010e70802ec94f3420bd2e39936a5f2d7c
MD5 ce934d3473d4c2b7ab61923d7b2d650a
BLAKE2b-256 5a8be43d1bc67e3fd0b3231f053aff1644923fcad6f0f5435d2cab68a88f7a6a

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8db452452f88e852862aacd14324e28e17f91a296b8b472ebc1bb1cc558b87f7
MD5 e34ca224426e6eb9e9a1c1cdbfbd1879
BLAKE2b-256 dade2316bfaeb70708e50ae704853aa39d32f63028f663ffe1c59ed5f87e5cb3

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 196917efcb7f2db55428803f725e618cbdd1bd8f946472c5a5e0adb3b48f7566
MD5 dec18aac03fc36c7366cc2d4fd6bf1ad
BLAKE2b-256 0aea570fd4a8d8166eef3d60242a1a739ae8711a444da91dcc0c26dcbdcf6ef4

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 be6868df5053f4ca85f83e9c130aa11593ecd0bda94db28c46f6029b5cb6fcb9
MD5 ccdd7f86daaaae01ba878b6cf2f9c838
BLAKE2b-256 04a2374611d072a588b8381d7adf4a77c89ec2be0f3d8e2677e054191cb41354

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3798389ac66358a4b3d5caeca7c0bd0c65fce597411117acb4fff38f542cae07
MD5 4b93ab5ffdfb8c7dddbfc8a74c72d313
BLAKE2b-256 d0ab1043857f9d4d03d36fe11bd50edb3f90e2773c9a6fea05f7afa040bbf972

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 697be355c03f5ed3b4e5d5328b9d4532f27fd201ee582cddb4c07f17d1e91ab4
MD5 5ea1ecbd66b09e84e05c5289998bbd51
BLAKE2b-256 69bfc0e54f3b32f191af1fd8df4101d37b78c47b937cca92a662d2b56cdb1554

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b094f23ff0e0a47646770663572853b82cd654affd4fd9160a0732c3d58c80fa
MD5 e1014faf64ff2a7a7c071e85ece0680a
BLAKE2b-256 9f8e0d3871815b8764defb06b205ac6e48bf4c50a7cee0b089db15c6d6865653

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63b4b9c908c5b638e6d86496261efd50cfe1681b042f4a442fab49d0d17aeb12
MD5 4fa6423ba71fe7d9c68efb34263686e4
BLAKE2b-256 6cff1d845e388be54974867fc4a68f4f511d09a714fc5d1edca1d948f86127e7

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 594603c8f66b7c57b9583a18c295799d4311e92681fd118569f1ebc692ae3463
MD5 d4d6371156af770d6e793513b6250474
BLAKE2b-256 cb80e0577a809e7cf775be519e4ad0799b0349cb87a88c7a73702cab7985dd73

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 973932c6a6c805ad485ff79bbf65cb871cc7b9cc47db5fcfcffb616e9cc76514
MD5 5773d2f6f1d7d2531a46219f4c1468d8
BLAKE2b-256 fd3dff867dac3833dfb1e667e53b8cabdc78fd1a44dde10a0444e9b3d8b35179

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d087912792c8ea54d4b0d859567b07a30630a8d61d88584b8d3cecb096915408
MD5 8f148f19925b45dff302cb313b170108
BLAKE2b-256 af62fc3265fde4890cefebe09487ef4b2581296bc0647b538462bb8708a045fc

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb5901f38cac536aa523848625d37c4a5ce39e93734c16cd7fc52f07fb1f9621
MD5 e08691d3048f6adc8fc3b6475395d17b
BLAKE2b-256 42e0a3fff12d33e745e82878183e2fda147ce4672506d34e1d71286756f91c0f

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7710437e1f30f311be88c6e8ba179eb49776334a6f09eba62fca5b36b8718c71
MD5 f39f11dd9b0e94ff4bdc75d76de9a4a1
BLAKE2b-256 f3ff0f4eb8aa29228fe16febb4b833f6eb7268bb9e3b1a06c75607f3b7ef93f7

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8723e4b97aa17cb86e206cc678dfdc4f292a3182495abc2de9164399eee7f55
MD5 2e6910d5d8572516d429aabb7cab5fbf
BLAKE2b-256 3382e601d1bcc049bf9ad157bcfd8faf2eb2affe0c5cee9f902ca46e3ba1a8ab

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3c01d6aa6a70691b17bff5fcc9ba4e1948f153ee4557bbfc1b466d93f5e1d094
MD5 16a0a8bbcf487b243c4699c35bdb856a
BLAKE2b-256 515f7f5900b224cdaaf4b090a5efa4ccbeff73231b8b548e66cee5e8fc51ef36

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 37f7cea5d440e78fc69240ec7bb71631b63b323ccbc775ddc7c8102ac997ee18
MD5 2343d3c78ea02c542a2467cd2c38c46c
BLAKE2b-256 a1ad2aa5211b85f3826196cb41d641c024b61fe2691c852d7f665178d8df0978

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff58716ade86cdd58302c4125b819f35ba0abc570e1ecd28c504045c313727be
MD5 b9302f9ccde97507ac173ab73934b10d
BLAKE2b-256 479b4028ccdbb27917a408e44449e51e78174a2613bc50c4747e4cdde3144200

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 495b675b442aa4cb00eb81fa0fe7eec728edc789f23b0c31883a92eca240de1d
MD5 498b29a5372e4e4897aca849e913786e
BLAKE2b-256 92bf0fbf9461b2c3eaa68ad62e703756e2292c628202884fdf276956deb5d3a7

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d177e875315249878b1d4f292dccdabdf1037c35f1cd587f8fa0bdf7997f22b8
MD5 7629fc8e18d2137999762de09af85d17
BLAKE2b-256 cdb6bc06d312100d30319dfcb3e0a26abd14cfca9bf5fc4ac84e8fee3208f9ea

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc3bfd2f959ad31cbbf3ad26c31057b874364511bbf514a774db51c5ea0bb63f
MD5 dbb91609407cefc3d5018b8ad0eb13b9
BLAKE2b-256 c50c5a0f8f503810ab701e9a59b11834ed7ec201079815910bd1d065e81c8c1b

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ed4a1592b882a945ae3737c90b7b420a234c26699fce9dcc983891c8697ca97
MD5 16ecf03bac122b7dcbdc50c7e7862316
BLAKE2b-256 0352be28633ff4eed19fac2aa4b477f0e329f314babdb58e2888b2577a2e2bef

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 607517e5a194973b437808b39091736f4337151178ccff3dd5799210fb22f67a
MD5 57bdc712a89068a5608fa48593e18bb7
BLAKE2b-256 b7137927372d1b8c0d3054fb91120c60164260461884b75d1afbfb8dbc69f706

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48881ef99e464509f2cf7941511de4ec3362be7c47024e29d701835bb2d87623
MD5 5199f22018c5ab39d2f407682db1dd34
BLAKE2b-256 f0a0fb0733f717f96d449875a0b1eb9618852b2e02a76c6a5ee9eea2a413926b

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c2e18b1652ba011fce9373be03115ca8cb79de121e897573c56ef05542d5722
MD5 1b26425b708993906a82392fe52f9b88
BLAKE2b-256 f9fbc8ccdea0bf1e2942c3aeebc3fbe72c147a6933e29d5373779b26c5c3090c

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a82cddcef68684f85f83a1ad228a5f127a2327955d0d015e30d1ba11348e95e6
MD5 cdf397ead55ab2c086c32afebd8cf7ea
BLAKE2b-256 51d3c17b0a841e5b11a397f35358f16aa8df012a5b7015c30e9f0286add6bac4

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f13483f81859df6493262c73894d60c9fc2ec245c9dd8485bb24e4f5dda917c1
MD5 e677d509011a1d186d7aacaa1e752bb7
BLAKE2b-256 8f41dac6615e03abc2a50138733b94d4ff2e691b25c1231ac0049d837962a4bf

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d21ad27c38f576a09a28575726c28eab3c1ff17362e443a5d8a3fa29646333e0
MD5 34d1b92c21a46796eb8a31512bb33dc9
BLAKE2b-256 b4f2fac8293c9bee8b56d49409d6970987f77892fc951025da77581f09864326

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3b5450ace0a657c1221b400081f55596c9774014594c040898ac13acd7cb1847
MD5 f695f6815e5e58660e2ee44eff757e98
BLAKE2b-256 7d0bc79ed70bc88f28689e4b62104cb8037be79c7856034d010ab01608a247cb

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54e43d61fb4799fa00043b7da0355d43e6979a98ccd8b36c374679082caa7e63
MD5 3723af993a867c2215bcc8b0283bb419
BLAKE2b-256 db43e97b21b1d6a6cd23d1312aef93aaeff481e6ff3711e2f0bfd3c6422231fe

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd578411c1514aac0f663414bd8bc16a73fb30b6b6bbac6aa11bb286daf18eab
MD5 6e8c3cd70f0de484feddf0ed91283913
BLAKE2b-256 aeda4f529eab6bfe69210111b57c117df80930836166ef58ef5b2ab3d2e2dd32

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 965a63f0567e1dbafb7b84b991eb16a9b93226484f40cbaa4a152625672cabd4
MD5 c9b83d2bd03f687b1943cea39c4b6a5e
BLAKE2b-256 5015ebf56649438caeca15536378923f3a959bd106ab59620afa130e3ecbe098

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59c083350e5c7be2a3e8be6ff2a241282061250fdc10b133770d8f3888763126
MD5 4bcc14ba267203a1c8e9be169e07de80
BLAKE2b-256 b74fa82dc0d715131813c4eee74720a99f8183d05e439127e713a1ae8ce34e11

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9f0da4798110597df6f914b0eca90605e3fb877b2f4fcb454e55994a979e0d8
MD5 c40514bc7d177539ca71134d9c827b3e
BLAKE2b-256 86eb42e204f49d0ee86dcc209b416363fa4fd458b24f8522fbf25289ea8de508

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0460582f65c49b1b48fd423bf9b743f8ebc0a1a5f76d0b23250a09009270331
MD5 5515391b54423b807b335a03fa4c8ae6
BLAKE2b-256 33bde903e4c4b8beefb51cb954537ee04b028fca3f7850be6beaa97346354874

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0358429fe893cd5635fbb2befd19dadf6cfccb4acc954a76a38e0d1250d14fdd
MD5 b6d5d23c732c3a94544026b0cd1c2a60
BLAKE2b-256 bbdab01476ecc590431546477da8faca6bea6e17629a6e6c99f0e6bf4a909230

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e1ac6e3db90ea747024d2d4602a4b87cbf7c6777a9925fa5d747b857d64740c
MD5 d916569372673d8bd01789772cf708dc
BLAKE2b-256 42503272f356079bb40627d6d9e039190312da030f1b9fd10401b2bc507b62a1

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 218e8194fb697fdee47c4f621814a55b08e82de82ab907b840cf81fc93ed0037
MD5 9bca6856e6ce96a055791d8eea7b3308
BLAKE2b-256 85c30396861ea58eace6520193e5d42dbf34950850524240fc3bbc67eb866687

See more details on using hashes here.

File details

Details for the file ignore_python-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for ignore_python-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1213cd1ae0acde9acc2d3c4316ec3b27a00ed80b577461a48e20b844155391b1
MD5 bdc51308db742e61bc7351432409aa9b
BLAKE2b-256 289976759ef8be2bbe420a3401d894f2d646786c7292d80a06a2dd4906a82397

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page