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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.5.0-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.0-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.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (966.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rignore-0.5.0-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.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (906.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (959.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (941.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rignore-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (979.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (979.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rignore-0.5.0-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.0-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.0-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.0-cp312-none-win_amd64.whl (717.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rignore-0.5.0-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.0-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.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (963.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rignore-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (864.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rignore-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (905.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rignore-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (955.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

rignore-0.5.0-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.0-cp311-none-win_amd64.whl (717.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rignore-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (939.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rignore-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (975.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rignore-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (964.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rignore-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (865.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rignore-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (905.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rignore-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (956.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rignore-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (808.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rignore-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (859.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rignore-0.5.0-cp310-none-win_amd64.whl (717.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

rignore-0.5.0-cp310-none-win32.whl (641.9 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rignore-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (939.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rignore-0.5.0-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.0-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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (865.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rignore-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (905.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rignore-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (957.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rignore-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (807.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rignore-0.5.0-cp39-none-win_amd64.whl (718.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rignore-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (939.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rignore-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (977.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rignore-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (965.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rignore-0.5.0-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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (906.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rignore-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (958.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rignore-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (808.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rignore-0.5.0-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.0-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.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (965.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rignore-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (865.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rignore-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (906.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rignore-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (957.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rignore-0.5.0-cp38-cp38-macosx_11_0_arm64.whl (808.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rignore-0.5.0-cp38-cp38-macosx_10_12_x86_64.whl (860.2 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: rignore-0.5.0.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.0.tar.gz
Algorithm Hash digest
SHA256 355bae2a92fc074075e89ecbc08229bf2aebe557d89b62efee961c49961ab10c
MD5 28d138edc727cb909f2017701e3af5a1
BLAKE2b-256 8c7ac5f7f75c75b2e3a3d543a71bda40b055269e8f294ee78372eb361d8409e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b4edc3f8a15c31a6093558ee8a3c124f4d01e276304eaa287abf246fe1f48bd
MD5 a85b886e66baf4d3be14b4d7ae334049
BLAKE2b-256 60930ef3eb46230279306caf6c90932de5ca0fdf2ff919d462abc505c00e2dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 605e8c67932935e11a01a9e3c2efcdf6cb0a586775c3e2ce05b4ec4d6f37616d
MD5 db2b25e9f622a72c5ff820e3b3b0bbb8
BLAKE2b-256 d28c428f02c6b0fbece428fe894f13e62c0cf0bda6004f06f0ebd2ba8d6041c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a93311ac030edeb5bc47605c6bd79b96863c6f2e2c2f00548fe50387161a95a
MD5 71782d4bb165e116eb5a373d770155a9
BLAKE2b-256 ff62638cae931a8a2d3907231dc7a0c808591fa09b5681b292c2fc5ff1e9ca55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4639eabc5b141ce450d365e97b0d9f8a9a538a97a68ee1e78e3b83d55195dc2b
MD5 adcc2c8f31575261de849d7f7530ddf3
BLAKE2b-256 97e0fcd37ef6c2a942d8e552bb9a5fb202f3cc9c9a6b53d4cfdc7c96b22ae184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b30a344cd8de50c108940942b54fc7f64197e2f79783dd07a1ed3ccb4ae3591
MD5 ac98bec70dca49f36092a28e40a448db
BLAKE2b-256 47b36b09815bf11a829997f5aff05037380d2d5eeb2046290c5b34f3c97661af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cee0e4f472ed466d9ef7ad564e22411ecb9abb3de43d6bda3992abedbc463523
MD5 19e010d4def2a48ce8b5dbe6891c57ae
BLAKE2b-256 78bab2c007129cefcdadf6621b18c882dddd431516a209ad370f95c866e5a8c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd2646a86015be1e491d1462ce5b0daa2e20f78823422bd47c211204160b2557
MD5 a7657803078d33ecf6af19d8f9c7f1f7
BLAKE2b-256 2b5e1c0fffaa8a9c455b409f4b85f4a1b511e3790b61f30c05cb650ab82802ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8a73aef3c67e0c996d48f2697c163494b51073dc18f5c5fdfb53062cac7143f
MD5 b7848c69fb2a3a935c534d4bd8e00732
BLAKE2b-256 afdae4b6cc7d374fb087d70b43a43546fb7c2647a7f88380ae03956b3d92c605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f27990d6a44ae9bd61758bc8a00818bc046b9698a99d5008002d8dcba129fe1b
MD5 f6999d6553344fff86ba0fbb204910e9
BLAKE2b-256 0eed19f2cd5db86bcbcdb551a4dac79b5c113c3def2ae03f11f4a8c008b6e6b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3810b7803d57963c20588f07a400a7d594ed63c426b39c4e9c800c10214b3b0
MD5 c0c2ec0175f37f5efb7f6019edb0a01d
BLAKE2b-256 6b71a13ff5db99246ad307b679251152e730035e6b83ab972144fa5ca39adfb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12def8ece37bea2692010a1b194d27dc8996380b2dfa3ed26afaa49d95bb8095
MD5 e79219c097e80e626ebcd3cfc8555af3
BLAKE2b-256 9e9be986327c881b988e6a75e769b114ef8cffd05e939a503126a7eeafaa7958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0caf50e541a0275dcbeadb794a462125e081f51135ba030b2b4c45cd703a8352
MD5 c2b8e32bea3b4c9eea09b50569bd7af1
BLAKE2b-256 050c51c7f0013d7771c2282bac32635a41f10b86bd82c3688b6f6b5ec649de60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20180614b78b7edd9ffc06c6acc18101506e6ea99f0c446143f54984e284b76e
MD5 1fefb8534ad01587d075134d35fcacf0
BLAKE2b-256 c4335e8cdb95f319ad70f8163d92534722361047211325105c4abb4b019cf3a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e736149c2a65bb6e646ac3cc8fb8fe8d7c3d7607fd1b624f230c293424c83df8
MD5 04787efc5bd64e069275ea2b6ddf24ad
BLAKE2b-256 14de5054e3b9ae731ade7c497d3803694cf79966d30464ff24eb7ec5c9f93eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 184e5fc5f58eaca4cd932a5b5add80c7f432dc9ffa35b684347118689afa07e4
MD5 a058d7b4bd79b23462f0c38f4667a9a3
BLAKE2b-256 399b387d6fa710d78804b50ba1ccc344de18cfa30584950b05ce6876a915e0c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4054363bdfbdb524cba5d02eadd728bc0cfde7dc27ab034f926c407a3ee077f
MD5 c2885bc2b852a99a6921f50f98c5fe35
BLAKE2b-256 39a96773ea995608a559ac3fb0ae4b251159ec917327cff9efc380e1d845aa1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d0a7cc40dc8fe16848ea64f42360c6d87db2b33f1af13fdf6ef0d98319901b9
MD5 602085fc14f1b6a483a7b209950a17ab
BLAKE2b-256 71b6af4611de05f04c6d7ebf3e3110c33708afe5206ab5cb06b9113a63afb9cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58f53df8ac87669dadf21d8c686e0dbb1db2261e1507531756fc971ca73e872b
MD5 00e4cab8d50582247529cce119f25a26
BLAKE2b-256 2b6ffb07ca39a65ddfe69a73f2add93578698306e366b8d45e3dd89d5e2ac7b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efb99d6d7c8d43a5f65b26edb13c48297daec3d759aec571b8777a1f199f710a
MD5 1c41a896fc09ab1ef14143ca9c9722bb
BLAKE2b-256 6a913e0e85fc7f1a8b3171e725c2bcb97eaf6522466ba909ac69c7ad93593279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2aa3dbc84582af5c4bad764a7c193d34dadde61317076d531bd57577a1170a7b
MD5 063d5e16f44e2f7f42eed6796aa97c68
BLAKE2b-256 a1f89cb1fd10be0cca970b5707ac381e3a12f82a95d105fb3334675ca4f57f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee6fa8f92744419ceb1b0ca1839b686d1afacd3769e5d83aa945f16fbcf80bfe
MD5 69f4b6522b60a118dbf61c6623b9c6b4
BLAKE2b-256 d7b2c86dcd2d51d572034f1594f6c2f3c5660d921b189c542a36edc48685cf8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0eda47401c0e67613983a56ec0d257e292544df8e03c676ce2b919efb68d9203
MD5 f7e4547b1e98f64bec71a8bdfadb421b
BLAKE2b-256 90254421ad52131ba741d66a406b5d3c0a62f95feaeb8316fe8f817b131fa1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd113a26d1fa43556fcbd074bafc0d010111f297127f7b06c0f8a6a6f9c3fa52
MD5 42306b38187bea490ea2a4c51596d6f0
BLAKE2b-256 d9b2292f7cde0214b6bc97e5c9644e3d49ca41d4a534394c945b5f1d10a95117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e84d00a18689c667dc8bbc497606c121f13eb14179d94d8a6d398d1b5139a02
MD5 2d44a7623e22db35226ce0e49f2b4eb8
BLAKE2b-256 57dd4e7dec20714af6d669484745cfe6c978473b72a8c078241929455748955f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 257d7d4bfcfa91f1f3b7f6b046e484917e2b080e5eaf12a55cd456cb143f31f4
MD5 1fe893202d40b7455aec4e2a788a0831
BLAKE2b-256 3ad6abb2ee1bab5f76686f9ad548a3764d07c8d08249dbe75c5379da26927bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 733db9bd3340a80b06fb87ffdf6641307a396776c4e6e8b2c3261be8397a6c24
MD5 e294b6bc019ac593cd2d48e29c176053
BLAKE2b-256 7a843579c5a7a83e59ca8b80ddbe824c42d9b7f6517ccf1d3118cd062a41561c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc3b174b3b00116866356f250c5b7f9320499949e6609904a050519cf453e839
MD5 8b6d4ed5bfd1521521cedb9a7941eb3c
BLAKE2b-256 a1ed2c5fec5c14a3546b895ffdd1a420f27525fd7fac13639ce07175d2e8d16a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58546ed264b0a07a1d3a6a49089db4cfa02dfaadb5f9e623cabdab99ab4b491d
MD5 9c37140c3610a9607fef6e32768d1007
BLAKE2b-256 a236c194bced28dcd65fce55bee81af054b7708e8c2533236313aaeda02c0adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ce3d54795faf99fc73613fc17c21d22c0d24c5e862b29980a32fa0287b7dae5c
MD5 f44572b1b55a5e1312e7f0067a8d46c4
BLAKE2b-256 d19fe775fb35e5ef34c1428983de99cc820fb916a8c7f89130ea5a8ba3a78adf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.5.0-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.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 04316e3fb8b549d6e11e8685507697ef850ae1a2c3f76460eb4cd94ad9845064
MD5 8a3afe7e01df068f5e0b7a750d1a7699
BLAKE2b-256 42de79d6a3f04dd5ca88740a8897f3378f8cd68727a66b616feb82893338fc4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 785c8b7a95a48c0f0d46c4fd1cf7bce6a0002ce780c8387894099d44584ae8cb
MD5 7b1fe67a9cbdf3461eda1f078353f719
BLAKE2b-256 c8b393d171866108ed00b48167788dd78239b39d8f8f3132cccf1a3d376d73db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3013f8df12d3527e27165a5b011a28e7acc4ad57baea6514b6b8275bcf51055a
MD5 45eddcf4a4869abe2fadd1c696426de6
BLAKE2b-256 d5db4f18c0239750f67c16efb82e65eca0291611ef93791e4211ee9a8f65f466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2fa89a8b5f2ef6fb8402c94a2f292a728bfea286f40af700ef6e74512974395b
MD5 e397ed9f90bc7b440db3b0f75fbbfadc
BLAKE2b-256 8508c13ad5da8c25d3f3de892f99c661f172063dd7c4c39a288ccd2d0af402d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae7b742368f5e170bb59f996d7e02950147a0bc90b5fb2bcdc8f4cf947804c1f
MD5 2fdd036edc0641203a88ef3894374bb9
BLAKE2b-256 3e1fd4e647984910d368709ec139b01a63210bab768f52f37ee07bdcee9465f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 baacbfa7d04abad9b1600ac9cc96cf0314ec855c4517833496dabb70ac4ec704
MD5 ba040c82309b68c6c2ccb0f52f0fb838
BLAKE2b-256 df8a8b12aaae602e54270b0bbbf74b7f0e8278f59ff3a41616cd291322880468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cebbea64533b18d8d778cb155bd5cba0f442f1d6b3d9086a31e6b93b0fc24136
MD5 de83e8ab8699ebd96c626afbcb966933
BLAKE2b-256 688f2ec6dc7d1717c9012d4a9f7c87b302ba15f0b320797d552b132e6cc329d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2fb317afa8d50155113763a33ff19aefc7e8be1d04e25f6a7909b600c389f31
MD5 02b6142f2a9aa0dd8f5cc2b694b70436
BLAKE2b-256 70d07f8c2205d0dafc41d6b36719d931c1e6417cba61757170120f2357429ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e41a3eecc04c78ad6a36c459e7a3d8af1c156446ade5f360350404922965755d
MD5 cf97b89cad07278123f8f506b15bed62
BLAKE2b-256 3fe8a23be09b26b8fa5830a9c2cbbe3567ca01ae394798a5fe31a9ef11992511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 743e90d278aa5f64a2637277e3ab525127b696321cc53d5b915b66e88b1218fd
MD5 d1075940afa5eed0e0242e7eb6a73dad
BLAKE2b-256 781ac0648570df80541594dcb1cf24a40000304e4d861d99a18942ea4a70d2d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37bb2dc91c8bde3ca7b286d66a36b8f1b3bd0bc4a2400a0326f6cfe89dd4bded
MD5 e6cff5c4fecacba84c14862a287a4541
BLAKE2b-256 061a72bc246f6a508a1e6db0810af752f1db7f9ae611215fa0b955d1ca9c6ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bf6af56ce912fc6091e238f7bddbd6f128cfbf2e1219f0a21be789ba6451f8e
MD5 1cf421d63fc93b700a3b9d7948f3f6de
BLAKE2b-256 3a79297bd28b749ed9c59677e23c539dbf71cebe5dc9dd4280b282386cea279a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9de323a91daa814d583299c28e69c0a043b9829c0b403b187a5ca0cccfdc2a2c
MD5 dba90bb0a7516aa6bf490ccc146746e8
BLAKE2b-256 f193f9e9df8b8c48ceed431efc602c116f794dad8220763936ec613e973b4157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 71a12b76dfe08a5ccdadfff4d22ba067361d93fccbf37f4399d7920364a17402
MD5 1661d0951227097ea82595be28e46a9d
BLAKE2b-256 67286c9e9e1a714cc06d6ea20c1159ced4a96c91b94134435bec3b495ac95e6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.5.0-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.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d9c3cab84c0651a7fc89d8ff8392ff916cf08133e3acde0e68cbad8a7298f21d
MD5 d04d5681d5b370c3a22ea6fb1d432d1e
BLAKE2b-256 0747b48aca99cf0fd6f54f43a39d799af90629c1cc3bb8df29b44beb6ba0cce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a710d8d27087a06dd55e7ba64a9c77533b94a6d39a6634fff0d98abffb5d04c
MD5 4a523101a375c4c5a4d00f714f28c0bf
BLAKE2b-256 c6019d55403ef87243f6adf695edf87ced17640448f1e38353dd130d947f6321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 819cc77d4c3db66e076bef7f7fea916f7196fb84214a56cd4148e77422045b81
MD5 cd8321de69a78960362a47588bcda05f
BLAKE2b-256 50f80232e8b497400172dbf0b2f6cb4afb828b4084690fb800bac47c5b89e9f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 01200d4696004d1f6d02866b03761ecf42e77b65bae5db24df98523b4023eb97
MD5 50d603e3aa97fb4f3a089b224d8dbcf8
BLAKE2b-256 39c5c8ac08bea4a5a9e9ec28d4548c564d21c41f06d0b83ae574341dbf34dc6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 283379e9f04adfdac5b53e9b93093752075894a84f26ad81e3a2a7c9c5ea0782
MD5 932a6bd6d1533f12b9c4a9ae3e59e3b8
BLAKE2b-256 8b3f908fd29c03539bfa09454548c5934bcb7b37a09fdbc6ee11a1f6e1521b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 888d3dd8b9b2385cfc09f549eea35b2caafbe0fcf203b5cd311a5100bbc06a98
MD5 82c4d547dcc027af37e7d6cf24dd1ed9
BLAKE2b-256 d070a4e74de8c730165570e5915cbb7bc614369638be3efd2e4707655b7911a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c95aa5003a54a4f24c4065363ab7fdc0f1495c2cebf6cd5629e71099b7422cf1
MD5 afbdcd14bd50a92bdcf767b550e1f7ac
BLAKE2b-256 bf0b3cc40ba0eebcdfcddf63eb97710c97bc57b23e17715915d6914d25da4eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b62b331479e8605606977bd78e32dd07bcb644ec80c869e6384da2ae3da5b097
MD5 8820be4bb18c56e1cb2821e3030b17d9
BLAKE2b-256 b18914334a8cade623a047fd290aaaa9e615bbcf95b92350e6ea5b22e9aa29a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e05457d15a79a0f3d9493b456d654f3edd2bf4f93f54532ba6697a5e47111e45
MD5 2f2fd2750330299d9b14c9006c1b5952
BLAKE2b-256 badfdfd05a051e645d1c688df17b9cf389ba5ca4b7c61fb86b0eba7869936142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1b3893a38c162780420fb27bf38548ba291988984cbd7c06cfde7d9f9a52f96
MD5 babbbadf93a1a3dedd6aadeaa39e2235
BLAKE2b-256 5592032e76f1f17724c5002644c63464697dc803e395b32aa23744cbb40d6f6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9ab185fcc9601cd3345ec38739a6510643c66038c70ee9b22d88652f4a501cfc
MD5 46fbf375fde5c36ecdc68c142ae5bc9e
BLAKE2b-256 9ae422c6e43300b99f5cfb0c563ebdde267389dd8f8d4e8da8c86309cec76100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4a7a06a9c63ddb8607e433117d84da6afef16ab2b52868a54e709257922b1ed
MD5 a291a7e88e2a035c6fb5e83c7ce2482e
BLAKE2b-256 910776d0bd5d1807b8215a96a7ff0846eb67066d5999d2bf9eadcc3f4b72f8bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 299257eef1366e02891fbfdd772be8b2dd77466a15bc6dba1a1d5b8d5cf2ab8f
MD5 44a0f9070fd4d313bd223cdf450bd0d8
BLAKE2b-256 9eee18fa8cc189883038b816b3d83afa8af7f7c99a337a50fff4dd3d7d7b95c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 74b6028cd002b15a6e9952145ca179ad94e032c1854bf90382040863edd43663
MD5 5bbfed41007b19ee4b33eea78cb62958
BLAKE2b-256 dfb806b880cb16412b73958358a8edf95128d32d6ec2e0726fb27f74ff0bbbed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.5.0-cp310-none-win32.whl
  • Upload date:
  • Size: 641.9 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.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6efadb7da8ce5c88d3ba36a8203a90dfa9a95f293b80dc17026ec865fe97194b
MD5 f2cd512c562b3045912b01d5b02aca02
BLAKE2b-256 bdbfd14598e6b997211f2f35ffd737a7b676f2e43b5f6d336783fe68bc5fdf11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 899ce730264001bed0095782550bfd5de2af1abb45c789f8b05028931805d239
MD5 63be7616a2902ff1284b40e45be7c154
BLAKE2b-256 b2ed0f199a274072cb8f870b873a5423fbd1ffb654f9a3662e45a2f3cd31aab9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 598aa97d1321051ce005b824851229e72f522e7d9dd1bf548726b58c5f774fd1
MD5 ad7952215dde8b7e3db8c69cd80bf08d
BLAKE2b-256 b164c64a42042375dcc47a100df2fb25206bec6726f1994a9d0b897b521cbd13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 443e39e3bc2afb224840f4af3ab2f2300ca527ea45b3068f8d34cb08777eaf54
MD5 6638105ed1313541110f5e1e72e6b717
BLAKE2b-256 3410ed90e13f65e08daccaea931c1644a1f095ccaccae712a0f7bf3b0f818798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e56c0fc28401a8280ee038826a384007d8a5c2609a2a06e7962b9ed58458581
MD5 91a9a0fe9a2df7d2bea56914d7c308b1
BLAKE2b-256 a887a1a17eb9a4113123e6b2995eba9cd73b57c5c8dc7ff1eefcd6608833f598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfdc0a857628129d75929f32a7a96e083f7a20b77905798c8b79922d9edf38a8
MD5 0d8106895a05d6a79b742eae4a38c020
BLAKE2b-256 9f80e2325bf7a694362b375147fb54a154f5a04b68eafdcb2f3978a4a4b4e705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 359728653bccba9861beb8f297baa8f4f0655e742230d717a3aea4fcb6b5f697
MD5 8e84f6fa1f097a364f1fe4bf3359c984
BLAKE2b-256 6f7cdf11272010ff146f38aa235b59de287ec0933735a099abd085b3626575fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a7033196e8a317388b8b3db7ca5bbecec1c6af2fce3468bc6ac11c9be614088
MD5 a4502abf7898d9416c1022e6fe108579
BLAKE2b-256 c12490958d1ed92e45893174cd15283bfb415cb9f11ab6562257c8456d4327cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0666c44784a37b158a34d95cc42ebd1007a3604815817084439313ac08ea12b5
MD5 d81e718745a6defc8072aa67804dc0ee
BLAKE2b-256 4600b9b53b5cefb9781569644eb81648eb4d17de6bc2b85597502104345b5d46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6ed20aa1466fcf53234c1b89f74cba3987ba8dcc3be29ef5e110b72668995e6
MD5 3b70be9e59cfbe985bf5fef1c0aee2d3
BLAKE2b-256 178217b845c4e555657cf42a65ede6a65aa05c5241d105ce1ca87ee1a74fd980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80144c855ec46db650769cb2218ee76d0ce27757ccb9d12a01f9424886b4db5f
MD5 693d877a44e1526217e3ee3e4ca5d60d
BLAKE2b-256 ea85fb287b950a783336c1c6807dd5c39b0bc552baf1c5767e57770c9cf0a228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ee638a481c9fe9572c829a9872100e6678db0012201e039d20b97bf9f038efd
MD5 3108195a905586f7b6b2f8527980f5ec
BLAKE2b-256 cd93619cec5a86f284d2aeeb99e7d38c90530f475cd81b6ec15fed6ace29ae00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 585420ec8547bf7a67f91d3aa46d58aac5866d310af91ab51781922503b7f918
MD5 60cd594d81bf9c0a8c34677774cdf7fe
BLAKE2b-256 beb0fa254c689fb2447485a35da9a62559e35348398554f6de109b78c7801b5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.5.0-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.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fd9462e7bfaa2cfb91763354e6870182e96d36d4af0d2cba3abb3061af4ae0e6
MD5 ea6c1fb2ada0e460797127e4c5d9c0b1
BLAKE2b-256 e7a3f4fd279ba4c0a4237e1330380ca232311b35c0583587d9629cc9f404b0e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03d0439a3260c59a6d22b55d604dc5fa6174563b8b6533b0727a9960121ed6b0
MD5 b04748618667bbff9ca78691844bcde3
BLAKE2b-256 a85751eb00a84fa22c56c9e55de101cc2ad49a8f21b143fa6e216b7f704b65ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b3a6b7364c86c5f05bb86fca382485f6861a9821a47fa57bc2a1be6929ca78f
MD5 69957313cf27775dc8b726e2d576b347
BLAKE2b-256 75ccfbbe9c43f7868757ae9cd645025ebd4515b8ee01881620e4ba3de36cd581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a7db36b4b61559f661ab750359f106ee0df709f581bbd3d75cd2acbd53946a3
MD5 56eae8ff3cc46a3ec1834f092c528a3b
BLAKE2b-256 c87270a0e0401bd065d528ee6dcbbb3909501adef33ae6d5be4530d1a1eb9185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18b174ee34ce4e4c01deee25c881169c400948520371f3cf8482b07573fd5e08
MD5 9e1ef77ccc9213c2198a7c21dcbab5c3
BLAKE2b-256 6a6c8f12532374fe4922889e38944f53236ba956c2b873ca7275d9f79d2433f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1424b55fa95fd2dcb1e0269b961e8311db925b69ac54e52050b3e176b7f15baa
MD5 357d0b87240a8068923c8dbc14f1c8f7
BLAKE2b-256 fa50f6a65cf41bc809e49422e5ea7f20a2626383f62d4862e51c9559fbec335e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5dfe10abc4e56c1d9f8a874ccdfe42b08ebcc59b6f5e28a011cd521dc7fcf0a3
MD5 42d1376489cf7306e81bf81fd4d6d7ea
BLAKE2b-256 d030264f7c9027a48d88f47418b531471c2341b4399b2bc07372a7433a75629d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 037967a70f1ebc516a0ee4457e8bee3329f7c068b3dafa3dc07a5f8064086bf6
MD5 a349a2ea4a83ac50152d1991d7918bd3
BLAKE2b-256 12ac0da8c00fa404b3ee63050606f5be3e9d0d0d2482376d9e7692266288a354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 651e15c504b2c5309a182290383cfce5f12bbec8847943ce124383e8cb064284
MD5 9ce1cf39746ce14fd0fefec7fbbe4e35
BLAKE2b-256 f00664076cb278f1c44b0832004d99f6ecdff860eec7a05251ffa1850329e82b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f929d8146649f6b173afb115d7ea4be432e4065adf6f85ea326ba9508ea89114
MD5 6b6a4d6f862c126ef2e1a6f5fb689b60
BLAKE2b-256 6e7b07b31f9088b4cc1b6a8a8ea77942972bcb558bde014cb46dd4c1b3be391d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27df7e89d4074b1086c98de52a44464a23f9cd14f3b8f469d652711629411f89
MD5 d5e4a63f60a71dede786251e7ad03e71
BLAKE2b-256 585735e94740cfa4be7abaadacadf71fbd6635b6d8cb9854f5949acc6bcc77c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ea78c953fe2cd32679f26104870a48f64b1cea248f5e622d840d850ce07e516
MD5 a1da6126c4e7d6053738908f28367acf
BLAKE2b-256 a726d1d3f2f2339c962848213c55c7573d12b66e57dede0a4ff10a3fe5fa8f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 da3221039b0c75ae9921d76c198be665affcbecdbc9f4fbc9e1464415e003d37
MD5 d58e78025d210d21f775fab1bb355c18
BLAKE2b-256 c42002c5523b93e3d68eba02462d5965ed5094cf4435a994812fe1fb01e60d0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.5.0-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.1

File hashes

Hashes for rignore-0.5.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 00daedf8b5215265ddb4c9ba27a16bdc8c549066f4b5cf79beb9a164541f351d
MD5 5c0daa2f26fccd8c3a28d643ed2034bc
BLAKE2b-256 3ae608723efad777defbceed84047517041a6a41cc77ec62447b4a620dfebb3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b80c8d5669cb630aca286067dbdda120cfd8697fc543483a3d5853f136fb372
MD5 faa8ddff049f1856432c388a7adfe8e9
BLAKE2b-256 f4a2406f28e1f6a79b4ca39de0c18e40651fc7f4814be8666806ba7b0829a124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f36a667699ce83308cbdab048ea0e4b8117ebbda400cc024bfdf5fb83db8e26
MD5 f0f70effd6deffeb3035a1dc9fdc2481
BLAKE2b-256 285d2a54e7be1b4bbef08b9c9f7c6adcd967e6dedb816e7f71d9fc95a60ad103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98acc764d145f7e20be53255788ef43e639809e927a2ba731221b50c59b2cd3e
MD5 ff776bc07d99aade0d1b8b17e014b9be
BLAKE2b-256 7a6ee98ba0e520632a3d7d232b7b322cac622259b76945696007fccc98bea14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 127abfbade5392a5ce79ba2beaecf64e458e23f5e902a4fd80f8de3c2fb9e449
MD5 3c4b128652684881e664edcf942a3341
BLAKE2b-256 1edebd34770eb451c90d47ec513c522a1b642bba21efa55a711b60df7faf10e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbd6650ad08ca15ef2c76caa25973daf6253613ffeb921e4b848a325e5078b7a
MD5 fdfcb439223c8f327774ed3b80817897
BLAKE2b-256 20908169ee863786caa74af2a1e239aaee3b2d5d642eb51ef4fd041526c89d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d75f0ecd9bc64795f202932f666025a2d95bff4d433e0cfb28c24f61fb8ffabf
MD5 2900669cba19d1b464ceaea86e235cd1
BLAKE2b-256 b5e47d2a217c52838087924ddd29491ae5dea4972656f55db4508695f1dac233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7cf355507a10e145cc634da9e930d9a6602ac856e3d6f62f5d80bb023668dd26
MD5 d966283fac66ffed40a2ab47d6a2d9cb
BLAKE2b-256 ac095cdec7fa1521d1d55e6e501e7c8451294a36ace283c26b971d9de97b165a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e852e2c88bc046d847209c1e7bfbe691cdbe674b4ecff57d7bb5272ff0c0e07
MD5 fd41eaf49e957047648ec9eec4abc18d
BLAKE2b-256 aa28a80b07fafef4614ddfca6d937bc5344628e0865c92fd438ede29956f3fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ba93f52fb45f1ffc3fc559504ad99d5c2f3c166880ba30f14bb99a64568f034
MD5 b626ad52d078f736b754019d28c17cb1
BLAKE2b-256 c82bb69003668e05496eb5c939d9c3aab2a3480a47b5a375d99dec17f47823fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31cca9762a3b28d2989b2a685ccd5630a7ae6741b0fabe659a774fa17a786591
MD5 fb32b92f9f48b3bcdbacc38984647667
BLAKE2b-256 b8fbb8b6818d309323aed438de3f137063273c6b8fd325bb5e5a24b5dcc1433d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f44404fd927a7c712437616dce87b4ff6eeccfbea08180236ac7011a3fd71f0
MD5 78e5747c9433ad60149a20b44cca0392
BLAKE2b-256 4f009af8b95936b15f8d8286e0636a42ae1e55f608ce044773f6feb19ee744c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.5.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2123f2aed374353c2527f6cd33bc5e8b401450b69e6261af7218af83a28b7421
MD5 a03cb7c16ebced099bf729eb8466d76a
BLAKE2b-256 fdc8e670a7d5f53b0c385c6b717b88d34be6819710344db639d7ac2f94b4594b

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