Skip to main content

Python Bindings for the ignore crate

Project description

rignore 🚀🐍

rignore is a Python module that provides a high-performance, Rust-powered file system traversal functionality. It wraps the Rust ignore crate using PyO3, offering an efficient way to walk through directories while respecting various ignore rules.

✨ Features

  • 🚀 Fast directory traversal powered by Rust
  • 🙈 Respects .gitignore rules
  • 🛠️ Customizable ignore patterns
  • 💾 Efficient memory usage
  • 🐍 Easy-to-use Python API

📦 Installation

You can install rignore using pip:

pip install rignore

🚀 Usage

The main function provided by rignore is walk, which returns an iterator of file paths:

import rignore

for file_path in rignore.walk("/path/to/directory"):
    print(file_path)

🔧 Advanced Usage

The walk function accepts several optional parameters to customize its behavior:

rignore.walk(
    path,
    ignore_hidden=None,
    read_ignore_files=None,
    read_parents_ignores=None,
    read_git_ignore=None,
    read_global_git_ignore=None,
    read_git_exclude=None,
    require_git=None,
    additional_ignores=None,
    additional_ignore_paths=None,
    max_depth=None,
    max_filesize=None,
    follow_links=None,
    case_insensitive=None,
    same_file_system=None,
    filter_entry=None,
)

📝 Parameters

  • path (str): The root directory to start the walk from.
  • ignore_hidden (bool, optional): Whether to ignore hidden files and directories.
  • read_ignore_files (bool, optional): Whether to read .ignore files.
  • read_parents_ignores (bool, optional): Whether to read ignore files from parent directories.
  • read_git_ignore (bool, optional): Whether to respect .gitignore files.
  • read_global_git_ignore (bool, optional): Whether to respect global Git ignore rules.
  • read_git_exclude (bool, optional): Whether to respect Git exclude files.
  • require_git (bool, optional): Whether to require the directory to be a Git repository.
  • additional_ignores (List[str], optional): Additional ignore patterns to apply.
  • additional_ignore_paths (List[str], optional): Additional ignore file paths to read.
  • max_depth (int, optional): Maximum depth to traverse.
  • max_filesize (int, optional): Maximum file size to consider (in bytes).
  • follow_links (bool, optional): Whether to follow symbolic links.
  • case_insensitive (bool, optional): Whether to use case-insensitive matching for ignore patterns.
  • same_file_system (bool, optional): Whether to stay on the same file system.
  • filter_entry (Callable[[str, bool], optional): Custom filter function to exclude entries.

⚡ Performance

rignore leverages the power of Rust to provide high-performance directory traversal. It's significantly faster than pure Python implementations, especially for large directory structures.

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgements

  • ignore - The Rust crate that powers this project
  • PyO3 - The library used to create Python bindings for Rust code

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

rignore-0.5.1.tar.gz (13.1 kB view details)

Uploaded Source

Built Distributions

rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (940.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (977.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (966.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (865.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (906.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (959.2 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (941.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (979.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (968.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (867.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (908.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (960.2 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (979.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (967.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (867.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (909.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.5.1-cp312-none-win_amd64.whl (717.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

rignore-0.5.1-cp312-none-win32.whl (639.9 kB view details)

Uploaded CPython 3.12 Windows x86

rignore-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rignore-0.5.1-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rignore-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

rignore-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rignore-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (938.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rignore-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (976.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rignore-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (963.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rignore-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (865.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rignore-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (905.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rignore-0.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (955.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rignore-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (807.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rignore-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl (859.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rignore-0.5.1-cp311-none-win_amd64.whl (717.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

rignore-0.5.1-cp311-none-win32.whl (642.0 kB view details)

Uploaded CPython 3.11 Windows x86

rignore-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rignore-0.5.1-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rignore-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

rignore-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rignore-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (938.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rignore-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (975.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rignore-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (964.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rignore-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (865.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rignore-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (905.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rignore-0.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (956.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rignore-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (807.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rignore-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl (860.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rignore-0.5.1-cp310-none-win_amd64.whl (717.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

rignore-0.5.1-cp310-none-win32.whl (641.8 kB view details)

Uploaded CPython 3.10 Windows x86

rignore-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rignore-0.5.1-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rignore-0.5.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

rignore-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rignore-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (939.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rignore-0.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (975.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rignore-0.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (964.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rignore-0.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (865.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rignore-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (905.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rignore-0.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (957.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rignore-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (807.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rignore-0.5.1-cp39-none-win_amd64.whl (718.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

rignore-0.5.1-cp39-none-win32.whl (642.2 kB view details)

Uploaded CPython 3.9 Windows x86

rignore-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rignore-0.5.1-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rignore-0.5.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

rignore-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rignore-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (939.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rignore-0.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (977.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rignore-0.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (965.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rignore-0.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (866.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rignore-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (906.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rignore-0.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (958.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rignore-0.5.1-cp39-cp39-macosx_11_0_arm64.whl (808.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rignore-0.5.1-cp38-none-win_amd64.whl (718.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

rignore-0.5.1-cp38-none-win32.whl (642.0 kB view details)

Uploaded CPython 3.8 Windows x86

rignore-0.5.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

rignore-0.5.1-cp38-cp38-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rignore-0.5.1-cp38-cp38-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

rignore-0.5.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rignore-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (939.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rignore-0.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (977.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rignore-0.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (965.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rignore-0.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (865.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rignore-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (906.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rignore-0.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (957.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rignore-0.5.1-cp38-cp38-macosx_11_0_arm64.whl (808.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rignore-0.5.1-cp38-cp38-macosx_10_12_x86_64.whl (860.3 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file rignore-0.5.1.tar.gz.

File metadata

  • Download URL: rignore-0.5.1.tar.gz
  • Upload date:
  • Size: 13.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for rignore-0.5.1.tar.gz
Algorithm Hash digest
SHA256 4f5bdedf02eaf94fc7550405ae2bcb75bdc6449ae1deb2dbea61c8a97186f7ae
MD5 02ae2181a94ee24ff318d894adeaace4
BLAKE2b-256 b8b50cc12425622a143d5c03ac719e8ea5e9afe5a342b4c00ee30f3f3b86b9fc

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5944a628e9586d0c012b6654e4614fa380973189a922702df1a9c92a31730d39
MD5 9d5ded1bcec8d51a61fe4fcafe093af0
BLAKE2b-256 20c763395e7cda75e97e3d17f5464d14b775bf4de16da110f4d23e343f9712b6

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66d0ddfe0981be8aa47d5b4d5f4562486e3decc6ce152f223c396a455b49f028
MD5 2b79cd8dc4b3fd771e95727c03f0606a
BLAKE2b-256 bd02e4bc72168daf6596e5a09d55e18928da2b8a372a326ed18227d7c6a686b2

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b3210333ea3717284832afe0b057f3094e0b611c7a758e39c205228419a44ac
MD5 5e37e8a44f801372e8eff934b42940a2
BLAKE2b-256 d7568a0de8eaec9192a67f1a85e335072dba26be0f2b6c8d0444ca6892b28a24

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee964931cb6f241263756b8d203c30a54ceb88da0d5ba21f4e1d26a97bda4db1
MD5 f85be398fa61653fbde6a028b6a4c386
BLAKE2b-256 73938b7c2ad0b67abd79295e5cc4722312b51f3fd8ab08480afd4d87ef08ee4a

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 920fac4ba44065a0158337004ee5e051243d79df278326763686efc3d00f2663
MD5 8cd1c34b03444f90abcae090ee002fb8
BLAKE2b-256 4254d87517404a30c3aa09430056e00b6d33beb8b438fea7076baf01db21c59f

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f1e62bc1165bda9d346b5c8eb6363f6eba1665c5f1dc38fb5845bbc6fc37900
MD5 5fd2acc9568eea39a41386a9c7a5728c
BLAKE2b-256 d9ccac9119576440c12d031473ec24e164bdd6611a024f7add2b6f9f3719f136

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ba4cee9a96fae66187c9cac3c19b47199107d2e5a675ee8befe17fb846dbe07
MD5 446a7a7afc377da6579633ea0e454863
BLAKE2b-256 f5abe221e00638fe9582eb190e769d709e72eae2331b4f016dc03bb40f59e1a7

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f694d3d682f971ac6356ef545defbc4b4da129eb81f114649a7794aa75f87c6
MD5 f17e6e3ebf82f616f4584377eafe768d
BLAKE2b-256 146cba6357f90eff8bcfba7694fb12c83503f58d6f99feca026f27b88b8848d5

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5b011bb02a9a991935bdbce4f24fc51dcc58d0fb94690750bd9b4a64aa557d2
MD5 75bff5ffe639a19aec26b6ccf22e7739
BLAKE2b-256 4c6ee0731121d772eb9c9ae3525d2a06a1549e937699040f81cad7284283ce47

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 907e0f6e22e0fc62b8dec36dcb68b1427acd5eef00627ea0eacff0887ca56ff9
MD5 c005ebf481f72121f1a06ea2beac0d34
BLAKE2b-256 221e39a899bba72b1c7c3567a9cedead480fdc2de0f1cea88be69ef36e9a8267

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47663b6b19d908d5edd3da3920a9f1ba9b0e2195d6d36e3889ec942a1d3d7249
MD5 5135a576b8568d06fe2116201f67d410
BLAKE2b-256 2c88c13b2754d468a3531b215f2109851c036cbf223bfd0add74da5e45dc8605

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c62af30b52873671d460e692f10ad5df8247b557e3e2de9a46df4a09b00837c
MD5 9efedbf068cbb371de77b21e8bde0e36
BLAKE2b-256 d0291e1d812e7e613f5e03aad7d3de6c05515bff3687911e3c8fc421018518b2

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b49ab8d2abd743440ef5c0ee35ac0d8467eac4ef2a8fc5b48f1e6375f114375d
MD5 4ad2b1c74ca81917fb7a240c15f3b68f
BLAKE2b-256 4088c4951045ecd625d35c48949633caa4c866216281330363c8ce0387796e04

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67027c8505f0657c318ecc9a26aebcbc559188a245c99bab8995f8adaaee9a7a
MD5 a011da6ab7ee4ec9c4cc8365f4ae7cb3
BLAKE2b-256 d4ab99a055846340908e0ac24e0f6d1db707a12021eda27263b7406149f56431

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fdcc3ac804adc16cf9f0ffcf35bac25ee1118f01310dc99e361f853163127b2
MD5 3d70c10a07f0cbe714226fabc7802750
BLAKE2b-256 b2e6a798549320118ed982c2ea667db8ef652a945fea67435500c72ddeeb1d85

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b198e9c18cd6c316b03ccf3040df00f71ca2cd864d17c37a1ddcc1f2a7f26d0
MD5 b8f8cfe2c0258289d7f1f98b6ef89f75
BLAKE2b-256 99706dbdd03e244f390dfc8741681b41b1f5a16ecf10fdf2d6626f9a06968caf

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12f12818eeecf2be33e52c2a9c3a546951b0a4f7e2b0e7906044fc26232fd9ab
MD5 f665286913a3797b5acf8eef1916b5a2
BLAKE2b-256 d6ddbb6ef4845e95909d94b076c0d580f8e3e5dd7237017e588a5d87b4ad8186

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd13ec210c18b544cc9bb432c3e5d5535e7bf8601f18875ba49de51c698a9216
MD5 e10b2098cb4e3a73d932c17485e570a6
BLAKE2b-256 27eb0b602aa48e0f37b2e3b1c38679d87787b1d52d2cce98cb51a596eeb1198d

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 becf9b89941af31670854b7bbe710bce51c664aedfd762e062f8b921d35e49f9
MD5 9e95cd774321af0d8e978a2eba590fae
BLAKE2b-256 e87ce6dd0d974d67201782c4a279360d0ffe29749107a3a5ec35e5eabbe67ba0

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2077583133bc3135f55a1f5027bf00063303d3f421a06ab1669d04653ad3e953
MD5 c763772981659b5ac470267aabaae407
BLAKE2b-256 77ea30792b815b0cdb08b6411600413f10ee8a8daf9e0a51990188e8e4cb68f0

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d245035815d92a7c4b412386f01ddccc97f2bd3f1b98ebc04a5aabc670e2b4a0
MD5 3eb89fbbfd3c5f503e362479f78d4ded
BLAKE2b-256 2670b94bde78c5fcaab1f642c3cefa4755d9821de36592b630712433d9f3eeb4

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55dbad6789ca1f3e01df3eea22dd74d0abece32e78e55f0fd0a2afd41e45f4eb
MD5 1ad64573768d120026bcf123731da6ff
BLAKE2b-256 43cba66f2148032d36842434d9161578d10bd83687d89d8cc30bc8f5ed927d35

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb0eee2c35e11acc1fa0a09c82820d79db5dbfd9a1dea9ff7ae99b9d3d54a614
MD5 0cbc006ff9d1022edd4b8b337640d5e6
BLAKE2b-256 a2e569fe2fc897a4817228f07df5da1c8fec4e8f93ebfec7f394ac4165c66576

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea92b67713f22da15ddf8a5a67ed26dbfd26ec9df855d07c8981b61b2385a58e
MD5 5b194c60ab45171838c2067541769f44
BLAKE2b-256 aa68686d4e8369194104c545630092c0693e60b6226e52f7e33321b07c4bac2c

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea292c888dd9e8a1703a45a9bcaefe4ce855457c9525e7e5e03e263d5e957c60
MD5 a04ee21338fe5e49a86a92c74adaf9ef
BLAKE2b-256 11cc377bc07badf419aeee71d5ed7083b1f8fcf15a1acc28fc441c680a5e59a7

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8570a8ada18256cd18aaece471930e3ce1dd0ca9a6799b13e5e4fdbbe5af1bec
MD5 cbaed6e2ca58ab371a49d9c43885cf8d
BLAKE2b-256 dc1c6238b777932a65402694a79e346091102a0b8a8b6ee7d804d9301ecff43a

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3889f083e5441ae4cdb3a54368417f45d5adc376d1f12d8f50e1f93af53a2be4
MD5 080e6e83dc79201e9561a38a2325a326
BLAKE2b-256 9d728c0e9be74835ce72b5f30ec6d1f91ccaa576ed2df35c2dc75cff51d70913

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d98c30dc678d7490023e85698edf1f663d152bc04c33c7cec8edff4569c2c47
MD5 506aaa6e01fc4a52aef6a057e9102570
BLAKE2b-256 c0d30c7b702d9db2306a9ceb79b4a4483ded92ffc44f8cca367dd6dc43a434ad

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d05d66bb5807395c55b252a0c4bc23b3462413c0d9f8c25b57c0c9b460838a15
MD5 9301f13730925ab6f31ceaaaebaeb2ef
BLAKE2b-256 7a931742541c34a9f7e401cf7e0987ee94b833b7a90875a1742c5dfd5243c118

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-none-win32.whl.

File metadata

  • Download URL: rignore-0.5.1-cp312-none-win32.whl
  • Upload date:
  • Size: 639.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for rignore-0.5.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 591b73025e1fcce23f2ea83b2b53dae33680825c647603b18461f65a3af78990
MD5 ba0b15d25232a96954a0e1aa537bf25a
BLAKE2b-256 d520286d8caa1b7f966b5182632debe585409e3689fdb0690edec1c62b1c913a

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1a2a74c305d751283dc49f3924c61ef71873deb2221a6d58044dd4b0bd897ee
MD5 fe6bdf8bd4e7e3b7376d60a2a38b59d9
BLAKE2b-256 3cefc4e7bfc0141f18b6fa7c7ccacb41c59f4b1e4b0b2312fe250428e9fb358b

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7bcffef09152a84d0570f297292ad8d4cf88926b65c9512f547240e6b1b3459
MD5 f8fc33884a9167e17c2586a9b1f5cf81
BLAKE2b-256 8ba99c5d7d3cf1e00f9f0474baf4cbb4963dd1247b98147da0817f5d4b31bbfd

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a2439956bfd57c341676a1d7cba2e6ea2b37c2cc3cc27c5e0aefaa86f1d9704d
MD5 b89a729546074fc2be468da2cc3beb2f
BLAKE2b-256 edbf657aeae9f2054dc899865b79ce28b1a596c3f7535f8f98a5b468cfd66c27

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c9782269163f60f01e38f3265bdd679709a4f3d22ecdfdcaebe05ab9116a406
MD5 ee9196bc5848d653e789928966adf12a
BLAKE2b-256 92fc301999916e8dc8c068bdecc80dd902e37c56f72f254f7ec306d265f5583d

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59ae296608c432ffc5641033e49876c54cf46042153d1cbdddad8001309cddc9
MD5 9bf1b9bd8acc6d9ce0f7d82119aff5cd
BLAKE2b-256 dd85e5b8a9431c622b14c938bd1e564c970ecadf711e18bf899c742b013a231f

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0dc361f660f369075bbebf1781bf56d3777e0430ab7e24aa39a9bb865c9c8b05
MD5 bebb2a47dcfebcdd4a528b5af880c2d4
BLAKE2b-256 1780a2dc0809587e41c002f9f744ff230ac40d04080821ef8bef3c2c59ad887c

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 165a9e318284ffd481e4b70139b36bc8df0943dc2488649500e80fc5f118ff44
MD5 c017938250b93fad0e9e6cdeb514db74
BLAKE2b-256 5a30fb239493e9227911e8944c7a47f52bda723eb0f35b7847db89cfab75c726

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 642c91f6ee7abb6d053384b1a199afc19342953f0725474d6516c9719e13aed2
MD5 2a2d0ab70d6cdae9bca40555c5e25383
BLAKE2b-256 474d8c783fec0b373f41978bccaded172223c864ca2df30394022e91564aec49

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0056329d3a41003213a9e002847ce81fbdae4a354ee668fda4519b094e7280aa
MD5 87f62c36a5acb221959f23c188c81f85
BLAKE2b-256 427f9507ac183b5fb72164a8525054044e04e7718ed0b33b7c04e20ffeb4a6ef

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e50d26cf231d7fa2653527c6f476ee7a57a3dfe4aa164ecb8def477ecdd3470f
MD5 e81ae9b0ac0c9569fc479fec1145b1d5
BLAKE2b-256 70ea9a1400339a7b6518d9123f0750ab534f718c28c52507d69c728f63d061b6

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5f7f778121e7b0a788280276e236ae945803dd36a89824ccb8e8cb6ec04fc8a
MD5 c3a1e0ab92f637b3d6df1811f3179361
BLAKE2b-256 397e883a4b070d39bdd8b6728e4400700e206d0a644127f4137bf6cc9f3d8a5b

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85773791eb6273eadde1e33bbc89051a35dee222443e1a54a7bb4ba7ae42e09a
MD5 9df702b6836b38e7f27c2e2823dfcd0e
BLAKE2b-256 8c43af4e4628e6cb4eecb432053b52f249548ebf11ee6ac4bf4508719a344911

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f4a5ea2f4bfd6472532a676eb671a91dde756772b0ba40a808db200c2b55c2e3
MD5 3c08b1e46238878d64c20e5cf78d53fd
BLAKE2b-256 cbd220c32ca3776a70f0018b3da1ca53095dbc687da5bf463933525740c9629c

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-none-win32.whl.

File metadata

  • Download URL: rignore-0.5.1-cp311-none-win32.whl
  • Upload date:
  • Size: 642.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for rignore-0.5.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 051615fdbd5659e2ffa04ccd3356b6a2b01c8a29288b2a6cf6e9dd39ae437671
MD5 b951297e15651f394e96b126c25a7180
BLAKE2b-256 3e967ab3ac1f765b969134d5202f2783a7a82564d43e89ffd895488b98e2b6f5

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89b27f78d96f9f34b61bdb713ed988822206bc20ee9ba01a3169925a6997ceaf
MD5 1d2f3c6c6494d68a1b3c00d3978583f2
BLAKE2b-256 cdbd3bcf68ebe9fa5031165a41d548f77bec784d222ef9041ec71def5e94d26b

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b29838382551ab11e874cfa05de98e3eb6076d6ce33e0eb421574a63de8203b3
MD5 cda1d10ffe4eb038c878c79235aa86bc
BLAKE2b-256 d8a9bbc09ca9e20380dbe137418c288078ec63cde8020c34dc5458aeb713bcee

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f1b647c05937f358c1521a1da29018f5ad06bd77cc7e2c1a2526ca2fc749bef
MD5 30a160146ddf73cffa553a6b7fd52c17
BLAKE2b-256 c758d5ffe3240547ee2e02c2697180cb38c309935cff46d79e2a22fc12fd9851

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad7e2603533cf5125bf50bdaa513ca75b8cf72ac45b014b8f9f7d52d23d50848
MD5 f55c2d46bcd4969b0499160e9f7a3bc8
BLAKE2b-256 73b2d91da035a8917d62a59fb0b55eb69f471988136c6d11ad70db580f15465a

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9d71f376c14015fbde075571ca6e5de12f2f470b6a1e1eb88d5fc1bd7dd7f05
MD5 f3ebc0864b5be5f8bec9117e1010dcbe
BLAKE2b-256 1e6f01e77e4e6a74694e78e1c1501274956d44306463e59252168bcf07bb7026

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71cc68938c7d17f571bddb2f4d52cd5c087edf258aa0bf0076dfcb9a48aea018
MD5 d322b6ca80b3c3435b012f9dad450ea6
BLAKE2b-256 72b4ed6cf483083093ccd59e4479fc71ed0892807c4bf301e44cd6f2c946fdd5

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e0c097f3d8e0af8df46ba7587ad4d71e386dd9b47740afef03b4a9da2e0725e
MD5 c08a63b52466bff1040ae96a2e17b2c8
BLAKE2b-256 2d4a65cb9ce298a887f3a6a5f69d26fcb4dffaf8461a91247e8bdf5817c322a4

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 563f48c561fcb12c5f3fbd7a67434f84739961fb794c8d371789be2d1732d520
MD5 ffcc964c2f6cf6ca08c4c48b44a46810
BLAKE2b-256 455a27f081292ed04335d8b63b45f532a7896a595d9e34f59043a8e286a01696

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce0d3731551484aa6a78a319ba55d36ae5d34395e2df7aef8fd2ad84a1f24365
MD5 a8e827166bdd5860f3ad122acaec4c1c
BLAKE2b-256 290c93c9bb986c1099826a32d45f5df495691679c770aa4f2edabebc8a5afc9f

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0af519e4286634a16c3c8c7becaccd27125cd23b3d7656f9baf2957da12d8a80
MD5 ece05498da41f9c1ece43b7edc32566f
BLAKE2b-256 147b63a85ed1a61d609e2a68fc2f5e3f85b0cb16c1b81af17077d4d7b9689637

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ead6bec0cfd23527cadba640a1dfeff32dc944cd25fff8327a8debd995441efc
MD5 bb891cba43f81738d30b2983262ac500
BLAKE2b-256 c308bebaa39794d16f36dc879824587bff0d998aa934b18a6a99a1bc1fd3f49f

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6086dcd720475cbfd68978f57a549c85e15544c819ea26fb78262e384080c4a2
MD5 d84bba72b76224239368113b8d64bc51
BLAKE2b-256 3a0fa8da5e27b593cd8fa5c22b4f15a873f4d7e466cd60879462e49ce7940b47

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 4e0e2bb50f2eab60fd7183532925a1dc758e131cf7d65f711d38a29bfb9f97bb
MD5 9c6a60963573f573989dec118c3756b0
BLAKE2b-256 c0d48c68ec3c6349b75504f9bca8864f4269cc14ee3feb7f26f2afc07c054100

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-none-win32.whl.

File metadata

  • Download URL: rignore-0.5.1-cp310-none-win32.whl
  • Upload date:
  • Size: 641.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for rignore-0.5.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0b61323845e96cb1884e8fbcc297164a02f5cd7aa77fd96b49a405b73959d008
MD5 9b0ae972a11a7f448dcc845f1574f522
BLAKE2b-256 7d5d817deefd66c1fa80c2aa3095a5f39b88877af95fab1d5420cfd6127d3758

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c3013d93760a1eabc73e206efaa0c537d8f4a4fc23fe08fc56a141825a671c3
MD5 7ae3b71b421213c2c95ba84735f3ea22
BLAKE2b-256 d661b517bc25940e1c269d29801db78f95061094001ef8483305b2a9921a4f01

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e3b39a0024b106943a338b7efea716a65c67d41f689a624b28c23e797cc8603
MD5 5def1201e98e57634bd0bb4fc427db20
BLAKE2b-256 ba5d1cffbb86f3c77656e73e269a9dd6144b991ebb7628808dc9c94b038c1265

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc3cc35494ff4218a7f57e72b8000e3a5f1c8f07e64c1a3fe3da1a873ea1c746
MD5 2fd16b4a2e34d5d4e0afe511eac78dca
BLAKE2b-256 0f13c46d505795cf3dcf1dc36ee13c57633f7b4657d525bf3e3a21b7e1f7266c

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bcf3abf88698108ec0b2c3c2d0bd06ce2176d5c61a7c23049dfa167703b89ee
MD5 0236e95908afaf68089ca43a39226dd0
BLAKE2b-256 eb3b84a528d5cc5df39f1f63544220dbd2774db71f525803ea1fa95ac66e1a6b

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 906dfe99a7127c5c0e54cc5016baba9ba35a62c783b333c67d104a194c35fca7
MD5 d22472a1728fe48b75e7967bf7ed0ed8
BLAKE2b-256 bc0a98e813617bf7cfc83404640fa0299e445438375f405682245f06b2cd7b24

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed5631c60755e001002e4a4a9d3c018570e293255f007c7aa6f734ffd24a4f94
MD5 1e158851134800eb929ffe7405cde433
BLAKE2b-256 20bbd0613be9afa6c57f18dd00ca4394844f5d5eead6bb3b621f7e80367484be

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f4ea9e1e37239cba02612dda4eab29c4a6c563d4e6bfa3c118d872e36f45920
MD5 d8cae9dab80f462bfa9e500b8a6614f8
BLAKE2b-256 a3dda0eabdeef9a65047ef384f2343d705f8dab35d4eb4e30c93e83168523534

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70ea0fb7afe191b867f3a91c090a79d68f7b341953887dd21b0c725c8887c14d
MD5 1bf049262c3f05c351aac1b2a30d80a5
BLAKE2b-256 6c2b0188f7b28400293e597b62ea5c872f2eb269eb28d3e87ea50a85df3ded73

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e9b0b0b441b462796c0ff4ee78b77a87e515a932843505a63c1bc1db74a1193
MD5 ca193580e62f6c93f69eb27580b9a986
BLAKE2b-256 7c04fd6996c7b19b251e971ac972f7637fb0b0200cac27b0ac8ee8251af47da7

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 caa181ea17829c8cf1d113e986ae6a921e8e17162574b7ba91c371fb24b23593
MD5 0bfa1c8ccfb8303db01f18090dc20597
BLAKE2b-256 c6715f433028be78fd65d6c86923652df42e9ae593bb7e29a695ec65920bdfb6

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c926be8c262fadd87bde39a68eef0e6e4b97f063eac776622db6465709f57acc
MD5 8bc5757807360b43e5c0a20b575456be
BLAKE2b-256 1078fc4c5c8ba4cfbb6665357a8e0f66cbce740c6a996ceaba14fb5b835bac5d

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 35e3418da52db58c9ef1900bc9c32f87fe769989bbe5cf57a0d2a413a2fe8727
MD5 cb9476e313abe2ef095bc4ce4cfd20e5
BLAKE2b-256 95201f81bc756562de32cb5e16fa52c36e664d91e4bc34d2150684126c62ad4c

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-none-win32.whl.

File metadata

  • Download URL: rignore-0.5.1-cp39-none-win32.whl
  • Upload date:
  • Size: 642.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for rignore-0.5.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a476a876f66067fa4d04d73687bfe81886a8a9c0d7426c00acebcd238d0792ac
MD5 831b95142f248d8b802a16447002b82b
BLAKE2b-256 0c847e9373a9bf32fda16a741cebc81e0819190f965461b7ccd50424d6bbf23c

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0008f6d38f00c95f0c4a0281767ddf46b20d3e54a00769005440c62ad4f63ff
MD5 f65fff9968193bc80bc795a76fc04838
BLAKE2b-256 33d5dce74270f6d9128e03f370f599d5741e162acc167d3141ac7c465382ff0d

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e8d98a2c07d47983b03c1911403ad35a787973fa56500c4a81ade345d2230ec
MD5 dbee9e17cd5b576d34e2cf87208bae90
BLAKE2b-256 9a83d657b7bdf5991b0acc06a4bafb02ab8261310fbf6b9214b3d0421c2bee15

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58f73c2df6a25fcec226167863949d5a4413ef319c0e373d70d59121b9571680
MD5 352bf698b2e50fae921652b6f7e062f7
BLAKE2b-256 b9aea26971eb8f6055a599dd7a79d5ae54900e1696e125393e3972165847cb32

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 057847198b84434ff901dbff873ad12b99f2e5b5c02e897021e561f62f8e4977
MD5 74dac518ac4f40a68d1d8efa3dddc9e9
BLAKE2b-256 b2610ae29d2c5458b32e40a8f8f9e489533aed3de5e9169188e652981c62f2a1

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00df04513383fd8750e3a38b87f9cb027788fa5865c181824b4e3e4e7f8832c6
MD5 b1aaf8122edbfbf78a4aeed2026aba59
BLAKE2b-256 ed14ea9553a075c78b9de512e528240d8e64b5a8cbeea4b36d874825cc7ea5fa

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 546cb0ca7305ad5a3def1036fc425477b0f40ecf55bc87c0f774986766e6946a
MD5 1398ba2e6d34e6be5b785781ccdaeb08
BLAKE2b-256 ffefe32f58c56aa3d74b40daef28c243365a72e213698ce2070dcdbf9fe14d19

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 744948b708792e58f7ce40db3607faa2f39318df5cc03ebe2f513f54ade09964
MD5 5a58abce3bbea66d369d0213d9ffee8a
BLAKE2b-256 66892fb933295db01ca95ab0c108dc2b93a0fc84ec5a87f68b8a226216b20c57

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e56ee2d57fa3f9a77452d69dc84e39f4339ccf772bb83df0d19e9c05b0e2765
MD5 1a36014a76dbdd5bc000880cf4f04210
BLAKE2b-256 3875ce7d9c511899fce004cf6b41085a709f3ae9bba995dd4c5db426bb8752a9

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49c501efee582263cbfc1919d652211f40ed2a3567d77bfe7936029137f7cf8f
MD5 4fc0f56d05f2d544b2687cd46add2066
BLAKE2b-256 dd3651eea69efeba8363353c339e9b497869d62f63e3b81b8aa54d2673693c66

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 16fbd2ce2161c252b07f4da071f2be1a38687f956dd11dcf33e80a98e2a02fdc
MD5 29cd12084deb9c99fc4308e350c81244
BLAKE2b-256 1ca73ad57353cded42f1ceb346e1d9e4a9fc25b4a1802cfba3fa8e3489750381

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82511a8ba9f7be3803332c57b2ed8b39a986695add29480be5715da2c0e214a8
MD5 dc566b8d7bd558b2404b753edc459a81
BLAKE2b-256 1cc3beb877487755cd056b9d8a8788026ad3b183b448b8b34f6e11c354ccfa3b

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 76f78853e010265b8355140466d4fd3b36ce179840604eecf729a6c55b36d45c
MD5 f331c9a5e5af61dca2417cc896fe978b
BLAKE2b-256 100e43967e952d759561bb04e92eba58f652ad861d0e201346c07fbb75a0e5f7

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-none-win32.whl.

File metadata

  • Download URL: rignore-0.5.1-cp38-none-win32.whl
  • Upload date:
  • Size: 642.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for rignore-0.5.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5c29a3c14408cf85ff782af43ff38b8d1da8464ebe50ba3e521a987984e75dba
MD5 18a3711f5f4b836d67e3ded414404604
BLAKE2b-256 100f8978ed62f9cf22880bb6ff3322cab7fc82a599d73b8b0922b06713c67584

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 248a49f9f675973504ea3df096ef52b50ea514bfcae5b44ea1efbf1ad170f1f5
MD5 ff69d8bd1f435f5c6bdcd3af1ef04b57
BLAKE2b-256 766d9e81748c586e31376f1cdb8cbccdd91a3970acdab4401623bf4b2e2e8cf4

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79bfbf439b8e718022b851d525573355011ee48fde6b9442314b71cfb74be663
MD5 177f57819b7ca618b667ed7cb35445d7
BLAKE2b-256 e23358009020444e1b4a37e79a7ba4caeac223e58d010ac3956954e00c2ea30d

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a08900c6aa62ac5717d17c23ae1502ad33973f780150809e45ba13e5fbb739e
MD5 d8e28b9e6b2b2adcfdeeb7bbdf951809
BLAKE2b-256 39853dc54702e4ea47be7e68a8f6b9a59018ccea2bded895071c3c303fe06712

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bb5e881c0b74b48e8314b90fdf5e6f3b257b07efeb5d419454a479d71eb554c
MD5 3941ff8d7bb0e61d3e48bb215a8e226f
BLAKE2b-256 baa37900fac48202117af6759d081b7682b29ded67406912a1ed4e08f18299e8

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b4af8b587f9ed27db59dcd0950ae481a9994996e3566f420aa039044882063a
MD5 0f14cbcd761db1749b5ddd5244cb3ef9
BLAKE2b-256 d612636782f9f1044236b4311c9ccc7cdc771c974006c1f21d85e28fe2f9d34f

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0000e2e5486ba034daa626fbbaf59741c693fd14ba6d9647043296ddef72da85
MD5 1895cf616afd33439a27856f1e01f683
BLAKE2b-256 acb242d59d36e7aee4d87762328d8217a9faad76557a07fac708110bb7192ce2

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7731421ea1aca75b7f8ccab0137015899608055292cf8fa67ba551d35b3153fd
MD5 c45dba1ada0127cfa3e8779b03bda259
BLAKE2b-256 59f4d9dcf9805a4d1dbfc6359569bc06f4bf26e7b505944bf9b6401866561349

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cd6dc77caab5cde4c5c6048910816c804f91d3f4130657001879535e46450826
MD5 85f89fac5a2e9652bfe356ffdfc2cc76
BLAKE2b-256 1aa40e10ab6e15e832175883bd7d0f3b35afa8b5ea66d9d143b5293c7cf83218

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16895cb259de0720c997da14227ede1e6b829c0cdd2df6803eb9cde8c10d9cd0
MD5 4bebcc668c1390d56e3a103967511b0f
BLAKE2b-256 d9f895b3ad1cdb06b4f400d8a2b65dcad0f3d61c405ccdf82de7c9207861a490

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bef748a58e50b0e0582079002ccc2f2c8f251d4bf62494ebdcaefc868e8e6795
MD5 376daa097d7865e04c5d6d1a7311b7fa
BLAKE2b-256 b5604ad8551f04e8dad09b797ca7f54bb31957f90b278c1ec241efd2faf9ee35

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1065c718df75a3af288f73099787625bede866acd51b22e28873bcb0c46b7208
MD5 802114dd73779e41ade1fa7f7940b14e
BLAKE2b-256 c72e720fc007d87f4b337a0ba48b95fcb63860d7adc8eadfeeaf029f50d48aad

See more details on using hashes here.

File details

Details for the file rignore-0.5.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.5.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1d9c8c4cbb3969ca5bb6fb35c694c00fb21cfa81eba7592353cd6d46d358aa4
MD5 7b8c8d9af4590df0ee5c77501f2a719f
BLAKE2b-256 fa76a275b3a845ed71320b9dcf70373c7e79651a3f57e02b613b2957ce01c4ae

See more details on using hashes here.

Supported by

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