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.4.1.tar.gz (13.1 kB view details)

Uploaded Source

Built Distributions

rignore-0.4.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.4.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (952.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (986.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (979.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (876.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (968.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rignore-0.4.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.4.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (953.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (980.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (876.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (920.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (970.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rignore-0.4.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.4.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.4.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rignore-0.4.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (980.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rignore-0.4.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (876.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rignore-0.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (921.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.4.1-cp312-none-win_amd64.whl (719.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

rignore-0.4.1-cp312-none-win32.whl (641.9 kB view details)

Uploaded CPython 3.12 Windows x86

rignore-0.4.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.4.1-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rignore-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (949.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rignore-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (985.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rignore-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rignore-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rignore-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (966.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rignore-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (814.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rignore-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl (861.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rignore-0.4.1-cp311-none-win_amd64.whl (720.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

rignore-0.4.1-cp311-none-win32.whl (642.2 kB view details)

Uploaded CPython 3.11 Windows x86

rignore-0.4.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.4.1-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rignore-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rignore-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (984.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rignore-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rignore-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rignore-0.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (967.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rignore-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (815.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rignore-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl (862.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rignore-0.4.1-cp310-none-win_amd64.whl (721.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

rignore-0.4.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.4.1-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rignore-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rignore-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (985.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rignore-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rignore-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rignore-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (967.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rignore-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (814.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rignore-0.4.1-cp39-none-win_amd64.whl (721.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

rignore-0.4.1-cp39-none-win32.whl (642.1 kB view details)

Uploaded CPython 3.9 Windows x86

rignore-0.4.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.4.1-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rignore-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rignore-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (984.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rignore-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rignore-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (875.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rignore-0.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (967.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rignore-0.4.1-cp39-cp39-macosx_11_0_arm64.whl (814.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rignore-0.4.1-cp38-none-win_amd64.whl (721.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

rignore-0.4.1-cp38-none-win32.whl (642.1 kB view details)

Uploaded CPython 3.8 Windows x86

rignore-0.4.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.4.1-cp38-cp38-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rignore-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rignore-0.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (984.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rignore-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rignore-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (875.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rignore-0.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (967.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rignore-0.4.1-cp38-cp38-macosx_11_0_arm64.whl (815.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rignore-0.4.1-cp38-cp38-macosx_10_12_x86_64.whl (862.7 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rignore-0.4.1.tar.gz
Algorithm Hash digest
SHA256 d72ae039be9fefabac0cd2163f5b83c8e0920fb27a35d0f6bc5d948a4c24023d
MD5 5543124ce9eb1e198cfccb9e92c9c5ba
BLAKE2b-256 787fd571f0f02c34aaa14cd216e87a796b39b27f76472fba5bb3753f0412547a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1769aa95e6130a629edfd250b4e96eb2c168aabb4e4080a1cf7fc51c41655036
MD5 8f5eaf03bb1309ce9d5bc60808bf4671
BLAKE2b-256 cf59df10cdc09ec12d3721f869ae1159e81a655c0a6a1e311e8b7d7f41286757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c05d0b38582180f959b7611eab7b70f95aaa539b7cfdeb8eeae69db278260171
MD5 cd0936c6f3626f6f881e8fd80a6cd474
BLAKE2b-256 ba960c4b4a98a064104a67f221f49bd7d473843be715ca9b36c790a3a1ac7123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04aef99cb319f103753637e5c77689fd2bd75193cb7a74c73449335d1b5cb28f
MD5 dcab295c7eb495bf95cfd394986a741e
BLAKE2b-256 f8a970358a2ca4f6e4569d285cd65888be4cd658d52f260c32bd07307ab81736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a83383bc61400ef75949bbd324d0a73b177c2c37ff31cffdade9bd17c07de369
MD5 5d743c6ae8a3360f15904b772a9f56df
BLAKE2b-256 80ec6993d091c1ffa4cd1e51da41d55b7c46dc87c5ff4bdf3710948e22f7f30c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ef5ee10206604b01ca34eed5d0b5cb9d2b7e8d4375c27c8d0d993f6b17c6458
MD5 3d060770c935b1b32b177e5bad109cdd
BLAKE2b-256 f0c652186678c6f60b8e1ef2278ae7f8eee040e1182824fc58f1d9f421005c0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef959f054477a0b4eccb8835b293e4db4f3bc00a5e0a176a52e0d75770e110a7
MD5 d50108cc7eecf6c7ff4687f36db0f4dd
BLAKE2b-256 307376638015fda7b16a46843afff30660854180954b3a360c8bd423f60927f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c887797208b6c440397457d3e98e1080cef457eaf53999d5633fe3db9fdb4039
MD5 be5bf20d2c439b7357a86029e3f52304
BLAKE2b-256 5f57aa6305984eca569f9f84a25042bb75d840079fdbd24f450240846f556100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c50c1200560db0c2266dd6930544e04b3c7be535675ded7837b7b5f348ff8e4b
MD5 d020171c351f8c09e0b783fd3b716b6e
BLAKE2b-256 884ceb6dc09d330fe9ec63513dcb6050eedb8a5871aa7d1e6774c5619424ca3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 041e166e16fdcaa6f9dddbc5af0b97af514b31878c6dfbe17775bc941d2945d6
MD5 d19d25f5fe94a3f19024072f68307904
BLAKE2b-256 43617aed54a1b7b8a25859c6d8b208fe0de77a9a9ae5605b73373f4f8a8900bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 16e28fd81adf742f8303ff9e4b55209b4957119c03ab9b0f0d99bbd05c41e202
MD5 6c160df25c6e4a828746d31e1f7b8ef3
BLAKE2b-256 0cb14e8c56a10200dd51dac1bd056d8b44ca05519573581eede73d82c25d07aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1e6390cee6ce79a2a340c981d072ffe1abd226617044418bb00ae0b4038aec3
MD5 0c03b277c4210e5c39fc55f38ae0a8cc
BLAKE2b-256 3add55b03659206a0379fc7d72375d79143bf197b3eae4d81a3a3d367467c988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7df2e90cc03d300b70a3b6b7c3db9a80a0d26eba9c9d37f7dd049e45aca2e73e
MD5 66eaf76e42ae022473305758a4bf69bb
BLAKE2b-256 349acdd65463f2310479d5319d8f64a3ad59622ae74907386af28a3b663551e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3172f00e02b390301002e409df996b952c365e8cb076f815e7a3fe2ed36309ef
MD5 e739a1c38ddb8c4d05344a5bb640d8da
BLAKE2b-256 df8c7edf1085b42f0773f6fe5bae443164cf51f6fd4fe9c0625b56eeaa7c1eb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77cba0711ad03729502981dc721afdf7d19ef3648673f4044084ac1af46189e7
MD5 bc85805de8f094006d687ef9d6a34ae5
BLAKE2b-256 a5b05e0145c2d54a59c7a421059f573eeb2722988310abbdcbba2dbeca0e91a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 492e621294ee631cdee68b7834b652c2acfc2d82a0ed212aa8d909e4f109c256
MD5 0593abd6bf2d4398dec0b7964ab7689e
BLAKE2b-256 1c76e585d8f0ffd1a5e85feb5a0287448644b3e1748b7c90a0e6473355053ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae29885979c8c1568acec80ca535312d8b2bf86007c0403619fe4fabbd50b999
MD5 f5ab235c1b68479e68047cf51ac293fb
BLAKE2b-256 15e1466b7e46c721ab1aa50c22ddfec8ef1b40b8d5c397c4705dcc5f015aabce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40b18dde946dd236ad872b07fc10fc3e92983bd46b1f72d6407561926f2e77c2
MD5 6a2db743d96a51eadf402f1a8605f3c8
BLAKE2b-256 0c6a091f8cfe854c266c9a6caa0046a1f227a09fb0a0e36fc00086b221cf7f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 014b6b155f0d22689fc3afe23cab52255d27e94de7feb5aa15818965cc6a678f
MD5 6d5d15e67f3507f3128cf96ab3c198d3
BLAKE2b-256 caf888c3922461905a03d63cde070220753d642362c0e19be3169f842b5729f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1ee38197df16a5aa556e8e01323001a9fe5b5af6c8caa95f3a00e1e5f963fc8
MD5 baac0cd2181d48e9bd5e9c822a8c0942
BLAKE2b-256 f2ad8379b20eaa5cdfcbf8bda903c4801ac38b5dba4747634e04c9023501277b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2576d15ea3b84bcd71267f455627febff38bfc72960628348c9aa240850d3722
MD5 aebc76c30f84997350d5bd57fce353ce
BLAKE2b-256 b4223f9d4fe2c2a4f3d5140faa17865f093da8ee0f339b17dd284aaf2284e89b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3306874a3996b85fdee6012fd5b4f15d85d6f82d7d93b2017bd2fae36043636a
MD5 3d5a479a9124f678ed877fcefebcd14a
BLAKE2b-256 973ea404cfaf92ddca6005e93e87f461a48625a5afd65cdcef9281ed3255d32a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cacbfaeb767b4745b69ce1dc70e6764ffe435525c65ebb6a368164a20826a180
MD5 02d95794cbe27fe6cb4615052aba00fb
BLAKE2b-256 7fdb1a0d5ff50aa4117f45b2bd3b2c581386e3d3cc792abab6d527239d79104d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b1508ccd2b61b12112a34fc6f4ded04f43d1a9942eba9455be42b0b2559ce68
MD5 024b417520f2b6afebbc4edbeaaa9ecd
BLAKE2b-256 1571e6fcf1cd8de9fb6ae84af7241ea9f053e0462b3e29b4bdf71742dfda3b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61b222421ce59176aabf6f7b25b70d8dda55e79b5a0e9197f9cb37c02152dd30
MD5 ff6359be498cb1ff723a3f14898d868f
BLAKE2b-256 aa3784428f965866f5337133423684a75130c76e98415afaf1c9ea1fdcfbb11d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a1637e4f7222cad18024e29de791743f8e6212d626f2f05205210a281e07f7b
MD5 e5fe43d184b9d23f71adb336e5a1bb50
BLAKE2b-256 9b3e9f554739c1fbc32cd3f564b8414d15cf7788fe258f7a42cbdbcb0dbc4813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a068d05cf81e5b9ca8c5507aac85af51c85ba5ece5b7ce27ec0f5e43a56dd1b
MD5 b087dacdd0ae1b0aab127da645003b7d
BLAKE2b-256 af80b659cd844bc06daa11f28d3909dd0b82074123be5030bb9e4e5e1e78c466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86a7eb1cc2bc260de1432fcb823723490ba90840413df2e91d19aafbe79ee17e
MD5 1cc83be97e765bf1cc899caf3a535ce2
BLAKE2b-256 0d56b91d373fe24f7c94fbebef7420780477d0d73f85d5a1d33efd34f3f6daf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edaa98b976553f610ba9e8de631c43bb788a502baf332dcb85f4734b5c4299d2
MD5 5d6ee1bdcaecb6ef5ec7572744e7c208
BLAKE2b-256 fa89c2eb8da7429203418d6e9d367e2c50d304acd93a77e430c0028b5240587b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f086f3e08f14f34d9a7c8323d977ab6ea473da30b801c070a121c1e408629947
MD5 f9630431dbcbf43b3c81235b16279dec
BLAKE2b-256 5c224d6859af1b1a7320ea17a7116109b37b1a489f9ed20da81b884b6e9488af

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rignore-0.4.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 44537f37fcdc9669bfb4301e10b3a3f0d3966b4df3a271d74fe3bbc2e75d3562
MD5 c43186dc7b4eb3830ad23f086489fcfa
BLAKE2b-256 3a1cdf739a8354608bb2463a4a23b232cb062f423fd47675d9ead1d719a22c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f6caafa13380d8b9cdcf4d0193722a01db53ca4fc60edc2d21df0f41724a290
MD5 d48f13b7ae41590508b54bc3fa6d2e24
BLAKE2b-256 925205d446254e213ca78cf4cafbac5f3a807464ab07afe75515b625b5e68dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ba65ee03e5d13339e9e25be99569c0d256505b5832bd599fd0592d7b4b2f269
MD5 775ffe1db5ab7c52afc06b0b63a2b549
BLAKE2b-256 778fa3e9774e2710ac77fefa48fc60f6a9b5e55ce37b7456dc8a49eab1f83cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c4e788569caeb5ef2634495abc358ee13f9e2cfb205de268824a78d09376967
MD5 bfa85a9a8fa85e85cee55334f214ec06
BLAKE2b-256 e884ba84c502fa28768b53e03299b1a9366594a0065b9b607038e04665d447e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c6f3dd8458fa6e2b407d112cb39a0b3fa5aa6966cace64a7e38d6711d3b13f9
MD5 3213d5a5a457d00fe4192698402b366e
BLAKE2b-256 8e439dde4556099947af692d4b6fe6c0fbad22ba14bdfaa68b63f80adf7e0037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80c63ba8ab55fd35c56eb083a4ac1005e4e5ddc603597166107aed1e5f35d44f
MD5 a27f88bfce434e4bb85ae41e4f30d87a
BLAKE2b-256 e53f140de885014badb0be70dbfb00a76e2f96d99c14bc62ae0a8991a57f639a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04045b9fa4d11b2767904e5282d038957981a38b51fea8cdfd8772b55f909dd6
MD5 8a3c8752fcfa7be4f2db54a34a390e03
BLAKE2b-256 ff6e253832b828b99729068b84d87bb91fd58d5df7a51b879fadd4012aad8e81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebad189edb03bc1554ea07fee00b7bea92871187cb4328373d15379704a03bea
MD5 1a8b7f3253eec7210c53f23eb1d362c2
BLAKE2b-256 35fd468e6f280b77994a2c9e50ba778fa274bd916819272449cb14ea19dce056

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae176cbb453912c30fea0fe86ed5472f0e79c0dc05e1309af719e0feb538b767
MD5 52d8e1f3eb8ce558bd4a8efee173f2db
BLAKE2b-256 283ce7fb94d887eb8fb7e450d02c017af5d18d51782ec3acad97b091f7957219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5628d1f5549cee8d821d41207741297545da4577f121890f22b66f7729b68908
MD5 e6ae71acf3fa4649abd0afd9cc3730e6
BLAKE2b-256 3593668eeb8733cb7f916ba4983341aa44068bc1049fce70b53a7f4dd93b986d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a11c5c3e835e267bf9b851d9074f5133fa0b9138a66cf26b959b0e265d6dcbdf
MD5 5c8db09ced6226fcc51ac6224ac48bff
BLAKE2b-256 d42f117a19c61c953e0ffd7aa1f9765582c302f0f19b86a066dc8e4949e55a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84cc54c5a9fd4a886f3ace71d49aba427bcd8e8d7065ad75a2fcb2d2848cee47
MD5 5f1befa00b6a48b16905db5479ed5713
BLAKE2b-256 77230788c2fd6925508bb0bd097685c158f251c58fb66a87e56e08dd0932d779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5559c88bcf6700e52fb2090914d590bfaee37eb0a3d2b06fa9593f09079774a8
MD5 ccf401aa939ab70298a090149aa75767
BLAKE2b-256 c7278c14f970964110ff84ed1a0bba2d3294e99aa7317d7e9eb9e07866c74873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4f002da21fc4d02161a8c572661d905b8136b0b8f288da54eea5b8358fb06480
MD5 66bab6978e1d2191f12234bc20f3f30a
BLAKE2b-256 2e16d4c24bea72b037d9690fa1cf8cac8d1d18a3ba4385c3a4e1829943d9a0ef

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rignore-0.4.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a0ecbb3aa7d352b1f57160e8359a978a82381b17a53bae177275936e00329ead
MD5 8ea927b0f201dbcf70051de18b820bdc
BLAKE2b-256 fb34a3e49055cedc8fc3abf9cc4127c63d139ff01a819acdb3ca0589f54aa3e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e36636c599db9c5b762a94eb7e3f2512df7bc9b7e068c3b43e852bb022f287ac
MD5 1a20906c869651fca152cf7bda614e56
BLAKE2b-256 883d1f8b8bc6003c2b0ac8740430ff8c76e23d3dc0986f96465bfdff6637e7b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2cca32e404271a6e9558f86f7c422768ada828f1af7122c72b9a81e950e5389
MD5 02a30b66a6c391dd86887079900b7b76
BLAKE2b-256 7c1d8fce8c02b9f199002bde038a584663b008527e833677d901a4cd08762e86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8674acc3c324240b8ccca42af2de6146c01a08ef6ad3785fb1cb6405854bf5c9
MD5 5d5faec0b49eb5e7b1e5233b722fc5a4
BLAKE2b-256 44c2b8476205468d25550fbbe95f51ae1b20995fb4783c062480f0dddb775078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84350f23253ad86753d692f5d81374af6fee97aef3e1accecb7ddbecb0c4ac34
MD5 2076a5ed7ab52d1c7b1ec8d36ee8acd0
BLAKE2b-256 572ed93ec6b12a4c2d63abe87d8f30c461a4024fc564b95b35da003f80520850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d5ccc46a767bf8b77a3785c74e509ef643cd142bc55f2409e0dc874ce734be3
MD5 6f550b74ae82e9512fae17149d71b1cd
BLAKE2b-256 c1bcc64fc7852b0f35c049681eaec291400a3ee59bff6b66ddc1413e2c8ca71f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1025db5541444cf7304b217503b2908ce6d4a225beb51dc2dc85a2dc4f9bfbe
MD5 a0490dabf552f52c5c5d5d6368c815cd
BLAKE2b-256 ea1578cdb1afd8e430840d327ef4f61d96a7cb80b2eb8ccc3a685d45be15cdd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26606268a011146ab4b64d9137b90179545b002d2d7b045cde51b9e35d7f72cd
MD5 e798aa2ff4214687b23309524e5594b9
BLAKE2b-256 6259a6c8fcdaa68c18acba921ec9b59736440e2b4985fa4da119191cfd56dc14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5acb0f7e86c6e884806eb1f2b92879f9e9ff9d554ca4eb9a551f8af49c06d6d
MD5 80e39abbeeda9a5b07158a56ea41f110
BLAKE2b-256 b87c1edcb30b8d7052cc8287b0f1eb9e4a31eac75df6619e9a5d4b3f6dc30556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3329f1d1640716c3ffa14c9d54384ccba9b1672cc78f199c169d53a9aa75abb
MD5 ac128ed1009756f814811d7153256eb6
BLAKE2b-256 3c165ffe0b9c93e6113ab12bc7c53990244a14996eed9f8d10e8fc5200f94fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 808207339465c8133966825fe14a6158096ff9969e5bf6d18b76eb7e8c67e81e
MD5 90159905f18a0566d623efb42f9ed8ed
BLAKE2b-256 92de2f9b34c15b1c7025b033c983e569b009d101a128435d60e28b61b933bef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac3a61dac55d83d921f9ef6b020f040876e1c0aeac9927157354115d1a7cdd17
MD5 48a30bf34b4bae5a5fab51fe2d43938d
BLAKE2b-256 adb081a3966afb384e3307f7421660f552dc3bd6437e9dc9b1602ded480cdb63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b46e7f47370e8fb7ab399c8142ebde444ff0db603c050fc8fbaccc711dc54b9
MD5 d888bc9100348d058beabafb7c4667bc
BLAKE2b-256 9f3bfc78b800e82e8878661559bc65ad9e6c1c511882c9468c258cf597c46fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6f74c3baf25b7512674f0d964f9427d32fe3d5b98cbbbdac4d6faa829d76200e
MD5 615c437bd98f065c32af9fd6ac077872
BLAKE2b-256 69fefc72660ba6991a299bda657d15f225099f288cfc10039f887e63e0af845a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.4.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.0

File hashes

Hashes for rignore-0.4.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 fe870cb91f8bcb041a8ebfc533d935c6ef2b71c94b4e40bba1561e8dd3ff2c4e
MD5 86be4229ed296df3349a8864a7b3a108
BLAKE2b-256 ba95852e7b967ec1ea7dc3aacbff58b05ad28d4023930abff0235a250d63a11e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8815f4929a28b6e8849929af105e75945f78538001201c6c83a39040a96bab37
MD5 fe3895398e1d1eb0d373c233d27ad0d6
BLAKE2b-256 e1cf416a66225cde67b12fe66ce31be2804495f5c5af4b04d85ccd034be2fdce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28c47ed0aaec8fb909b6e2bcbefe7787f704c2bcf28e7e5e82761f9fa5811d77
MD5 b46ba18f4be6982e00323fcda284bdf2
BLAKE2b-256 4a2b85248726bc4f381e78b3f03b541db3c3a20c74654d0ee4a734a34fc4f451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80d541e6594e45c83557cfcc0d728b84e5012b86b45459a113bb1a617debd576
MD5 3036776972ebb9288dd9b657c3d7aa1f
BLAKE2b-256 05d53e5802ea5f9e204b351d1e9794075f37f82baf4123973ba01b8e4168f321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 717937c3c8ee8b177b56d9932af495ae4e52ca8efcab448b300f2ea6daa66883
MD5 1f1cbc88ee4b5c0076d56cde405ccb4d
BLAKE2b-256 b469502140bf6a1b6272ad1138a1bce61cf55e56e7ec2399fc00a6aed3c48179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a87b7f742bdd5159e70ff2b3bd9f1f611fe6bab954a04066925e45b59b3221f
MD5 05ba9aedeedd572691d779436d81f539
BLAKE2b-256 7a01ab96035a8bbb4bc9f1e60c3f56286f32f8443ceed4e4b36653a1cf95e518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b84d491d13d6a92295429bb9ba3b293470e4a64b33ecf3830487575bc76b7489
MD5 c64f9064fb410d52b0c77d847d7e8417
BLAKE2b-256 8034a13b58b83891808de4a974bd50c28daa7caf798d8a302ba268e92a9a0227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f868dc15c6a50b106bb6e3bd7b6dc43e909f00d9f84e33c94bd000685ae80b0
MD5 97b3aa057846f41bcbb7867476410968
BLAKE2b-256 24697bda5aefeef127e8bd4150e32de51cda83b0dbb8f794cfd2e53badea3b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51b18d7fe5afc3db297aeee4f4ecf1e1fea4bb7c19b9e9f21dda3d23eadd7213
MD5 a28d359f005141a83bd86e16e9ac8ea3
BLAKE2b-256 780e66a63db31ce4b4b6a3c56627fba2ec24e6bf39b9981f5ca0bffe7ca7d003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8758503e05461efea003df2a4df656ad122a453ab5c4136f1f6d35f2d7ae12e8
MD5 2545163f5bfa542d2683f65f3374adb9
BLAKE2b-256 0f5e4fe5edefc7bbf8dc6eaf3e7eca0c6c86dcd8ed7a5088b436315cd19bd1e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a57886a36a9fac3072c49c6bf7cc6318068067605ac9ced4a4a30b515b82bb3
MD5 b8495012a8bdc3f8f650ab495531f839
BLAKE2b-256 e2c1b32ce96a830e806c4876cc942b29f92b6ac7a800bc333978b84b0761b9c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c0aedd8f2351d2dc0598819246d22b4973f82b248ac88d880bee4807c3524c1
MD5 0f68b1b023ea381f60b08baedf385005
BLAKE2b-256 0b0c322cce21d3d67102a5910f4e07461dc8231260d121ef0a8f2daa4fd01e67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7b4359d9ca5f25425bc5556aae9e8a6ed68b52d62a4db6ac329dbf7dffb515b4
MD5 adb8e2060062393afee2002a40dc803d
BLAKE2b-256 07660fe5a4ee8cd210cf01dbb5b64b030c31510cbb1e501a86b47f927366ef7c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rignore-0.4.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c5df7ea808b3d5dffa18b9efbc0c8198e14f5cca7efafc4e0279e8e8532c2fbd
MD5 d0e5532560ab76ff57ca88a28b3c3a1c
BLAKE2b-256 ccc9aebef74764a4103d8df1354e8f0de4b9071a360324851deb228cdb5e3778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40b8b47e63a0bf44d0481b4d46a57006304fbf72dd9448a24441e93616945bff
MD5 782bc2cbfa19b36770396ed496fd87da
BLAKE2b-256 6d409c2f4a3435c9466dac0e7877aa3b3842b0b87ef9d33bb8b139f18c13e797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94e9aa0fb3101a859b80ac8c40b04ce1fee573a31f3d826edd1b715214065a0b
MD5 d4fb97875fc5f6e6f442c35ba4a34fb7
BLAKE2b-256 c078ec0fe27b88de880b2460c603be5643aae165da753ba5f003f515687af3c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4bcb76e74f1713b03c807464276c4c591f44544d50149e0465a6e6fbf865855
MD5 9163af1bf555a5c098fdf30247f3ff86
BLAKE2b-256 b83955a471e86e1e4dd3408a9432b02ff70295314a8783f5fc880675ed1ff873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10338fa2ccb2ddafc1bdd913575f05f30bb6a0e21c5af65469d39c04a98d734e
MD5 2642b0d2974c63fb4d16e7226a6fe2ea
BLAKE2b-256 2d42c32f3c230cd564e7af67e3632faa9e28ef83ebba0db4a3c283f04a855a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6945e3766e7e9d84232e62cc23a5fa92b52093c606d55005bdce82eb145ed71
MD5 c16d17ab2a29c8b85ebe7bd56e8ce9b6
BLAKE2b-256 d6c60bf064e5216255dbeb48addc497c1fdcb4f115e805c9ee55dafd26182b72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97693e762cb6c5aaa7b41b05a67a80e4e405a74041042a2c764cda8139f5cde4
MD5 f0578b5d746f4e12d4f88044a7c462f3
BLAKE2b-256 3627ba08846aaebb38f8cda6a77b3a9a9108b2e6d4eb00a73e3e9e0a1e62f0a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2d7e5634b57650e53fb8aba9eacf039105a5aaf0787ec079df5e65924b876bc
MD5 229207f2fb8886b3723a662b6a2e9c92
BLAKE2b-256 5ea7f3fd3efae2e80019b09860a8d96d2dd42700a1eb3d9fe31a86c4728defb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ed033da8905add0fcd7b8e2153a6d1eef1648acfadfd962e565d372bd360a2d
MD5 19cd5360941e6dee177af12385f106fd
BLAKE2b-256 b7bcae79546ce2625060239393b66fc19ac0e2743b3a6fbf9351ebc04e1d4d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e92fd218df76c4f7c54f0129de065333089671df58aacefa4a06356294f24025
MD5 c0edc761e98535e98ad1b4b140a8b620
BLAKE2b-256 ca60139a0e297791a0fb3d08f90fb56d10e748413ed7df80216bfa551f1ccbcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9b6850f047a2785744728cec4307f7bc3a2051debce46c9e03437ba72f9e4659
MD5 a2091a179ce47536eec43eb0d0835226
BLAKE2b-256 e37c7ce6dfd1986c9c59b4234bdeb1cb8960b13bf03f5bdf0f060e0e56b174c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 142f8d302defa88e93d4d4356c5ce4bd1a310db8febf273830c90645f3e79350
MD5 33ba61a0cf8a8057d717193525b4458e
BLAKE2b-256 358fa5bb4cd9e33546529331fbea8f98bc7486f5c572658a2fd98b60f05263b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 500f893ebbea108c39d7bd119e2c74b0295e4f599767c0a84d78644c3daf23c2
MD5 14367eaa33ee07ee6cbb33035722fa9f
BLAKE2b-256 7a50cda0a4c916d5027c6053a45d85cbe2e8db207225b26d626cd5adc7b3de1d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rignore-0.4.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 d20787d0878e67e7e787040da49efcd94930b8e0308354391e227b4520186270
MD5 205602e1702c23cf135215982920e505
BLAKE2b-256 8d8a0ceec5e5dfa1536bf0357ac86ab0c0e18ad2a6bb079db333c958f22f9abb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7bff85e5807562fe362a2a8fe46ede4b9c8b70db22568bd179643781c8fc80f
MD5 51246f2f2634824b6aa323a5cc8f5bca
BLAKE2b-256 789ea5424d86f9a70c485c9cb88b0733614bdce1a095c786aef64add12959592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afaa6931ba55e3cf9eadf7bdb70aa74c54622b8f08addf4ee5d16352afc370f7
MD5 83e1c59ceaf3023dfd2bafbd3e43a86f
BLAKE2b-256 7f7ddf627c087773b2413189ecba6a7e80d98f35ff49d220abb5ad89db40c1c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ce04ed2b66a7207d942ce4e5c32f8fdc7df8e67334ab3e57870ea8601dd04fd
MD5 1fe325f008d6bc34821247fdd4c125c5
BLAKE2b-256 1b5418e78750c25fc23d13f30bc66afaf4664f2ca8649e7fe3fa42b1daad2db9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ebeb5cf11effd13839a5522fab1891cd35f84afe4ee36092ec0b881f2c3d155
MD5 fadaf9cf58bdbcf8f5cb362b1ec58306
BLAKE2b-256 6bf83a66bac90f07200141e086fe3060887facdd9bf152205a008ef2d04d7316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0f108cdccc05278085cb9ad3a9b38dae39d921b3f650f5f1ebc8aefbd773236
MD5 199ff5d9aae12fc8fcc48376f666a4fd
BLAKE2b-256 e9b8c8378b934fc1639a2b29c56473c2c9c7262b8695264290fe89b6f0a8f048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a27443d8102aa9b933d14e2298e518f673dc2c0410a71c6ff0106c2bebc6c9f9
MD5 2e604952d3787e6e98e7f5c5805f3ac4
BLAKE2b-256 3d2a4215c87cd2d4c172b8c979a7abdf17b9199769c584325536cdf551e0e2d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4651066752ca1dd659115ef06bdad860f2a38a3775cf3fb3ac5b070b724cac66
MD5 e183042a66da8e3e40ffaff242179585
BLAKE2b-256 552577abf93ed7bbfcab0665bd06b5289a93608522be0515ed5433d17ececd24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d88368d07a19a506d53112fccc99983104b1aa9414b92dbaba958ccb94098e78
MD5 42d50f77f88e87e02511c74b6bfc5a0f
BLAKE2b-256 84deecc20ebff64f743f4795331c89123f9ee016a8ec21015cccfe8411d2f77d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c20b85a3124c8e9920b1b7821bbd2460b9cd8e06160ed97b058318c6785c2f3
MD5 9f89db3c4798ccf918a96d15e25dd289
BLAKE2b-256 8ca45286e0ea02cabf85a027e1fd0d8ccc3bdece24e8666f7432beb21f9ab9c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 394418b63a80e0dcbadd8076a214ec8c05a307fb80bc9332837efead2f0d6c2e
MD5 214f8ba4e6848e15dbabeb374505b69c
BLAKE2b-256 9734e2d72270c4317ba8d0426526bdb3a85c004f3b319c16745b79a4088eb8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ce27d7c8525f5c4d3320594a9b51b6cef96a2d59e7a1097ec2006320a4b3007
MD5 1770768bd9deec2713bbee7be663c1fc
BLAKE2b-256 edf5de2e9f52db2d791ec80565a5abf6b5bdc4030fcd31d0e62a503f75083a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 036b43f8f255876bf790e1a114ed476589ad73d209ed4446260231c04fca043e
MD5 08ae4fce0cbd7b566ce7a1464577eb61
BLAKE2b-256 4440bbcd082e839848f8ecaf04fd5ae94bc963bec2ba11cb0099d1bfe2fa9c46

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