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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (952.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rignore-0.4.2-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.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (876.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (968.2 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.4.2-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.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (987.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rignore-0.4.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (970.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

rignore-0.4.2-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.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (980.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rignore-0.4.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (876.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rignore-0.4.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (921.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rignore-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (949.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rignore-0.4.2-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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rignore-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (966.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rignore-0.4.2-cp312-cp312-macosx_11_0_arm64.whl (814.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rignore-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl (861.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rignore-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rignore-0.4.2-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.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rignore-0.4.2-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.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (967.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

rignore-0.4.2-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.2-cp310-none-win_amd64.whl (720.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rignore-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rignore-0.4.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rignore-0.4.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (814.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rignore-0.4.2-cp39-none-win_amd64.whl (721.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rignore-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (985.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rignore-0.4.2-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.2-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.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (918.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rignore-0.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (967.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

rignore-0.4.2-cp38-none-win_amd64.whl (721.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rignore-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (950.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rignore-0.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (984.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rignore-0.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (977.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rignore-0.4.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (875.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rignore-0.4.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (967.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

rignore-0.4.2-cp38-cp38-macosx_10_12_x86_64.whl (862.8 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: rignore-0.4.2.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.2.tar.gz
Algorithm Hash digest
SHA256 f95d123863134ccf24d4c71273bcae82091b341caf712a6999bba5f05e80670d
MD5 352eeaf72a7210afc2c3ffd81e16caf2
BLAKE2b-256 b54b83b12fed6734bcf11beae72f2951faa2a117ecf6bfba2bc33aee73702ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d873516427e47556c70b7a57b83e16c97bd317d9923ceb77b99b1fed2e6062d
MD5 c958475a4b5330baff000321bc6db4ff
BLAKE2b-256 dd82f3a59b301736b7ecc83e812a6ff2b073eeb71c91c9766be6d0ebf80d36a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc7b7df3a5320bad74355834e265ac027c7bd70de7d169ba9b43d9ef5dfcee9c
MD5 1050a46a5968cf3735e5dc65ab8b8505
BLAKE2b-256 056aa9cf10f43088daf87573993ba28042ea5bfe5659c3affb8e84f642ff92ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a754f66b7f633f59994ce15bf9f2a61c6437664c01543fcb9c4ae4001d6a278
MD5 30e1b76d7a2bccee4343564141f74ba4
BLAKE2b-256 44fbbf94eab1a1e6f87af720da3ebf16ce2a3d25bf2676b3fe081c987a92c4fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b54fe843c4b99d126e59bec2ef59e93414f85d3c69e3983add078382efb6032b
MD5 885a6f0f28e7e99f891e639c4b7afa98
BLAKE2b-256 2bc32a71a99a369e88ff4cd562a58d3e5d9f524313860d6761896335f36724ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 547ab8556553325f850cf487b6ecf0f4c244ce7dbf5cadf4acc2c475afd8a42a
MD5 5e1770b863cce8343a1ad294cba837f0
BLAKE2b-256 f916381864611f7c68105e78ed187cc60e8cd44408e946a506de7e3b915136e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c5e2fab2043801d5008a832f78310f2a2cc62fdead1ee759c868621375cb0a8b
MD5 38cc4ea2f19948e4f1d8fdc551a95573
BLAKE2b-256 0bad882b323c93e9235d2353611e9c7386654d13c3d4bd4540b01ab7ce281140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 981d231305239f11c03b7d442fe9d4168bdbae7f7f752e1f6f8f71b35fb6a123
MD5 4b0b9565cb843692f17e744ae8efce05
BLAKE2b-256 925a65f526562bfe98359d9c0da4541460f47e66455b4640b935ca6fb3ade92f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0172b965ffd71e25036bd823b04cf714f553b5fc1997320a18098b357196948a
MD5 7be620af19fa55699783ac52a7634f32
BLAKE2b-256 eee064143db790d15de45fdc0ec8cb111bb3a5f438e6486a48858c4206b428ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f1ebc81054a4b891db872d36da002cba2a7215639bbcaca94b6c28c5d362688
MD5 1e6f2564bc64c735956f4c6d11242c5b
BLAKE2b-256 4e25baf7347d376233bf968e35de149a913fb3bf6b80b94faae650978338e9fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eaecd87c8a67549a9069d093e5c2499fe4ee140b11c967c0664709f470f7d90f
MD5 16fad35d9dbe745a82c1536ba61c4e14
BLAKE2b-256 1e9ad9da0d07d45932f0a43394de7b39e0ca970fbb0585ebf67a92501c25d787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f16a44ccae2c271a17bad54aa630632c2204fa0e83f5b9d6901279764633ab6c
MD5 191ed4d1f274fdd5f96de3c10b6d41eb
BLAKE2b-256 8eef1b9396cb99a280da0f3361e9f209ff1b4be32ea97931f026ede16737c5e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5be3388819689cdb4de0359ed85949fb89ba118089367b6299bb50ac64411416
MD5 631211bf37ad1a566127964ec5529e1a
BLAKE2b-256 ab06f4b80dcddcecc0cfaa9d5e53d7906bb56323d27e8358040c6ae9c94e480d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35333f5400536a277ec126675bae9d1801e7a289d0ae4bab268416471862ef89
MD5 5554ee2cbd9cf32a46069ed56c50dc35
BLAKE2b-256 dec126aa554a669d1c45310bfdd9428c7c66ca5fe93756ae0b004f8348c4c023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8c5a3cee0a6fead5dfeac1c586635c6226cb468e8817c1f9309b532c49226a8
MD5 e4e17c99129d55d3adf57996a8ad946a
BLAKE2b-256 ed1bc6a77a50a597a23feedce2b6d0ed77800fd2b667adca726822cc2aba9102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 576036dc84775f3e6be4cd7cc82889c68bcd581ecf388e5a4711844d6072299c
MD5 d5ec206709a56415a5d9e95587f05a14
BLAKE2b-256 5d7d695617dabf4036715348b5104f541847b8c345ccb0ecd3cb9e808eb36809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d203bb9152d19e6630046770333a548f8965cc559332c5032c882621970ceae8
MD5 01f4edccb6f1cfc06c37f0e45d74d934
BLAKE2b-256 0671fa50d0e73aa28f30bba629a9e6cc5f830012a2383a08e449581c1d6e1204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e42c654cb8c5b524a549c23bed4a5593f17d95fc24f9e9022a2818fefb03933
MD5 af5718f70abcb84d9dba46a8c1e72a95
BLAKE2b-256 9701bec156701b555656a88c5a3ae5293ce357f984c574f54f1b028fcae7b83c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9e3b876a3e3604870a5c3bc1eb7a3cf89476f634655088a03b7cc475fbf502f
MD5 8e0d4becaa5fe28ef0c4c1b5b03a332c
BLAKE2b-256 bc77b23c4834504bda99047f07ddce2a0d30426cd8e4690b819a8637d0708dd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 460fa9abfc9c1d68561e62fd255fdf69bb1929bb4b68d3357ccf9f1ed0794d28
MD5 1f9fddf87c54576c765c590018741b66
BLAKE2b-256 542eb431653905afb3ba52af4304232d1d008fedfa8f1c530abd25437366fc32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9567b0751c9d59c764136137fd4517f2aae2e367164d6949389577d62c81112b
MD5 4e42691497e631362473f007546dbecd
BLAKE2b-256 072e696e3171d0a077da3080d783cbcec5142246139f82477308aad584af1e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad039cc7ab9423903441f24bbbc5bbceb7a47ce0d357cd51f44f55a847462b74
MD5 98711e1e98089c346d58ba3f8b91508b
BLAKE2b-256 43127011198a87b38dbb7b9735120ec6fbe602ec80297109e49baaea3e12c539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f57696c8e747d7f3950a65c99eadfd78a703c27a7f6edb3f812b7de1cd604e99
MD5 f87be62808fe4ac1f07754e987c70a0c
BLAKE2b-256 33dc3b7d344d0e43f57898ebb9833132e5ada953b6e13ae4ac6ba3c58eee22f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f02d02beaf172c94bb66c68b3e75bf55dad6aa3c240bc6e0f2575703c10a3be
MD5 dfa8be27f01d95c08c0d409c993c6871
BLAKE2b-256 a6c52558cbf8e4461c48e680862bbbbbc41daf0097eb2a926d7eda32d377dc71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2827a245b11019875c0780dd7d85b817d6e391b34ae780f06b0b50cb83b61811
MD5 d5d6f22c48233a5ee05cf45611667a08
BLAKE2b-256 d53abcfd818ca70561818a4aff83569f414b42bc2e535d3394aa6a06ab49f04b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c341dbe91619ea4716831986c791ff60f7179e4766fb64fcbc5ec35292e6d3a
MD5 c9dd1178b4f52116a547fe3f2134bf0b
BLAKE2b-256 be1dbee4b5c7fe3984847fa6c6bf3f56359ea4f2871332de63f3048a2cf70e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 800afa9584c1890d3108f8bf69c4e1fc47f857fcd5ce783d81c5953f6b25fd5f
MD5 ea2375fd4159e52d0534dcf7f0fc1691
BLAKE2b-256 89934685b0031851dbaebce8fa085e029fc72cea15377eaf9a0decfd40f18454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a2ca821d3d482a92327d94d43e9f2fddeea8d3ded7e489b024596bb84b05c6d2
MD5 b2980a7e207a9be7034355ba3832a989
BLAKE2b-256 24bc4d1f7ab83d18e05b756876e9653423ab4773a4e73fd3eaa8102e2377bb0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86e34cf694fa40f618bcbe054a53f62070d3c14072c53db2bd8effce7b562b81
MD5 fcbb336b5d888ffcf346411176840c33
BLAKE2b-256 a5ccea6e28dc070cd855dd56bc059d74ee1f1d0b80fbf355043ada3f5bbd9c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 23a54a1298252fff1a048358fc2bdd16601f850a5a7e0e3f95eb750eb1ffc01f
MD5 3017a54f682fcb19714e741b55bb5a4c
BLAKE2b-256 a884eb695831053cd9a5f92fa01b1293fddea2656ab0eff91df82edeb62f1aca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.4.2-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.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c45777e5347146b3e6c6932ecb6a5ba043426aa994920782a10cc6cf7d84c399
MD5 4a2cc11d9a8069a2f9288e9d074ca8f8
BLAKE2b-256 84d2937286fb092a175d2ce0fb21bbdf6c2f5df29fee7b805461928a40341c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8be6941843a750eb7747a34acbfca07e4cbc387b691516bf370f30f9df764593
MD5 b67085c9b7a361f51a7d47bad0c154aa
BLAKE2b-256 275122f53bbf4c37a879baaa0703abb6301deba14f91c81e679104d151980a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbc03103853f9ad0ed3aa692486b86f55a5a4c2eee3b9915fd0f3a8da60ff5f1
MD5 e288a56ba6528116f9eefc0765dcba18
BLAKE2b-256 4c6a05a0eb03f9df670af287b340972ec5f5d98dff827194a3eefb8ddfec2f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d03a02c0d2f0a362fee430b3d95f07aaaaab636aeda94436dd31c39944283eb
MD5 8242738b4a390a08ff5ef79c5211268a
BLAKE2b-256 6ac37a7da5a5190be8f1412a41e0a7fe5e1ce582b99993e3c2e217fcf4077d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7421033974fece0856ca6bbdbdc1111b6feb80ad8639a382b136c4134400b4d
MD5 f3e6924f0fb1bfc0b9f9fdd824d3c8ba
BLAKE2b-256 ab8590ca390e560d7417e140ccd8b161c16d53a1c08e9dead530d322f7de0f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28817fea5188c8ed901142e22c0fba38f770906232f8d9c77248713c047d87b4
MD5 7ea9fef8855d42eef74b565083530412
BLAKE2b-256 fc1b185edca122459a7b64bd96e9f99ffdc56571c94e6bd865e8343bf2ab3c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1b136fd469b06e391cf1d4783a54702e108b5c2ceadbaf959cb38796b7a9be6
MD5 e10d0604ee4b72f40857ddd36cb3d453
BLAKE2b-256 bf0db4197064fdad20bbc442a5aa84be9f74d44314720a9ae70da892238a44e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bf08691900e0db30fa1f39ccd12723d8d46d6a45432ca00c454a7b805f4b3dc
MD5 5019bfe5a7024cc4ce743e303ce4a15c
BLAKE2b-256 82cb13888cf20fe86682a31ab566dd870d3232206522132bd512e3d34c8d7744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d04699e66424e288e75c6c97af27e0eaae4711003f69143a964638fb0166156
MD5 279b890cb2f5fdc3b462579f3ce427ea
BLAKE2b-256 8a283ae99922783cb14ca6f7a478579cf62945fc72c188763fbeb4c7a7ac63da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3003f2e2dfabb31cf1bad2e3a320cee58386aa9d2eda87153bbb015e0152c79f
MD5 24833afa75a65e2d9be625a5903602fe
BLAKE2b-256 ce7cee7064ccef6b1b759f476cdd17d4df04a39c13bdf83f1f8c862ff15c5817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 79be5abf17111265224d6abf8c0417d27d777d9db34c60918dcc8fecff4b792f
MD5 783f208e1564cbdd08ba62f3ec9f8b8b
BLAKE2b-256 253beacec2df28a531e90d7ea9fa6d7f63ca4c9e8a1b4cce2175a2151d05cd88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec2f6b1492089476314e17265005e10dc317a807e4214d716fbfdbec05e1ec6d
MD5 7a9d67d48bf8b0303f54fc4e10e8546e
BLAKE2b-256 048a4069e867fbb3d613a94071c5f3da7e09c879ca8ff7a8883c67e0d2257ae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a303b8f06ff223e23ec92816e0ace3f6817cc82ffd0ab72629d1321f4fd84570
MD5 b20dbc868cb04c29bae9529be7e35002
BLAKE2b-256 76edb476b65fbbeb0343d2088a578daf5eceea82a55e3ea435557073b11c465a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 225dd2e0f233ffef0a8c06e1ee412a2ea29bf9e0fe0f649c1ceead3351aa2e28
MD5 d669ec876875237ad8098354219919d4
BLAKE2b-256 0dca4901f574a371f3eefdb175fb75347be4a5216ff88b69a5d967be93a4c7a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rignore-0.4.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ed2e3d19a29335c043f592841483aa8b1972d9e4d382eea859e88f26bf2491fc
MD5 6c750e57fb122ea2c66661b01db19b34
BLAKE2b-256 b47165db14e7e9f836dca70e99b511e3eb1a37ceb89c47a833f3133517cb2c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 baf43f5c31c9f3bf99134845906e5c78d04b02ce0074c410600aa7a209172b2b
MD5 3ad5a48c5fa53ce540d2bcaf70765457
BLAKE2b-256 c497163cbb4c120ed7cfb814aa7e97d8b7ceeefd353c9a4764399f101ac3e776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85c37108e1199c203a8313bbea6f9441576db2c8aa404fd892b170fa0f0bacdf
MD5 4d8626cffb1a3c0615261a1c0666b6c1
BLAKE2b-256 9fc4b95e02a02a05f8e16564e6d43792d5a282e4664df08fb59a6c9c0f415d86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2abbb72a9304470552a3c59bedfc7c3773fcc1fd4943983d7fc87969aa4eff5f
MD5 e1d69bb24ed81184408ad7c8aa6153f6
BLAKE2b-256 e8af1ffb0c4194a15e359bafb01a60ea1efac92175c965388e02ec3e06cf020f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4949093958a2a361d37242638d7697910205ed886056f42370829782dfb4af8c
MD5 542bdd8999d6f5cfe964cad995af6f52
BLAKE2b-256 e2dd280760c97065f5ef35b656ac880b50ab2f94f6c0c3d65e0544558d8eadca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b9c2c4c039a7dc1b957670ffe62a7ebb7264ae0acc0e3acefa9d4171a18f7ee
MD5 88b645ff46fa3a1bd48a7b15aceb3e22
BLAKE2b-256 7910bcba60c3911929d8f050e6891f155f252250aa72efea1cdb90acdb62684a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 676ff125fec297b419f4c86bf0068c2ec6b76148b75f99ff3b36fa122db01af0
MD5 f0cbdd3fc49bd0e228d8b27c8d31c297
BLAKE2b-256 b57ca77ff18802630154279f5df1d8a5ebcdcf2155933694f1ad811b6003165b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc9c5e9d0445941279c98121c3f441d88c458337d85eb502a8066b3e16102f71
MD5 1fbb64bcd556e1a3154f6a2613ae5dd2
BLAKE2b-256 a006842bb52207a7f6dae9011e5bc167e7ca169b707db51d6b2ef2836abcd3d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9f71718e2d945289b9650760b4608dcf7bd01ee9e505919272884245bc05c84
MD5 1cbc713e1c1bfb290cf30f97f6308b8e
BLAKE2b-256 4dcd55c89bab8016a23fe1179d580089ece071abce9915f35ca7148bc599c8ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d61460ede787c7d6795d4bef31c95c3234a1889a1c489d984536c32e103d9e8f
MD5 3564498425e0a3f2f59c8d8afe45b4cf
BLAKE2b-256 b00b5dc019fd315dca6a8ae5a4754d7b3c2873dd87f5a42256b33d245ad03bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae2b917769583456532a31fe62408bb80c5717421e8b2ae62b4d001984264230
MD5 cbeb33548d7aa1d91ce8525d90833bd2
BLAKE2b-256 20341892f9db6d539bd90380a3e2dae052e4d2217ef267fafdfd16b3c009e46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5658d595e2f74d627a600c88cd524c09c7ed05a2460c9ed359e6b6129a14774
MD5 eb22e7586ca0bd0a9e406169a9f34a86
BLAKE2b-256 6780a9cdb4e6b6e3d1d9c2a1dfe4b9d16767602dd7a3770dd1da3b96d59ddc2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2910338f97f509ffafa5b19985530c4a26cb73a2099b0206d50d533e22c6fee
MD5 6f7b52d3acc8da282c870fd48d7160d5
BLAKE2b-256 eab1abc3cecc6ab5b06f366e61537a01661bea62558b14de02e2066650741af4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ee83f93dc581df408049d87cd4cc2f49f6ba4cf99c33509bcfb26bb27e0b3aec
MD5 0d1876993d16363eaf1f2a1e8a3c96f3
BLAKE2b-256 446259df356115a886454f9e1c2d4c8f88204ccd7cda4f446f1286cf8b3f5cd0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rignore-0.4.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 7b3dfb7ed5e145791d0577a16639f944d9c8f42fb0b01b560384c7a73d0f196b
MD5 be4d9dd8a61125cf6c3932475eaea639
BLAKE2b-256 f26f84dfc486250120819aaa129462721eaa6d4f66f096d1a28fcd2ae34455d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3530fdba9041e733a3e9c82444bce1e939dcb69ea0dbf9d101a7c2126a46a489
MD5 b36732527d7df1f9014488a976ec5acd
BLAKE2b-256 564c07e7e6871b471cbc3ded2a08cb3ad6f2f24aef9b3fc3d06b5a2e47dd3596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f224a57b65350ee852bf9daa29dde4fbb795160c080a9a434bc05f6a4c8b30e
MD5 108182e202adec75e5dacdeea1c0198e
BLAKE2b-256 fbddcc25aaf2f78728b58475c3137289719e97f57d1eb93be6cfd90e2fde43b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ad999f264aa9ba0d5a798f810d36730b3bff16ce312a28f4172edbfe290a8e3
MD5 f318f8345ce67cc086adfc0401f93f1c
BLAKE2b-256 fbedd6e0d978f3601691917c8faa30dc56816683ea1c0cd2ca4affdfb4628128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdc0b169b893375fdd9fe2ab82cc09a652521a823dfa03edaabbc7f162ee6bef
MD5 290a3794bde956926a7a907ca3a170fe
BLAKE2b-256 4919e952b859dd3b9921fe0eef6fcf1a00df453b86d66df69efc84b9380ef99e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7f643afa096025d0f126b76fbf7dba1c9311924d7fb6173e18d59cdfb164e63
MD5 cdc28d7b2e6d09997ce905a6c0d400fb
BLAKE2b-256 04cf6f95234776461607df6427663b17c94443dbaa6a3cce82c09800e642c48f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f5cd700ba634ee8c4d0bb094d9fc368b521443e9ac0748f751cb6c43f88f953
MD5 c8800de9e466b442108273f5171beaec
BLAKE2b-256 0359773920df862bf22e318489ba908d38e79dd3350ea7d68a8f910ffb8aa427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 591eb0e02288cc3ae008917243c0ee9533198f11a84c7fba77176078059da056
MD5 73a3b31afcd3bd2f3300271a2f9176ae
BLAKE2b-256 cec59bd88d34e3ed133eb29c5d7537c3cbb0600e4f049bb1b3dc6ec4c5f9a7d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8cc313527b8c9c340eed78ff3228efcef19ca9fc16213fe0a5de3c0461d08381
MD5 dba1462e40ef9b5e40cb424f5f48411e
BLAKE2b-256 38238d1842884b67a334f75726d3913470ae5dd15ad1fcd81e7ffc3187216083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ea322373209534ae6f68a8b40f2ac30f420c9007309e08a9c2a0a3e7ca6e847
MD5 183d5b561b2bbf8a1a0e2a330b99adf9
BLAKE2b-256 f32c072626cc0253c65846be74d4605ff4c7b5a5477f049207ef5e712ef34f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed42fdb20997bb13e7bfb5fa80cb9781f117f7a8e630584e15455fc430be292a
MD5 39c6f0732626e947f25029f9232c6bff
BLAKE2b-256 19a423ee0cbb87e36467d2cb7d67ba3acd8dcfd4c5a2e03551647ea9284ae005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88ae210c406043fe57b13d24d6b7fec91845ccdd8f145937fa96b08f2d28a56d
MD5 1fc357c0445d785be025d8f188cb0746
BLAKE2b-256 1e6b1f79cf0c69345680e7bbf394f6d37437a46b3417bc6879070205fb10a581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d71f374740547eccc494e09f8a045fd92bdcf22c69663ab45f6005182c8feba0
MD5 77569db1b8ea319a99cb1fa86e4fddd9
BLAKE2b-256 68c766d37e2154961a120d71ca310f8030f86d4ac010d5cf4dbfd781b51d27f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rignore-0.4.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 50225117c57b5c0f0dbc42dd9e52883ab929a511cdab03ebf0ad4e7fe0b03f21
MD5 8a2d2a8b00d2865494503ab78f858c75
BLAKE2b-256 2b59554429915dd8e275fd26c570a41d0d0ff847b6489460877fa1e758710fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddfc36d96e8d290998e8ec7963cc0366d1aa97bdf3123875d1c8f9aaf1c7db08
MD5 ccd419cc3ac9c578a501a03dad75797e
BLAKE2b-256 39bfd7568da99e3b1a12741ccc862fdec5ed3658bc74c3cdad15c5950d205196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9398273aed122b8275217728a12d8270b80a9cc977d524386b8ca3761c42219
MD5 f59e163fb866063df19ae1094d65d9e1
BLAKE2b-256 ef73e8fa8a1c195852f31a8f625af1415840ba9ee3e7595a328915ebd81fb3ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e74d2a389ef6b239ffae145554259ba7a3d0872b596f3c9bc5f1059f6592d2a5
MD5 a96c903934e79c29f61869acd5e1ce46
BLAKE2b-256 3cd555a9e5968b1e979bf748654e16ba41554e0283bfcd63ee9c49ff190a5bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb20bb72469d8b2ddff6824253151ac2fdb4d06a11711cfd4090a72cc7c17493
MD5 c0ca3bef4f30317ed465dea737ee673c
BLAKE2b-256 4c5692dc66bcbec9fc4249a92cfe6cdf1afbfa3b2f7e32a89a7870709c1c296e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e92dc4fec9bf4c4bf0960b0bffa8b46baef6f892e87aca8b257aa00fc30ab79
MD5 bb4c053fe08d03bdf74e6bb169a15b4c
BLAKE2b-256 be39af247d391b59258c078da9ae767259ad13e9fd0e2a006159e9184744a80c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66bebcf6a3531129609eeb3adc543677fb3ecf9ef7beddd54c0900ef54fab757
MD5 e4923aaf6ab921d109838142ab282071
BLAKE2b-256 cf7db39de565e13629ce2e562ffc486d1d749598c60a32a3c95ae8aa1dad67db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25d861976af9ae4e581d0ac83319a5bc6ed6ce70c86a97a9ccc28c519b9c9d3e
MD5 47581ef5b5872bc89145f05b4a8aec2e
BLAKE2b-256 448d7f60a8a7c7b5fe86a260e7a44a9c5c9812d57b4af558f677c1c617466d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e32217428e7b146f86567806ff6a781302a070f45dab61ebc2f97881725a6fbf
MD5 13092be03c5bcd635a8b380c00a7867e
BLAKE2b-256 c0e502c1df3ab91273d5c3bb705c997aa73e2273db885b6caa87243a5479ddbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b35d20481bb809a7a587976ec5a03016fbbd969eb9419074aa32db0a7c837f3c
MD5 82a67f80a20aa073f42d626791018617
BLAKE2b-256 2968d511cdccda6212cf1a7dee5abb0cd3980d3c4d9ebc8348dbe2be9a04f81b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36d3929274e021325cc6df816e191b235a6fb4f7efe41f43598016e70a3bfa28
MD5 bb16ecbb0bfd5b426f2fd9b27b481e97
BLAKE2b-256 f7d64282245f0c45ad4151745da9e33e81d5ede6eb1f5d7593ec3a8a3452a087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a3b5339cb684297e7f66afe2f7586def75992863b88eb5619309913041dbbbb
MD5 a9b445d863855431c40382aa0e9cc092
BLAKE2b-256 2d5d58ce7c118112a7237978f6d167be835756793baf66fb8d2d9d53670f0f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5fc158a29dda72a690c059b298b4b7bcb742d7853efa1ed285cc8439fc91f72c
MD5 d61d6e37255cd289727fd3b3bd4a80ef
BLAKE2b-256 08dc09d48c49a23c9161bd4e96961968d775891fc19e8a8ec4695ca994027237

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.4.2-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.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6e374e5947fcf84acbc59e82b5b0f5d0a0cec67a855924b401fb1fbc3f4530bf
MD5 d8bbef39df544f25b066b9acc144527a
BLAKE2b-256 6c1fac1dff5130f9c8430a4f67e95d05a99af3599591c731e8fb59ae1617a77c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eca1d4d1ed348af2e1d47e9088eec242ac86df7366361d4bf3603dd7ad6c5d15
MD5 6031fb0328a43df60b97c25a75f1f75d
BLAKE2b-256 44d837c2e8b4f55b58e1d02f472e7f96b95c598b048a68e371903615e9d334a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da6b625a14a95aad48ea1f2ce6306f9e34b434ee375a6925e51ba08af24d4d49
MD5 71122e283e088286d16f8d6ce4e5fa2d
BLAKE2b-256 f1885478add31c8ec34b7f1578086539711e02274c1ab2f97173620d3bdc5a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f6761d18a4a73cfba916a7d41889acae73785d8835507db8b23875fe0f15c6c
MD5 2afdc7480f7e8d6660c715b949fa97a3
BLAKE2b-256 26af35f72d607eff55ef57645da9253b91f745f934428112e2e5208000993912

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1f2c088b7d13c5979d826cf045cfe70857650bf89948138a9ee43ed197564af
MD5 82f8af75cdd7ac42eaf020a98cf11b70
BLAKE2b-256 444b270acac537765424e0860b6f8ad8dc78ab082b45b1fb7cffa20c69aa5c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 708eab33146f408c53b72a0b0d668712a45d50cfdc597308c42fa33cfd2ac57d
MD5 664dd70965d7761813b0ffed167a1062
BLAKE2b-256 52f686b1a5bde9a81f83a6ad0c214221f0e87fbb6e18ba5cc54bd595ee876478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 253152dea1f0beb38746f0c8ad60a334ec42c7d95fe9d471c528224d89940085
MD5 8c907463a35878cd38b63e2f57a21b66
BLAKE2b-256 602c2a6400ace244261f678b69f8d02bdace9fe8ade373ae91574791c90b7ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63fa12b7099612529268500b391cfab2177360d256ac5f0ec502e2d03065fe94
MD5 303003889efdada338e6b443264015f0
BLAKE2b-256 cf4c15c42448a3433fc4756b30b696206f746f4f6c5dc2f13e4c06956b9f7fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c55811f1d7bb644d39d13a9cdeef46d3beeb25a19cdd20605de334dff145486
MD5 f7924ff0271c9706de743109ec5e6953
BLAKE2b-256 8ef5effd79e27d98d150acb37c145fcf6f7ccf8426cec6c5fa8ff27e4e3eb3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f70310d5f9962dffb9e4e02fbb1ff4af414077fc2111a864aebd56c80c382da
MD5 7c6db4b043cd097f4ffaf42748c3de3a
BLAKE2b-256 71ae0c46952b15058afc875ff8f671bc64e0cea8e671f34b0393d66a28ad23c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0cc8331565c1985d4d9b7b910673508731c9be7da65f9abf61cae204f844a958
MD5 68cceb9b74b9dc68154936b7af9632ed
BLAKE2b-256 e85fcadfc3b9ff7be8f55a605ce1f7b2540c87c9d3b849946fd63f924c3b0b3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff0590d878ef30393feedec7094e7c6e1e246953451bea65cc56a943172e32de
MD5 9d7506d2484fed28d2c82cb1c0497637
BLAKE2b-256 8b0a47976c93f48baf4535290734db8a14272939f00c27750bea849a441f82f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.4.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82a5f37cecf8a1bb4f85e6d536eedcda871dd37b40197ab1fc69c2b7c6ed6ba0
MD5 c35abfa80cba6d7ce41a0ef13d7814d0
BLAKE2b-256 bdb17f9ac3b57e6ee0f80c2e99f7e5cf566ebf3536f2509b4163c209a78414b0

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