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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (952.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rignore-0.4.0-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.0-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.0-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.0-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.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (968.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.4.0-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.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (986.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (980.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (876.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (920.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (970.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.4.0-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.0-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.0-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.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (920.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

rignore-0.4.0-cp312-none-win32.whl (642.0 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rignore-0.4.0-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.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (985.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rignore-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rignore-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (966.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rignore-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (814.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

rignore-0.4.0-cp311-none-win32.whl (642.3 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rignore-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rignore-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (984.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rignore-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rignore-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rignore-0.4.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (814.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rignore-0.4.0-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.0-cp310-none-win_amd64.whl (721.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rignore-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rignore-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (985.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rignore-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rignore-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.0-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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (967.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rignore-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rignore-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (985.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rignore-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rignore-0.4.0-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.0-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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (967.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rignore-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rignore-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (984.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rignore-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (978.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rignore-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (875.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rignore-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (967.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

rignore-0.4.0-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.0.tar.gz.

File metadata

  • Download URL: rignore-0.4.0.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.0.tar.gz
Algorithm Hash digest
SHA256 daabdb509cdca73954e564fe87f3b9612a69ff2168a18da452f7706b3ea38a7b
MD5 67d5b34820043e59ae44253f41d7b32d
BLAKE2b-256 95e415118153e1b5655cce4b44a917ad4b85c98d0c04307bfc05318695fcc15a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b1a3d137e6b4c62f4d02f2ebb2482de0e44245961ff0143f313498501230feb
MD5 10c613b6a724459916b4e90a4fd73ed8
BLAKE2b-256 800eca597c04eda963f69ce58e21b2324d696f934ba8399cc96178827efcab75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7fb78ad4d88372a37b15b26f14864b6855296c25ea0559c09bb373ff638eaaf
MD5 82701df83fca76d0368f15bc104217e4
BLAKE2b-256 d7ad28f081d2486203e570f0e3c2efe4db382ce14e24ecfc5bb7d1fd0fecb279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 307fc9c75808c0567daaac7328e8398c8e154fe55419066bb1d1058f8c55c864
MD5 4ceadc616f50e8da521fc053aaa8a5a8
BLAKE2b-256 34db939e6cc1cdb2991defa049cf5d66c89b92097a752caca80bd06bc178528a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f76fc50f7be4a636c5c91567fc82ff710777090b6b105a6370549e2551c7551
MD5 6adb19972b44e6320fb013a44c2897aa
BLAKE2b-256 214a53d867a9f1700bb1489c31e883a2707c1ce7816e98a048b7db3265a3a10f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e435a4a3c29ff590f86047247e95607cdfa0f65ecffb644fbc899c524cb289c
MD5 858a0d93fa63fde68bdae199dc6a9c24
BLAKE2b-256 193cb977d17db6bff80e39a25fc6b9cfd6d338803125b6c22670427d186eba9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b61bf303b9d923541741f69109ba7ec677b31ca3126eb9b49347d0a4f7c9c513
MD5 995faf73d5cfddd8fe4424518543d4d5
BLAKE2b-256 3bdedc97162c7823a382b50ed15887ea524a46b14b08c9294acc28c11ce16337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d19348bc93286b8e6b3774aa0f386a892840f8a1fab887d12742972d7fe35855
MD5 9548e21dffff0492432848f1763875a2
BLAKE2b-256 11f31f83848a3cfca019008152f1007e309d5f24d9efb232f49f0065a707d94e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a048e7197b5a4b5e531e0240c95c7e641a8364143ff523de45083e7572384834
MD5 1674c3220843d891dfde792ee29172cd
BLAKE2b-256 6af3dfc45bab9465978153807d080a05604218282a320a534b5c902a00d8c5a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cbe6f4c3105dd4a19b41d5322444bd27aa914c6b2986e0e828b53813bac8d9b
MD5 745a2c51139d0599dfacc10c677b7c96
BLAKE2b-256 c776e1f7c0cae4d1484275f51f84fd6fe8c557f3b48b31aed48e91da81b678a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 82f595a5eaa49c780141fe765af6a7ffeed1ca8adf424ae86595b378f82838e9
MD5 97f17cd508375b688e3f3c8b5f45e820
BLAKE2b-256 4c6fddf258a226ae1a4d168809bc5ae75d8914e401d423bbbe1d66ab13c04990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b54bbba6ff2407abc3ed511c582e88823119b2f1dff8c4afd5bf82ebd582ebb5
MD5 eefde1e6a2056cdb292dbc975da1b944
BLAKE2b-256 8605a456c3029104d45afb57f31f25a9c323eba22873ea2a2e929984397e2943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0470c937d9e260571b4510c2eeed0220304aeddbb09b17dba5f9333c71be786
MD5 f73945edb7edad0ae1c7669516f2973e
BLAKE2b-256 cc155ffaf7fd135c4be417a9bbabde76383a432af030259e3ba5fb3197bab09a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 404161bf4d0d4b75fa6b7578ccec3dab27dc394aa52d528d089891c5f0c0c8e5
MD5 9d39a989443342db4863091a4787df88
BLAKE2b-256 b8d66ff154b906fd3ab26b51baba1bfba8faa34d4107ef4afac7b1a53fcf844e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcfc9ca1f0957719de936143dab8804609f9debd6fccf13b89f1f76ffae837c3
MD5 f0e97801a56a60390f779955aea41972
BLAKE2b-256 27b3cd7dbaa60be0920473bf5792ccfa3607c448a9ca24657740a8f25f6cf3e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3efc853d391e48ea93ac5f211675ab169368f5c484623e9331c9e3ff41fd69a
MD5 c831258e396f787cae0e2fe2924e2475
BLAKE2b-256 f4d6da825e7a2e2d61c07bff6de85023ecfd66717a6006d543ab4f495c04075a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e1c2d8ec4a2c54fe3250acfbceca349bd815576d89bf04b42256d00375e3c99
MD5 26ff58bfcaf26dbdba7bb811d39605dc
BLAKE2b-256 f9786b910b1c3c502770afc22bcd32c33c5e3fb2290dfba9b5b0d644055e4f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 960523fd223ca3a6a54238ff5216d0120b44f2fc16cf1515ba4a71e6dcc9c4c3
MD5 00145a744b33848fd1ddbec73f7e4ee6
BLAKE2b-256 b70e66d674a2f86d089c81755a0c0c515feb0d95b298c788200f0112fc77ec9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f3bb239ea2cbcf9a895fa71c89209075b5a389dd17c2e5a9f60a3d67687f483
MD5 aff39de4700631dd91e2e2bc495d5a8b
BLAKE2b-256 eb674f6d5ab48d1afffd0d1eff8a1f73e0308f81c0cdf97f42ed1d9692222e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c121cccf429bbe01a3cbbb8f66857454fb27b514e08c886a7af6fa69fb9270b
MD5 f5bb064c8b06143e5eb43a904883ca2e
BLAKE2b-256 103df546b26ab9d96320a2df1fddaea4b7fb5fa7dc2f59dd4a1d3a63cfaa3b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c98b3a3c5fe9c787e15810af73636df30d79bec0d6133327f2812d416098fec7
MD5 edc55bfab068c66d53cd7d718b392feb
BLAKE2b-256 8cfe675b98b97ad4636537075409f6566e091d55add0d8411c690b4cb2f23042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dae97f0af897f79df103b4d989cda0bb2239c63bd4cabc69fe8706a6335aba23
MD5 b70c57f4f6e59380e15e3d9dff13116a
BLAKE2b-256 22f2efc08bb39327591a75beeddb5d5dc98083153efe4f165f76da4b50afa43e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44d86a830bb3ece199732df4dea6ad01da247dc25dfcbb602b685b6be47fe03f
MD5 576d199e3c14d86d11c06d4099ddd5c4
BLAKE2b-256 18e73790d012528980500925029346cd46fc2cc620275eb4f9a312324ec353f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3eed0fabd208e28836166f2ca5acf8614e6778929e43ea8e777ef4609387ce9c
MD5 35316fba965cd285cf9657e8454ac1e3
BLAKE2b-256 0827118fdb0b6901c9ffaad8913151232136dcf6efc63dfc0043cf406315c4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bb45752db9cab955056d78df88e541e5703d4bf2d89a342c3cfdd0dd3bed4d2
MD5 a717dccd19ee0ba4d672347835065fc3
BLAKE2b-256 185823c9e110c679b8c9f970a69ab6457d656dbc7447667b241da63aa6edd45b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca06384dd3d882a8c70f8d74178e7ddc9b501787a09e2947dbab7699ef76cdf3
MD5 c41bbf088f692dffb5136c14cb2eacee
BLAKE2b-256 8c4818a7df0caf80694cd4fa02c2fc78cb7819474df9b4bd43310bb1a94aa297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8177c16abf4d1bedfe581cb9ef68910b2e97beadf4df6e4d00ddcffab2014c5
MD5 c109548524ddc8d17c7b8b1e76ff03fb
BLAKE2b-256 79aa51b36108334fa3d86a464db35b3aca2aa98ced234dcf3216b2764645a97e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a35f05b980fba2d6a5b8bc2ee3e57f6a4850de2d9f69f70c9b8ddb8ba867f6e
MD5 5dfe6211795cdc3a8901b771148c30b3
BLAKE2b-256 ee8ef0da02166ee6881ec3aa28a5b53c9686d68e1f8d0a8826d83061cc1ecccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59a553f3c1a706425cf5ec6a06b2bb5100edc077c7eb6ee4138349869c54cc60
MD5 9f6a4ee35efbc92495f6331fe0f21c85
BLAKE2b-256 2b89af18d012ce9405970932d3684130bf749ef36988108c1187d4cd3180d1a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e6ef29008ea02b2dad195763753994fffa1bf4dbf75725d9cb6962a5b381006e
MD5 05a1ce9956cd633d149acb86d8a4e7bf
BLAKE2b-256 7e286079d41fe89b67f4e84f3e7a75995181069133416caa6e2c6616862e46e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.4.0-cp312-none-win32.whl
  • Upload date:
  • Size: 642.0 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.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 dbc58f2bcfe1bf9cfa4378cf2b3f5f506c2e6441032905e5ab06e374c0f0a229
MD5 62e8bc8861e9ba9ef34d47064dd484f9
BLAKE2b-256 2b48138d6a70a32898d6bbfb6a7dbcb5a9a88ad96d2c495fb29a429d0f927195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04b475818e17f8089d2c11501c1bc15ab81ae13fa7dd599023736f37611aec04
MD5 d3adfea1c811968b404f5270f74f2c89
BLAKE2b-256 ccca5bbb30f7fbd4e1fe45b25b3a04e49d7b0ac78600b7b76b5cd2b809396488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb907a3129ba1623eddd0024dc014d60559fcf3ba3ddbf87a27a95cf5eb34fa3
MD5 7201f5483137270c1bc8a3c47c1c3011
BLAKE2b-256 67d373b1691dcb8ffedd3e9bfe1d60f527a6c3d320bae3fc36566ddd12529791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c5038249852e935855f56f97d698298d846f654f3a4d35ba7925c11abe322b9
MD5 0d8af95d1aae3e75b5d7cab74d38d66a
BLAKE2b-256 3de267314083cc61d5ca7c2480bd5c2ab06dc9b198d2511043add576552c69ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41955c3abfb4cddd8949db66eabd8947384b42084c4c80d11b47d087c935dc23
MD5 90d0f442a4174b7a43c7354b3712a682
BLAKE2b-256 3eff40e42d61a2a22e37179c2d50909f59044b1ac0df366c81aa4eec5a2b5e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 157fa8801f0a59910533778d6dd7488f9204d568f2cc7d8cd295ad6a79585844
MD5 cdd6a5f7cb13a121a31a224008b929e8
BLAKE2b-256 d0d9787ac2ef56d1c2ce9f13b7dee46b233bc36ddda3fbea9207b842b6dda99c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9bffeee3e01d0333753041d2bc7dd38c6e051e1cd71ddd0b08468db25e3c4faa
MD5 9aa7569466f2ebdc06ededa7a99ce6d2
BLAKE2b-256 448f283e65c1fee067c299ed549661f884f9b082b76149bdd401fc2fb1708f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a1fd7b856b5ff28118b5f09d03ba405eba0caa14e5d3f7de10db5096d870528
MD5 91ba2ea787d51826903d0941f121efb0
BLAKE2b-256 6a03a6468aed7ce99e9cdab87e9a93ba820cbf0d756e658491a2120aa4af0cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17a0aadb79efdfd0b95392079c1ef130ed14441e8292daa3d1e44db9fd219262
MD5 98d7258c93c34cf4019e53ab5f09cbb0
BLAKE2b-256 93bf24f07bcc1fe302e70056af6e676655be5abf7823047603ef10f18b7bae4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 412802f37f86ae29505f2fbc3a04437bfe79e4b72b8a7aea55f859351b98bc75
MD5 1ed5c44c5026f5ec3d096fa401f564cf
BLAKE2b-256 e6e88f7155856adc76fcc02ff60d0a0d1ad81d8f083f77f8a53d26f89c05a5d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3545a2e664b0b2da3414060f74dba98546ce19b6dfc2fe43b297e7c544d8fc1
MD5 bb32c503da740ea21fa67c8a62eceb08
BLAKE2b-256 31596208fc3acd8f344d6e353930e3096fef623c931e4f8dac4efd18dfec160c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0691aa91cc7da478f898d64369916ebc2234ace5425db34ee5080c686a595e2e
MD5 e5cfdeaba12acfcab7ea5062b65478d5
BLAKE2b-256 8e3f2b85a95377d8b76b676301eae81112d23613c8de799cb28ada3aea04f698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eacfd97435629e28d68f1a6ed8024a7f245fa4d21aef2f92ac52ef5345dd4422
MD5 da467d928663aa17bd931a8c35189f7f
BLAKE2b-256 48a4e3beee3c42c12178c3ebe1372a8c6e9b0ac2b91c365509d65ca297e6cec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 595a8e3bdad54c680780d2e1c03ba846502351446b8343cbdf0df43d78b90daf
MD5 4d2e9d2a7dc00263ac4886eeeb4eb2c6
BLAKE2b-256 a33d099ada2220df2faa17462af48a93c85f5239b7904199c8739f54232664a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.4.0-cp311-none-win32.whl
  • Upload date:
  • Size: 642.3 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.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 33a47f6aaaa347122a5d14f29bf05ae23bba5dacebb138f8352114d4e79a3bc2
MD5 378eeeeae95f8f2a444d2bfa5d2d9d6a
BLAKE2b-256 1c315a80c6bc4ee13a6447c1b43316a9d5ddb934030e93d7cd287c92d59c8d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 907800f5da538f863047d6f4f84c927a38c6a02467bbc288bf13a9db148d891f
MD5 81ba4bd621e0369702aebba7307c715e
BLAKE2b-256 c22cb45cb8b5f97209b2614eb60bf034238f729325211062feeedd3fbd20c004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44ba3e89a1cfa36809582e4a01a5f51323fea631950477bdb5fb99a5ce51dcd0
MD5 4af64fbf55b1dc610560e6d27d3907c5
BLAKE2b-256 d1917cd532c00c18f25947c0ec542a91111c6f5ec1605aafaaad25d0cd1a38a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 edc2ca31b1ddb8c6355a63f68e743fe6fa1e724710660e16408e069a2c283d75
MD5 51c411c67550ff7d344cc68402e17008
BLAKE2b-256 d9f7d5cdd9d583e44baf25cbc9b95e0e69e3c1dec62347c498a0a7c2ec32268a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84814269ee50bf3774e03f386e62d794372864362ccc8ff1e96c0eb8a353995b
MD5 b69776c668ee4914fd68f92d1f29e987
BLAKE2b-256 cb9ab13ab4cdef6e91e4789fc3cda8ce66d79ff3d7d786b27a3ed6d48ddef4df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 575c5bba2ff46c573e2a59548f35c006a639ab47ec01da8b7dd85af514923a2b
MD5 d1accfc2204df06e9a2dd8a340abc38e
BLAKE2b-256 e8070c9a56db9cde2006cb1285bce8f11e707a47394e679a3b9a157b5c07fbb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90afd86766e95bee796b78b1cdf0641b570f4b29e5db777128becf6aa75217e3
MD5 a45098e9b5bf5e2ad89ac982576bbdb7
BLAKE2b-256 39fa29e7f3b77c41a6da72ef7f279ce95f4c6d2be06c1437a070db48e12dff5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0712f68b3c16d9e97c0d7ff8df89891a5abc7e4ea3e4053370b5835c71a08b00
MD5 7ce3dc6659d9c971d20bd0895855d156
BLAKE2b-256 5fc8679ad8118ad7176a6c057044d3228c260d1f1941d489571e23584b8924cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b552b95cee05223d65b7ddd877f797b9ff23a12f915eb35cd9950a41d6a8d51f
MD5 5b29e65e8231601a9cced86984a0cc97
BLAKE2b-256 b13dcb80030b06f8ef19b78416516192b25d40545a5e93d055124ffbc0a1573d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e25c3699c12cd9808ec19240da08b6925a48e2c6468af7f3dcc9bc43f404d8d
MD5 fcd4765c0c11dfd1876a33142e1ccebc
BLAKE2b-256 cad79d8a4a11c3708d5f8172b9248926dc8c976bb36b05d1fdb3c547f1db201f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb65477a605e2ce969de831dbb881d8475e4474939fc310594e27521034dbd0e
MD5 4a500534a412d1a1cdaed72e4955e106
BLAKE2b-256 febd118cd4cf687df199415a03adb4878d6c48a23f3af2693f84a7ee59bf9d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f3c7125a21b9eb0e536297333d5f893ee5b74a166b075f7f96f3ec61884f4ef
MD5 77a5f7b39bae99e80e1dcf5e1d9eca5a
BLAKE2b-256 93501c974362307f228374a3ff4a321d90e85915f3b541a812dc534030c84771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a5d4ac5b63ea64691162948119464aab0e7f22f47c8e098adc9e3bf49f29c45
MD5 37f3aeb12ee304fa45bc6fe451a9e214
BLAKE2b-256 ba0659a763326b02fa99aebc2cb84bfee6a9cc88c2ba1b3234f1c50b2bcd2b15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 00ee63afc4af5a5e73ee76bdc39f323febabb94174d33ad242d0729933c8c8f0
MD5 434436acf6fd6d63fc7cc78e92c6b6dd
BLAKE2b-256 9ff6cec7de207f291def083e4b9c56fef194305007d8e85fca2a9a69d4e9501c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.4.0-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.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 679e4a5007e57be13ad13c83e818527d4a8284894fde1b886d8325d491c42ead
MD5 5e7d687f9a20d578252240a18457bb1c
BLAKE2b-256 ab5f8873dae774c90b1cc5c2b000878ba9e6bbb3aa3d36abe83dbc2569c9e770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 277ba10a595fd23dd89d1822fb4c59c9b7b06a499db97f5f3ffb0a2a221c4cca
MD5 589feae22842fb764f4d93840b146ad6
BLAKE2b-256 3e53a0fefabcd6fe5c14ea5d19ca2c44ff5e406dd5abbcb44706c06f32b5a34b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f37a49a2014b3e70fc2d6e8137285dcbadbc422c2cedefd720c348ee00cbf9b
MD5 49ce1c46e8f111d5040148b6a48c950c
BLAKE2b-256 36e490585b4b20e8fa6e14e134252a101d5f7b5528019d4859817f68dd9f4e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b03cc32cf11f45d544328d0ae19c36f07abe022d5948de79097e5f3609b6dd0b
MD5 995dcba07573ab260baf4674136cd10b
BLAKE2b-256 83d0c98d049c04e4d5dc89b578fda30cf91bb740c205b552b595b47d5c0e8f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92b07a98b10c7d816390f7b4fafcad8a4140f84aa1f935f16e3fbe42a2f0adbd
MD5 0ef9dd6ca7392ffaa512e35e3f669446
BLAKE2b-256 6fb02c927ff78d5f4bd9eb83d04a556ff470c74224ea6ef9bd7a411533d32425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5abfaa024f9ffde4b66753a9f29887670adfbf2b92b8cacfa427d53d2f9da196
MD5 2014e416edc1be6cb1fbbe61645afc29
BLAKE2b-256 97315580497fd872a99cf08deccb1d0388f08a841477179859c979b9b318d4bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 559ae5780ae10c792d9a96122caf4c0a8e7ef88bbb95b742937d79b795ed37b0
MD5 d117818c8336a9bc65c72aedb42c4deb
BLAKE2b-256 dc897d846cd1088665ab7ebe29d4aeab8e0b1c774cfe40b55c80c0056e77f910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 989bb9e9abe1316b9519e0db956786c7ff7f6c68d73c72175ecfed155e90b412
MD5 5331ebd70e3d9f7983747c1bfef64203
BLAKE2b-256 de81d137f9e7f82996ea5380b241bff70d75807668c3f787f30141d8faeed4e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b97e1d50a42e685578f7f09703dac1c253b8aea21c9706aa6e77428e6c93a96
MD5 fb8f3b46da3c6acd7a56605ce0cf8da7
BLAKE2b-256 1dd37bd79a1bca0822b0ddb5c3fcd292db912015602bfb0eb23fb725cfba9c6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56532cc1be3f3f7e344ebc935257c3e751f6044d60653a23accb1bcd66c18321
MD5 6baa0194caecaae7c8b11270bc10d5ce
BLAKE2b-256 18bf4e67c9fe35f8a7a0dc244ba1bd22ce621fa159a2a40abd0f474ea97ecbb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd01392ae8f15c144152bdec5a9af8475321b45631ca0adf2d0956a64d267555
MD5 b43e90081d151e0c489641487fc15273
BLAKE2b-256 0c29666e1678af8e3f0d5c681594d1776665b1eb8e1819eb2cf3ebfe306bf375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30f0e0e688bf20ddd4ff19b8a4d567a54536141af711f6a8ad257abb178b8d54
MD5 8a3ae914f8491d66fa09038bbbf0614d
BLAKE2b-256 5f744336544c82ad6a1941d3504b470ea5bcb44df2037545d0e1407cbf9b9eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 10dd1144a7cfef6a93730367653c5649c65de001985edf97afe755a8b954480d
MD5 8104745129a3748e88e18fffe20990e3
BLAKE2b-256 757cf97232b474af282189976dead03ac0fd9aca11a2bfc103bc56d17e3895a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.4.0-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.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f495dd0a328a45c52f93d10e46b39b3ba442f673e189f6c87743af225f00bb7e
MD5 e691d9d9acdce904dc6473d9d5e037fc
BLAKE2b-256 6b15348c9f4551efd803bcae54e3df7f169631d67f696a175f30b847738009d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 908bd471bfbe6b660b3f30f7e4ae221581049efe4f1b065f333b3dae11b011a7
MD5 842985cec6ee2aed50593c4fdfe8e7ec
BLAKE2b-256 5f7f80ddcb2e1872d15f0dcca719215ff2e9d12a7041e33707740a1f9f778c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a576fd75f804bf94c688cc52b4988f795e9b8e77c92cfe0ba2037551a7f1a11
MD5 46e57eb23ed983f7e93cf654f46afb1f
BLAKE2b-256 fa5c72aca1989900433c6cf88d6dcde17a6a707df532192454b80f34cff42e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8526f1bf336f474ab75c298ffde5e342bb55b53b61dd6c399d8504f0f18b36e2
MD5 5d28a55d47a1cf0ada84a82f23bc3758
BLAKE2b-256 839c056d7f0dcff763c7a8f2c9bf5c0c9dbd7efcccaae744fdc38851094cfe4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 593ea939b13f66ef2ac6ddc703805b660bf7b38cd66d28c6b0f282fde5cb5378
MD5 7072af743a1a0bf240302f8bd68d6a37
BLAKE2b-256 9537c25693ec22a22c60835c28be3aa235627dacb21b54dbc9cf08aeeaa542e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a21e16aa51eca70d57ee79c71aecba29f8d16e9a47e28647381cd17e8784e0c
MD5 13fdd058fb8d4c3b5566439ebd272c53
BLAKE2b-256 90140e07d61360a4ad645b22d2d2d2bcdde45db8c06b8d5c4f6bf854dce96577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 245cb67fdb185fe205baf3852af939470e9a2962684ca16ef26999ad977e920a
MD5 da4f7efa2ad1fcff28eddbc496d167d5
BLAKE2b-256 8cf1c5a9721a52d041d406c2b83859cfa5f5a25173cefc32c88c26bb218f9727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e09eb285a31b5e8d0230198623117d3d3e2fb3da5d5b3784402178e91e1ee0ca
MD5 0682ca06bd1aa8495950e6cc30bafd25
BLAKE2b-256 841db8418535c9c7f965b235ea15fe3f490fa824592014f5ae26087704fff57a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04a543cacf6f3d9a2125c9cadbf52102f465d5ab327bb4ed67dc7e50e62cb3ee
MD5 247ddcbcd9c29e1a4704316b71743a2a
BLAKE2b-256 358a02aad7cb45d6431499f3897e2c03d11454538ef89f7096b5aab545d6aadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c335c79a302e5c3474845032b1f3ef532d6f4daab7d2c0e2ee4f1cebf74a02b
MD5 d57c03265586fa91a55a3bf0f080d5a2
BLAKE2b-256 08c6f69c0be04e18fc2a3ffce5d835cb83a56165f7dd1a01f31816b93e0a8442

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d002f785769a55f8bf1d85d4b80d658b350666ae82ffb03fc3f5586df4a8ed8
MD5 c0a192d50433a5476beeda3797e9ec60
BLAKE2b-256 9f670192c5500fba75fbf2063e94256afca0e1d84568afa06a49d3e98a5466e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a57fbd36f54eefb0d48e051eb15bd8e17d6d5c824b028fe1bb636f27f46bab4
MD5 5e57a848fae184a974d863d36d8fbcb9
BLAKE2b-256 8be16552962ea9711945abb2bfbb949a275bea31b20897f97fff811e0674d699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 cd4171877ac6e3f6e13d0bfc639e7ae48c7e061284490c0c32b70023a8686f67
MD5 ccd71ada632258d7cbb9842ad944567c
BLAKE2b-256 bfa75566e28c884a87863c14d068d9a05407546fbc8f9ee9912bf4ab4e6d845d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rignore-0.4.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 77739e1065d615541b8ab3509963d9410379bb4d5753767619b997488e0990f5
MD5 710990c05f48df92ea6ef129ff0a11d2
BLAKE2b-256 085a9d2a73daf43365256b9dc5b0f72a5cb8789ddf448a7a3d30e105e09e2d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd05691db15c04e8ce086f5d6176b01c55c268eef4eb47e856519c72bbd6ad76
MD5 8de45a3626367ff53552610b3dc58148
BLAKE2b-256 a74b9ede5e126503c582cf1769c7209f9b66efb563a1d4a1c200d9b59ecba2e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d1d1f0abf957fce1a9c9eec59675b7447d383afdbd1fe46f1ee66f3dd0f1f5f
MD5 7e769ad0babd0fac72c7125272b29f44
BLAKE2b-256 8f789ca7c4032902bbc961d8d94757d071c40cbe5c6281c44ce15d53b65cd6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17a84d232a34c9574ab5bc38f369a7012a22de6e178a2948c52038622a4bc953
MD5 59340ffe474c68f41172babe4c467aad
BLAKE2b-256 d53be47a7869f950bbefee1e8c4e41435a61c3640b64302769add68d9981e8c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a798315bf2a3cb69124753acbb1fdcd2a90280679048948795d12038eefbc8c5
MD5 e9662e3e68fa74b5d9a4b8361a743e37
BLAKE2b-256 16471e18c48e92eebf598d2f00acb86330140d7794d6d48a311ee64e07ad8448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7103c34a85e4173da78bd3c8ffff4ff16e14927b5248a366e947cbd5feeddb3
MD5 fa5633abcfb946554b54e24bf9374e45
BLAKE2b-256 cb60bd1e1fd795517f2d4073972c4308bf6fc786101ef9e017c8c14380f97ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f3fa125a99adef9fc75c718140eaaecf3d0e3b3ec04651de96a811a6e9a656d
MD5 ac6bb95cc49d88a3e7c6b56b33f72c55
BLAKE2b-256 9a028a59ffb6900e22f3c21cfdfb03e6f4229b3aa671761da7c8e041fb8bd76a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9969264b80853fb5ac2e01b2414174a9ba65a3bc0fdaf78f4c063c8397c0438
MD5 649066964dab26a82a55d09170559fc1
BLAKE2b-256 713fff6600ed0cf33935ca0d8e7faa59bc4dcb07f9eb456c3021339664abefe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77552454499a322a606999b61e17d43dda87db81ad993b01580a37ef6f2ca95f
MD5 9b8812362202001cf0014b40bbb4e70f
BLAKE2b-256 b8e1560370b4483e8616424d64b897a1ee1fa0ca2534cc43b2b777cea4e1f4b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19f98ce343fcc71ded21cffa33f4c20a2e72b3cf583747b285012a9b8425943f
MD5 3358fdf36a5ab3cf56aea7ebf3375a7a
BLAKE2b-256 bef415daa0a0e9ca6cab714d8e0d4ef0667780c87db8ea7efe855844fe710394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5152d4bf8302ece5c0b05cbcd5dee8cab81ff18b45536fbe936f175fab70554e
MD5 030a8e7d9095dc46f5f6ab09e11a9a38
BLAKE2b-256 ff26be963848028ed64607cbad2883dce16218cd2aabc90c074f211ae0d612af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86fee1408f098ff8d69bed662a37a7a4252be8f5fb35b38ff938b25467e50e6a
MD5 e6d377c30da8204ff42ab7b3bb09049e
BLAKE2b-256 0892b2ef970630be505e8f92cf825ceac6089f30eefc79392e5ab799b87f9382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea19e4371cb32fa96e146432078e7cb837195b856535da7e3c41b7eddfd92d1a
MD5 8a88cb55c83a0683a9202f27383eb760
BLAKE2b-256 a73913402b12686420c24c950b778917115e5656427b004509c9e370f9cf1e47

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