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,
    overrides=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.
  • overrides (List[str], optional): Override globs with the same semantics as gitignore. Globs provided here are treated as whitelist matches, meaning only files matching these patterns will be included. Use ! at the beginning of a glob to exclude files (e.g., ["*.txt", ".env.example", "!secret.txt"] will include all .txt files and .env.example, but exclude secret.txt).
  • 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.7.1.tar.gz (15.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (953.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (939.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (868.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (894.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (979.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (940.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rignore-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rignore-0.7.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (868.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (896.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (940.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rignore-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rignore-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (869.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (896.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rignore-0.7.1-cp314-cp314-win_arm64.whl (647.8 kB view details)

Uploaded CPython 3.14Windows ARM64

rignore-0.7.1-cp314-cp314-win_amd64.whl (718.0 kB view details)

Uploaded CPython 3.14Windows x86-64

rignore-0.7.1-cp314-cp314-win32.whl (635.6 kB view details)

Uploaded CPython 3.14Windows x86

rignore-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (951.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rignore-0.7.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (977.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rignore-0.7.1-cp314-cp314-macosx_11_0_arm64.whl (814.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rignore-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl (880.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rignore-0.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rignore-0.7.1-cp313-cp313t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rignore-0.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rignore-0.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rignore-0.7.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (938.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rignore-0.7.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rignore-0.7.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (867.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (892.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rignore-0.7.1-cp313-cp313-win_arm64.whl (647.8 kB view details)

Uploaded CPython 3.13Windows ARM64

rignore-0.7.1-cp313-cp313-win_amd64.whl (718.0 kB view details)

Uploaded CPython 3.13Windows x86-64

rignore-0.7.1-cp313-cp313-win32.whl (635.3 kB view details)

Uploaded CPython 3.13Windows x86

rignore-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rignore-0.7.1-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rignore-0.7.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rignore-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rignore-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (951.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rignore-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (937.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rignore-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rignore-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (867.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (893.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rignore-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (977.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rignore-0.7.1-cp313-cp313-macosx_11_0_arm64.whl (814.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rignore-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl (881.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rignore-0.7.1-cp312-cp312-win_arm64.whl (648.0 kB view details)

Uploaded CPython 3.12Windows ARM64

rignore-0.7.1-cp312-cp312-win_amd64.whl (718.0 kB view details)

Uploaded CPython 3.12Windows x86-64

rignore-0.7.1-cp312-cp312-win32.whl (635.3 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rignore-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (951.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rignore-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (938.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rignore-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rignore-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (867.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (893.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rignore-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (978.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rignore-0.7.1-cp312-cp312-macosx_11_0_arm64.whl (814.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rignore-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl (882.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rignore-0.7.1-cp311-cp311-win_arm64.whl (649.7 kB view details)

Uploaded CPython 3.11Windows ARM64

rignore-0.7.1-cp311-cp311-win_amd64.whl (718.1 kB view details)

Uploaded CPython 3.11Windows x86-64

rignore-0.7.1-cp311-cp311-win32.whl (636.3 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rignore-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (952.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rignore-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (938.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rignore-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rignore-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (867.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (893.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rignore-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (978.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rignore-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (818.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rignore-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl (884.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rignore-0.7.1-cp310-cp310-win_amd64.whl (718.0 kB view details)

Uploaded CPython 3.10Windows x86-64

rignore-0.7.1-cp310-cp310-win32.whl (636.5 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rignore-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (952.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rignore-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (938.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rignore-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rignore-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (867.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (893.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rignore-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (978.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rignore-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (818.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rignore-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl (885.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

rignore-0.7.1-cp39-cp39-win_amd64.whl (719.4 kB view details)

Uploaded CPython 3.9Windows x86-64

rignore-0.7.1-cp39-cp39-win32.whl (638.3 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rignore-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (953.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rignore-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (939.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rignore-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rignore-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (868.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (895.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rignore-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (980.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rignore-0.7.1-cp39-cp39-macosx_11_0_arm64.whl (820.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rignore-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl (886.9 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

rignore-0.7.1-cp38-cp38-win_amd64.whl (719.1 kB view details)

Uploaded CPython 3.8Windows x86-64

rignore-0.7.1-cp38-cp38-win32.whl (638.2 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rignore-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (953.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rignore-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (939.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

rignore-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

rignore-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (868.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rignore-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (895.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

rignore-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (979.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

rignore-0.7.1-cp38-cp38-macosx_11_0_arm64.whl (819.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rignore-0.7.1-cp38-cp38-macosx_10_12_x86_64.whl (885.9 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rignore-0.7.1.tar.gz
Algorithm Hash digest
SHA256 67bb99d57d0bab0c473261561f98f118f7c9838a06de222338ed8f2b95ed84b4
MD5 e0e558457f4033198e2451c1ef2db63e
BLAKE2b-256 011a4e407524cf97ed42a9c77d3cc31b12dd5fb2ce542f174ff7cf78ea0ca293

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd87a68eee7aefc0d51d1a69dc8448b2ab1de8666da0bd6013e87b4a2ae71852
MD5 47d6a97bd093700dc4bf6ddfc9437b0f
BLAKE2b-256 6573abf94b0697d8ca7aa953dacc2378bdaffb9f20b95316f5af07fcf9c9bb0b

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e572eb7ba06d70ac295c6d2d9455491d30d1d553926b1dd3801cd2ca8f1e14de
MD5 f4f049ff2555d2f2a29dea0cdedbd7d3
BLAKE2b-256 9799794a2d69535a76d029b0630c2b0444edf6b7f860e3aba5b1db98e751733c

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 54d47cf63226c12b56f0d6b3b3c50ee8e945776bf8146895dc9d6b28f31c1d70
MD5 b9898bc605f8ae52ff18b55b3b54a7f7
BLAKE2b-256 fba7c25e9c6e77e1ea88ef39614e008a53de7f3eaff00d7ffb8547120de50117

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87fe72181575e748261973b5e0aa30fc9094aaa5eba913312c80ce3515dc5011
MD5 e07ba7ed415cab8009c37bf0868c7a2f
BLAKE2b-256 ce82f7925c476f4e1a2331d5ecf6a5a8c45498c2c8e6a9633e1f4becd36cbe56

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81dd8fb0356c8826862783b8bf3f404cf0f049927414522dacf2fe72850bc175
MD5 4b6330bf9a14bea329f0ca2adeca9b05
BLAKE2b-256 e241e8a55e06fe66f7bfe32b04b3f7b3055a64d37b223a8021c6e49e77a41316

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a26a8f4be7ddd02ff406a0b87632b02a270be8a2a792fc1038c1148069d931c1
MD5 d75a24a6bd9416a4a718846e627edf51
BLAKE2b-256 c2cf4ae5342971574f6aadb15a99b814dc3440712c143b70dbeb9080e683ffdd

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7fddac52045545d21ac6ae22dfb8a377bad67f6307251b1cb8aa5a5ec8a7a266
MD5 c7d1803b2312623384340d7dc185048e
BLAKE2b-256 3f216b326cc8dca54ded71f1071acc19f6e1c32e334d40f290183efab1e8a824

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b81d18b7a9e7bae8af323daaf540e03433527b4648c56a21137cdc76f9b8b2f
MD5 3658757755728bbf004d993a51f33db9
BLAKE2b-256 a089e3ea9230734f646089a70971971d71a170b175b83072d7041a12f5baef08

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1732baaff2b527a56037d57e5a3c3cc645d3f876dc850f57f2199233ab7636ae
MD5 a5a0b7adeca93c1c0a575c84c689376c
BLAKE2b-256 3b98033cc15bf1d2d8c1d03a1afc7b6d4b334d43fc1ddae063aae69444f07ae1

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 23e256405db72326f6ea1b298744377e297d4e4a386b66ca922155cc85570d08
MD5 b65606adc0dba7d2ed5261286d5de671
BLAKE2b-256 e84b210d8ca1eda34e41431bc01243f615654b33d4455c3524427bc189617bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b84de34f24b4550a477e00c3af3f17836fadd531a4af44d810be24a7561fa56
MD5 bdee8f288b371fe7118bb353d5f23637
BLAKE2b-256 2f0a821eda3e6f0be6b45870f7d51cab4e2381e9f90f19c0ef28515edd8e5637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbc934258fac3dc5c6c9f19d5af4bf8fbb1763d427d3ae25cbcdbc7844bc1951
MD5 00e4c3463395212ce68a4173b1870107
BLAKE2b-256 ccacfb8c98f1c0ed4bf3578d3fc71b22e0391df10113b7ea347938a37aa8496f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 af628176f77acb54694afeba190b2e08c737f80448a375329faa9fe70888c85b
MD5 69bbb977f20a485b7c55de87818e201e
BLAKE2b-256 7f9fa50854f6d8a6997c690e157d2f049b55a84f258cc42f3ccac5e44048aa67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b8eefb5529ea91d751ab5ec62e1c23fe73ce1222c4d8754be5f525a475279cf
MD5 857666405306beb311ea113284b966ef
BLAKE2b-256 84fd2b8ef9b57922a40084916687966dc7289e4063dd5d21e93ea03f7907e011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0c237746acc628b4eabc9f6eaada3672be8f48f6318fda4a79fde45376f7a14
MD5 9fabc73806aeb5a4bf987296eb04b245
BLAKE2b-256 bd17df08f56beb0cdf268d3f2774b388680d955e88fc5a8e511d29b542460df0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f14bdc68b1bcc80fd7a75d32c3b611df142cfbc293fdd946133fb8a9697e5141
MD5 8c6b5899988b08f521dcd791ad1cbf0b
BLAKE2b-256 cdc28a49671d4a5d05fd9d991b4946f84abe94b713a16aeda0e5fcac83322481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc36104026d5f4e3c45772d161ba1dd542d7ad9ae9af944a3df4a553690b60b0
MD5 6ed0d78a03b76794a3f42c1f87a27e07
BLAKE2b-256 729213e0a4d7e0b03a9374f40e5739e6a2835458cb3b858a722a17f0399cc745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b6e161194932c6813113397668495284fd716b7a959530777d3e77e4420ba14
MD5 bbfde6bc7a71b5092d064a7f93e11477
BLAKE2b-256 4ca91e0dd0c8b47c4acd9d5bc514f51fa06fbbd29bd81327a100956ed983693a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8b5481be7913e53ed72924d72420eeff20c4c0ee4f946dc1c48fb893376cf08
MD5 8841b46c5754bd365d4eed522319a094
BLAKE2b-256 4db4e20488572aceee879918f43923b77a6c107f344656f191d96f3f9584d2d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43e705e11a1c99218f42c4279950b3e8adb0e47d6b70cbc5dc319d16a11f24df
MD5 ec2d460e14b535eacc4c080dffb04fbe
BLAKE2b-256 0a1600d53ec03cc65bb7746b7e9654ff08d73e893f2d44c945be06ce56b5961a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 067fe8783e7be20ab7e32579161e6ef806a34621ebaac1f8db1d11d57b1ef701
MD5 8366e1da3cfe96a2d4b3137383c8e001
BLAKE2b-256 e6031eebb9778996848b4661aa26dbc04ade34304a34e4b01311495004f319ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9e8ce64f1e2a0e5528f963386f70f3b2e02a38799c824378d1ae15ca0d92bdc
MD5 9eed5f73d16d4f63936b9188948efd8b
BLAKE2b-256 6c554f419680652817540aacfd5bbd59dee69c2fe9e10b052afc326d1167e36c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ead594bcb4ac4ace3015ce308cc48d54667190f6162970d970354d00b2dc4b4
MD5 da81da4c9cbae9baf94bf6da339b3c67
BLAKE2b-256 4d816c0e0214e427a04ab8bc8fa14213d75826183d85b7af389d21e9e2df39b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb0135149f357517947e0d3a47af841155b6d763ecf53cd6420cb769bb923682
MD5 e914c7ed10a5603f03b48f943bb84561
BLAKE2b-256 afc0432477588b49b5f832e6c47dfbf0aea5b2b4bc800f6fa0e301aff09aa376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9cc35babe3738efdead1976aadeb78718705a202e8c09b31382d10831ef3f33
MD5 ad1ae8e4e820e0950cd860dae5496f0e
BLAKE2b-256 0bc82edb5b0e7d9544811fece89bc9d608ebcd417e4fb9bff0967899c70f2640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 164d1b222c3dd950229c79b5b4569d037493bb0bb61bd0ab6d88bef44f6a6a4b
MD5 afcee481415ffe90a04a564f5fecec15
BLAKE2b-256 41dc86733efa0050b2524ab231f9806fae68028c480c525daaefa959deab1c72

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 647.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 60745773b5278fa5f20232fbfb148d74ad9fb27ae8a5097d3cbd5d7cc922d7f7
MD5 e2238739dfdf13183a2803e1293c0a22
BLAKE2b-256 7719dd556e97354ad541b4f7f113e28503865777d6edd940c147f052dc7b8f04

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 718.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3f55593d3bbcae3c108d546e8776e51ecb61d1d79bbb02016acf29d136813835
MD5 ad7a2a01889aecd1f8d3c40bd0eb8a47
BLAKE2b-256 625067137617cbe3e53cbf34d21dad49e153f731797e07261f3b00572a49e69d

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: rignore-0.7.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 635.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f49ecef68b5cb99d1212ebe332cbb2851fb2c93672d3b1d372b0fbf475eeb172
MD5 10be55e4fc5a8fa88c0271261d19aa4a
BLAKE2b-256 22545b9e60ad6ea7ef654d2607936be312ce78615e011b3461d4b1d161f031c0

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89ad7373ec1e7b519a6f07dbcfca38024ba45f5e44df79ee0da4e4c817648a50
MD5 2d439de09b36d919fc1554ec4fd27ada
BLAKE2b-256 766c57fa917c7515db3b72a9c3a6377dc806282e6db390ace68cda29bd73774e

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff94b215b4fe1d81e45b29dc259145fd8aaf40e7b1057f020890cd12db566e4e
MD5 79ac870efb8e40766fe45dd695799d50
BLAKE2b-256 b658b64fb42d6a73937a93c5f060e2720decde4d2b4a7a27fc3b69e69c397358

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d38e282e4b917fb6108198564b018f90de57bb6209aadf9ff39434d4709a650
MD5 fff5b38a0bd54334b97646a202951bad
BLAKE2b-256 63c3c37469643baeb04c58db2713dc268f582974c71f3936f7d989610b344fca

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 322ac35f2431dd2e80518200e31af1985689dfa7658003ae40012bf3d3e9f0dd
MD5 7251332a6fbf65a60b37b108c9bf6154
BLAKE2b-256 43633464fe5855fc37689d7bdd7b4b7ea0d008a8a58738bc0d68b0b5fa6dcf28

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 447004c774083e4f9cddf0aefcb80b12264f23e28c37918fb709917c2aabd00d
MD5 5f176523689e7e4f697f67f7e8347d47
BLAKE2b-256 c94ba815624ff1f2420ff29be1ffa2ea5204a69d9a9738fe5a6638fcd1069347

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93ce054754857e37f15fe6768fd28e5450a52c7bbdb00e215100b092281ed123
MD5 ad26984f06091012556d803c10ae8cd3
BLAKE2b-256 f58889abacdc122f4a0d069d12ebbd87693253f08f19457b77f030c0c6cba316

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eed55292d949e99f29cd4f1ae6ddc2562428a3e74f6f4f6b8658f1d5113ffbd5
MD5 5693d4729a91c8258eedd11bb804b15c
BLAKE2b-256 c3aa8698caf5eb1824f8cae08cd3a296bc7f6f46e7bb539a4dd60c6a7a9f5ca2

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 736b6aa3e3dfda2b1404b6f9a9d6f67e2a89f184179e9e5b629198df7c22f9c6
MD5 88b17fda7d0ad6cbc23eaf65a7fd8c88
BLAKE2b-256 c62ef55d0759c6cf48d8fabc62d8924ce58dca81f5c370c0abdcc7cc8176210d

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 682a6efe3f84af4b1100d4c68f0a345f490af74fd9d18346ebf67da9a3b96b08
MD5 cc45f231c0fcc7b9d596b2b42cd75a10
BLAKE2b-256 f60ada28a3f3e8ab1829180f3a7af5b601b04bab1d833e31a74fee78a2d3f5c3

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e83c68f557d793b4cc7aac943f3b23631469e1bc5b02e63626d0b008be01cd1
MD5 3665edd2480032155e707ca3abab9a91
BLAKE2b-256 9b88cb243662a0b523b4350db1c7c3adee87004af90e9b26100e84c7e13b93cc

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30d9c9a93a266d1f384465d626178f49d0da4d1a0cf739f15151cdf2eb500e53
MD5 76d779a322c420ad280b5e44fc040ad7
BLAKE2b-256 486a4d8ae9af9936a061dacda0d8f638cd63571ff93e4eb28e0159db6c4dc009

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abb7df83a41213069195436e9c1a433a6df85c089ce4be406d070a4db0ee3897
MD5 e0a9a8618c892b1e05be640f0a919dd3
BLAKE2b-256 b6d3b6c5764d3dcaf47de7f0e408dcb4a1a17d4ce3bb1b0aa9a346e221e3c5a1

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 647.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4a4c57b75ec758fb31ad1abab4c77810ea417e9d33bdf2f38cf9e6db556eebcb
MD5 a282e16617f6dce4ce73d583bcd70347
BLAKE2b-256 bafbb92aa591e247f6258997163e8b1844c9b799371fbfdfd29533e203df06b9

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 718.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5dd0de4a7d38a49b9d85f332d129b4ca4a29eef5667d4c7bf503e767cf9e2ec4
MD5 2ec804379d13bcec49139ff5308d7049
BLAKE2b-256 95e5c2ce66a71cfc44010a238a61339cae7469adc17306025796884672784b4c

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: rignore-0.7.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 635.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c01cc8c5d7099d35a7fd00e174948986d4f2cfb6b7fe2923b0b801b1a4741b37
MD5 ffbe2b907bc3ee198fe1f344753cc2fd
BLAKE2b-256 5fd7e83241e1b0a6caef1e37586d5b2edb0227478d038675e4e6e1cd748c08ce

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8c3b77ae1a24b09a6d38e07d180f362e47b970c767d2e22417b03d95685cb9d
MD5 1ba5da297921e843c5fbdad65c6f908d
BLAKE2b-256 f765dd31859304bd71ad72f71e2bf5f18e6f0043cc75394ead8c0d752ab580ad

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3be78b1ab9fa1c0eac822a69a7799a2261ce06e4d548374093c4c64d796d7d8
MD5 ca1d2a08abb723a1f8e6d0e8f205d0a4
BLAKE2b-256 9322b7dd8312aa98211df1f10a6cd2a3005e72cd4ac5c125fd064c7e58394205

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f731b018b5b5a93d7b4a0f4e43e5fcbd6cf25e97cec265392f9dd8d10916e5c
MD5 bcbddbb5e4723648d5ff3835b47ebe6f
BLAKE2b-256 74d2a1c1e2cd3e43f6433d3ecb8d947e1ed684c261fa2e7b2f6b8827c3bf18d1

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6cafca0b422c0d57ce617fed3831e6639dc151653b98396af919f8eb3ba9e2b
MD5 1b36a8232acad6748914713df53ce471
BLAKE2b-256 c7386f963926b769365a803ec17d448a4fc9c2dbad9c1a1bf73c28088021c2fc

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 873a8e84b4342534b9e283f7c17dc39c295edcdc686dfa395ddca3628316931b
MD5 7b7488e076e192e9cd59f46956ac5490
BLAKE2b-256 d8b11d3f88aaf3cc6f4e31d1d72eb261eff3418dabd2677c83653b7574e7947a

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f6191d7f52894ee65a879f022329011e31cc41f98739ff184cd3f256a3f0711
MD5 3ed3bfca2129718ba748ecdd27acdc52
BLAKE2b-256 0e8dd7d4bfbae28e340a6afe850809a020a31c2364fc0ee8105be4ec0841b20a

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e89efa2ad36a9206ed30219eb1a8783a0722ae8b6d68390ae854e5f5ceab6ff
MD5 0e6f909454d892e703df84d0f9e4febc
BLAKE2b-256 6edabdd6de52941391f0056295c6904c45e1f8667df754b17fe880d0a663d941

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ffcfbef75656243cfdcdd495b0ea0b71980b76af343b1bf3aed61a78db3f145
MD5 bd57366015d0f84b5e410c965659863e
BLAKE2b-256 52b566778c7cbb8e2c6f4ca6f2f59067aa01632b913741c4aa46b163dc4c8f8c

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 401d52a0a1c5eae342b2c7b4091206e1ce70de54e85c8c8f0ea3309765a62d60
MD5 1b885475a56626c2a44a8d7ae1cd0756
BLAKE2b-256 120b116afdee4093f0ccd3c4e7b6840d3699ea2a34c1ae6d1dd4d7d9d0adc65b

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65443a6a5efd184d21538816282c78c4787a8a5f73c243ab87cbbb6f313a623d
MD5 198f4003c34571101b22d204a7907176
BLAKE2b-256 907f033631f29af972bc4f69e241ab188d21fbc4665ad67879c77bc984009550

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32da28b0e0434b88134f8d97f22afe6bd1e2a103278a726809e2d8da8426b33f
MD5 dde73ffeb2fbb7a47b9465b89d0b228a
BLAKE2b-256 fadbaea84354518a24578c77d8fec2f42c065520b48ba5bded9d8eca9e46fefd

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb6c993b22d7c88eeadc4fed2957be688b6c5f98d4a9b86d3a5057f4a17ea5bd
MD5 8f3b5b452916a82a6740bbe769dd421b
BLAKE2b-256 c2f899145d7ee439db898709b9a7e913d42ed3a6ff679c50a163bae373f07276

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 648.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 05574f4676b906e92e664ad0ff4a664f3e7b55e98d86c358d6dad4a4269f8724
MD5 b264902fb5417253e49d4507e4dd6060
BLAKE2b-256 07d972c9c2e5fda75afc1ea0b3f1ac98cfcf38b92972a4e8d3d226088cf46588

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 718.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 21db6b08b0595225409eeb7fcc224cb6afbc75a4b88ecf3e2e4b3232a1958162
MD5 1af41d2e66277064cf18de5e43d8801a
BLAKE2b-256 011243f209b8fa1f103661fae71800c0cb351b5053b7ca0082719e038f6b3f39

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for rignore-0.7.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d17c99fb0e996040a44103089d8dbb1867badd66a488fefa2de99537961d0fe9
MD5 76b5e88161a1369d5f42c6e833a72598
BLAKE2b-256 305a2a18b6cd7f8e5bf927ef6c768877b30cc9b330d29081f25571518cb0f288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0be80bd1f44d4eb3dfaa87ef7692a787fca7da9d10d9c8008fca9c82aa3f7491
MD5 257474abb60f54b6ca1de1682aafe987
BLAKE2b-256 a2aae935a4620621b1ba3aa711fef17cf73b2cc61ab8e5d26aacca1a6b208262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 504ad4d6b531874f15d95b9ceda13f9057751df3e64dfb6af76262535d70fa57
MD5 54462594d9f0fdd10ce9ae49c37d923c
BLAKE2b-256 e12f2bd7873b8ba12060d381d60ef145b73ed3585d56b4fcfe47948b2c42a6cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba9d70e972a40ee787c7da4f0a77785c22e5ff5ec70b61c682c7c587ff289828
MD5 23dccc52a27f1e5aa9a51ef18dca603c
BLAKE2b-256 73e593b6221e17735275aab5dd0aee763beb566a19e85ccd4cd63f11f21f80cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9342d49d273e791ce728d47d3acfd55712e75ce5d130ad1887de9b29c77c464
MD5 97143685838de47918b9b786c0cfe31d
BLAKE2b-256 858be2b8c269706c511e8a87d302e6217ab0b8f62db61f22662ad3989af76f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f37af4f75809456b56b8b41e29934f5be668d3bb069aa09fc102bc15b853c8d5
MD5 d1082577ee8b01b2f2cdf5780af2cd0f
BLAKE2b-256 9a9f190cd40b398e30a700eabdb0b4735ce872eba86c3d198adfa1239c2ee02b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a876989c63731241944190b88e7dde02ff63788e8ce95167e30e22dfb05796b
MD5 3677def4403143c123c350ba0e14c717
BLAKE2b-256 7e648829ac6f4658757c9d92ad61a82b1a7f7a0168c5158badedfc37d77c0594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c2057d7de9e9284f2b834a9fe71eaba7c01aa46215d0ca89924f465d7572be8
MD5 22765765e58f24efd65c96397308714c
BLAKE2b-256 27cdcdf6ab4e24ec9af677969409e22f9bd2363d53c3137adca63aaa4aa9deec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3eaa6c1a5d4c4da6453b73606d5f505bf98448cf64c86429f5b18e056d3e2a69
MD5 74d89f94a9fceecaf3008c2434b44d5e
BLAKE2b-256 389e3e4d1aa225d0551f54d3185d1295d92a282c249710968aace26f09cbef6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ee1b9c17f93d74f3b79e7c6bf7359981748e7b606ae767d106067c664798f52
MD5 d455d616710d19141c4b13644bcb1cae
BLAKE2b-256 8fee9e5d50a3ac4a814caea69da7d8aa53fae793bd977763e0bdcd5247ba03d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dcd0b5bcdd278135aa735d0adc8a7a7436450e5a59d2bcf6c51b27ba7ce76a3
MD5 e1c67662ef88958bbedb8618297d6bcd
BLAKE2b-256 160b24fe555b622ce2a26fc3a86988846b2b4f71275ee626411ed743c01cae99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 926d21c39880bc52d1b0d05c06e97b9c10d011aa8d5ea32bcd2fd05677476a9e
MD5 991e4c92b30c4d0c9fcbdcd6f641179e
BLAKE2b-256 b6eb0cf24f911a9ea0ba78b58acc9969709bd94186fc9a1c06aeb75364223eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12038950bc45f28e904b4d03c345fecb19c90236a9fe9ce4e7556712d5fa6243
MD5 530543819f32386d36d006f2522a1f9e
BLAKE2b-256 3523116f02af72512b45d707bf5a9d0c19c0367b112dcd04415e3bca6c23115c

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 649.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 00683be573b0858e78976387d63ecccf7eae84773a85dfc83b6266a9b15f86f3
MD5 9526019bb79a00778fa426a69be21d92
BLAKE2b-256 19f4849d2ce45003f96806079f8d37515705f629796397a5c7e01b2b7be69695

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 718.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aacdd39bb6897444928b7fdac51f6ebedf471c2cdc26d108700fa4447502ec80
MD5 286aa4dc2251826ed50b3e4a2b5d029e
BLAKE2b-256 b5885d474a48a5d52a112ed498b1e08d90bb9e690c7c7ddea5751d66e70f5da6

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for rignore-0.7.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3743bcdecfad058f17572cfc0d49715fed5c626cd9c20c784ae697bfff40250c
MD5 0192824dece0a0e2940bb6fd87ee65ec
BLAKE2b-256 f4e5d274a68dae1542a59fde3ebc406cc45ae479c13bf84cdf535254bc90e254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53209d06e6f3db46f568ea9df1da1139ac6216df82abcaa09c654efa02efd62d
MD5 29d2d64943c7a676fbc7db91db525aeb
BLAKE2b-256 be5345de7e07bb8893424660d4c616b1247a613dc04c58989fad0a2a6eeb0a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0a700b79b3d4b5d1ed30f28671042649f0dc4826c66ea5abc6cfd9420f3999a
MD5 f70bb21ae057f51bdbef56034c0f04cb
BLAKE2b-256 8f9241ae7cc82a2fdd7774ad9f386e91a5718950eacf5e7c55b620e3b31aca62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97d34db7ae894103bbd3ed6723f295387a9167ca92ec1ae3801ba936813ed5c1
MD5 4c8f458bc4d281076f5f4652af50c436
BLAKE2b-256 9a15e53aed04f55b741569588c0f61f4fb8c14512ffdc1d58058878721367dfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae20640392518957be9f99057a7313de49c24ceec9511e3d281e0b7644c0c331
MD5 032399f65c812e26f92b147154125f0f
BLAKE2b-256 d4a6ebdd5448456b73622132acc67b58aa114e5738bc423881081f6d18bc447a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae45784a1639009ef5a0f59955870327206a4d13e5f59e8d5cf1e46b923a99b3
MD5 3b9ffa7690941cd90d65498de930a74e
BLAKE2b-256 c40454118c1d636c21640a91ec05b2784337eec3cf7cc5e37c170e3fc85fa251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7fbb82c9d0f2d0ba305fcc6a5260bf38df3660d0a435acdd11e5a8a1940cba19
MD5 bc26b654dc8dd227ea1cc80613ac38e9
BLAKE2b-256 8d0686f4fdfd18b1fc7e5c2780286cdd336777e942d0a2ba0a35ac5df18c706e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9802c188c8abdac139bdbf73e40b7725ed73c4945c7e861ab6c2fef0e0d74238
MD5 a03f505016c8db4f739974998aae38c6
BLAKE2b-256 d0d59613b32ea0838ea2bc320912fe147415558c7196300e753af38bff7c70dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0ca3a88c60bd4f952eb39fae64f8f1948cc9a21e430f55a20384b982971a98f
MD5 75f4237f3e296f73d69ce12e5eca36a1
BLAKE2b-256 078b44ae937da83c33e560b4cd08c0461fdc49c81dd81d3cb1abc597522508e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abdc91baef314475c88423fc3d06509b5d5f73931e5eb7cf7026cf4bccc4c252
MD5 191b7a8a96b29cd5b289d439997711e6
BLAKE2b-256 0a77365f795d4996ebdfd006f20a055e1451ddbec4a4daca30c614036d2956ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c86e9e81448afcf558daf281a924fc61e368b9fcbf7b0e364d21ead6cac6b96
MD5 f8b664a3b613ce45c93f13f96b58c087
BLAKE2b-256 662ab4312c964662a293949374e726ce22c74da8021d74fdde2fe9101ae9cc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4beefafd3c6cb90d158bd067de446cf91e0fa127523ce9999b573bf9d7910ce1
MD5 865d7c40f0b4aa14f4ca622da3133d1c
BLAKE2b-256 559f1c6345944e13b0dc39f1e8be3ffdccf9c811d8ca72efef6738ca97ca7f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a328bd98987c11ec6a6243a348296aefd840e93639ca7c65706e12006f863e92
MD5 0d5754ff3f4e493ec9d8d5ef749fa593
BLAKE2b-256 0fc34245eb9b8b3f65a2cbf70050e36870500ab1332490877b1d114dd3d9f337

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 718.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 747a9b368ffa21939dc704e103e1030bfb38316469239c7b3ad14edee6490f39
MD5 5853aec5f1f570811029cfabe17db0b7
BLAKE2b-256 141efa13c93c5e9adb32c033719a9b091eea8324c2c69f0f3d37d2e64e74e9d2

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for rignore-0.7.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3a2eff764c6792cdf8e12929f8e2d73f02befb16fb7f698f2c7c2f45e15192a8
MD5 ad46e90ffe18daa8e03683c8185c729e
BLAKE2b-256 819fd83370fbec24777b4a6e03af4d76ea4dce96df017a0c096709e6a83b4639

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d332d15c06eb1831cf851628ecfc152549c9b3e0ee09791f532f459c502d0975
MD5 27887e95b022b0e926be06986a748960
BLAKE2b-256 775d6b70591a862387076e354ab93ca1b165e8c213fe0d8d59d954515d4b19a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 664c6375ac66fb371a6931a53268a5f8398de2d306765ec2bf594602654f0332
MD5 b7379d3f4ecdbde0dd3a474c9f468374
BLAKE2b-256 2564faf7e0017fffa4561d7b4a9ddd9ef8fffa70812fc60ed57d8aed7f6e5e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f4a9a274764bf797f2f3d0e674e6ba0103c4dd7ec8b1c90cef9772a72efd99c
MD5 12fcd0315b588b873ff479fa9f32d112
BLAKE2b-256 31a53c1bdae5b594e5a59742e8fa1510a8aee902defd94d1b3ed46b304aa397e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9caf52e1e3dd06bea4a0e0caa79483eb969e8fbb357d232bba9f653864b479e3
MD5 60872da62b55dba913c9c015cc2dcb2a
BLAKE2b-256 63088b6ab31871a3176304843443f0d6b93960ed95b1af4dab4f5cfd57bc3c11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70035888dfe63068042f8f807bd5cff11d379e2f026e2bf07758cd645fc5ee38
MD5 a7523a5b3321108e579e438c1b60f682
BLAKE2b-256 f7460afdf2baf996dda4996db9ced50cd9608a90e9ecb58a865310981346d7f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2d093f183da133656d75aba7478b33a159df77d79872d9a38d29ac4e900bf32
MD5 0ef774eeba2cf2e68120e040d0326243
BLAKE2b-256 51e4e9bd1ec204c2f3e420ec101eab13bb85ce42132aa8c7e2fb02b4c73c1c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51b0fb67c1e6a659d0a61bc6e94c3f988989e466865ce479d67145ee3c441a51
MD5 98012505a94971d9caff407eacb96b90
BLAKE2b-256 9a5fa9ebbbb1e082cd2f57ebf7144154ca218badf5cce182dff497e1a00af55d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 075ee67cf1800ed47c4110b30a43fc929ca6e329becb99d35b923b105ecbaa07
MD5 e315fae0946945ecb945f4b1d959e8f0
BLAKE2b-256 30eb7b848d2a7cffefe062a0dade23bedcb012ca9e273157af7dfedfa648056c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4af8c2edc43c5f2f23847b652d154bbb56a11e41af4416ed1cf5f887baa32d91
MD5 198ee5c7b659098472f788eec6ab27f5
BLAKE2b-256 fc4a7ee24f8b6320cf58e51021aa52e8efaa4ca40cb05a7f9682b9464cdd7665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b5b0ec651213198c181a369e2f6c99792189033d2958c33c4215308e461f6e59
MD5 0623ad6f328153a555c0a28faa7816b0
BLAKE2b-256 cc497efd7478eea778872125d49d71763f6a15291a1cde334e93c6d48bf8d157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41d35f27e22342d7a30a19887ee22c1f42d7334a7d3ea0051d3ec718034b7988
MD5 0d3fc57955e40dc4f0657251f157d16b
BLAKE2b-256 d40392c9a53f8327df33278b4b83189e39dae8350712c1c8e33d009e627ff9d8

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68bb98485fb05503305bab81a1da9645fd9863192a652f0c3d35ad8ecdac6a1c
MD5 a672469e98c99840eb4b91f43ecf83ae
BLAKE2b-256 fb05608c1ec2c25195687535926686c40ee90adcf7d443b900846ab37749985f

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 719.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4cb1181850ba61515f2b6a0b0c5813b908c50559215a1efcba2af3fb4c82fac0
MD5 ed0117b950b0f06a39cfa5e6dca8c500
BLAKE2b-256 52f4b35bb61f55fcf792e2e21d5e126d0511fc1f9c7316f17ae96c5c2799fa76

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for rignore-0.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d4b8498693b413e5293268932b14cb6f1a3082146ff4b481876b8fd083ef7824
MD5 0f588c40dd42cbd7cef4ce1475640789
BLAKE2b-256 7bbd59e367836f478c0b35b1334ccd794a96e07f4b6fd67b1807f5ab5d0051ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bbd3abfdda70ebcc37e1fe896f0b3da62dfe45a230c41244ce23eba7f07c057
MD5 4fa5230e98d6f2d77e3ae56d8710e27d
BLAKE2b-256 f72ce717ed33b0cc74b5b38587376227c3689ab6525734b5dac42915d7d2be08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0f535be97902f9f615767d894d2234585b641df2dc3a411fb60d08b7c389583
MD5 ffcebc0c4698f1beb78914bb554d3b5e
BLAKE2b-256 3a0085538e85e64f4ac39c0e3bbbb808a8bdeef8d45d28ee810583db48f5c08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f63f6c6dbcaf98d041df165e83865d68276fe908ebacca527eed2ae9c6d574fe
MD5 84463a6eca51b9236332dfc95b54c33a
BLAKE2b-256 662664c17439e4b8ba265ec27d5d47ae7746693de0999d1ac83307db445bbb92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93ef7cd9c969acd60d983ab2d7388330d51954fe4dfca3145974ea7faa5a7f94
MD5 85944485379b4f9b7b3db06e618059fe
BLAKE2b-256 9d6f2c3cd47da3de7b8791a8f03be91e63ea4baef0333b14bc9fe7b85593dea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10bfefb03543277a802d6f24d569db4755428a42befb8e5a00a828bb818f5f15
MD5 ee1d4bb7a525310e719725161acc132c
BLAKE2b-256 091cfc7fce903c1ef03bba88c6d0d0ea7620e63044c1fe8b99743c3ba016d83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0eed55b89e03344792bb431556ee2475b94f2577338dcfa3693968cdce0e61e
MD5 3f4668f7802c08b7b84ae52b99bdfba7
BLAKE2b-256 49cc4c1d169d3933b31e79fa252c11508ffac615008f18d5704e60ef89b69acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f95b80cda30e638ddfc0d119ca11593b056bbd3af3608c198cd8e3345fba82c
MD5 4b7b1436ee108af0b66cb36d959df4d8
BLAKE2b-256 3a6a0710028aaadd2d433238d4b2edfe1bf4ad766efb5a4586490d13619027e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff9dabd29f1fb897d9d08477631a7b9ebb7a86473c22faefc39dc5b1b394a1a6
MD5 c540748855dde7f37022e0794f2b8709
BLAKE2b-256 573a12c602b5d42f8959226c201441bfb3fb7b62c553e443e046b816eb808476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3255760eea7637d2519de0156c497d6641b5cc4388f137a896b5dd2e1a94411e
MD5 9fd3b6b369507c77d0b3ba9d404f02e9
BLAKE2b-256 000c1cfc3f0511459d7548a5d806ac7bd250c3d955808495630c45af30a7d1af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e52029b0e53c8783a1d5e1d71caf63b627b34ac469abc6f48280387749683ab7
MD5 94c8912551032c53c5ea6a4f575ff8aa
BLAKE2b-256 992ccd99310fbe02e3f6aed1b2f4729f11a45d81a037f87f4a9c4a8b54da6b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1af4e8724a316d621c7e7a7af6be59c1da1eb774f80dbb699f52bb4c108631a1
MD5 cfa48f1ce36f8e533eca1c47d518fa37
BLAKE2b-256 2af24b5ce1207c20e2a9c9a793f0e566cfaaf762090699ae15ed30c3c7cfcca5

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d869a60c209bb25dfe8265c66c24e8681544e9e6fa5671c28b8eb393d59e99eb
MD5 9dae88c627d059821cead9cb9c43a385
BLAKE2b-256 f79ce9c05e3c3a5d7cd35d1299f8b84621874581efb3cd62d9f795bd8783f86f

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rignore-0.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 719.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for rignore-0.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 521391bef755d52a1c0e62a7ffee9c97f95b0f9d5a4a4fed403e7bd4f9ce2df9
MD5 c8c798f9d3c3fbd150999a8ed9302949
BLAKE2b-256 abd1c3ae219f82fecaa7abe1cde200b33a8567b36f7ade3816711c023e6904ae

See more details on using hashes here.

File details

Details for the file rignore-0.7.1-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for rignore-0.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d87c70fd6336b451119037d55eeb64cbd9713edcd3b0fd909e9b673904bec6bb
MD5 fd48748f056c0102e5aca4fa642ad129
BLAKE2b-256 5a6e73493250d172d8e8f0d5e09e954358926ea272b8774d04a3d14221309b6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0749df0d7218a278a4e8685af69f8890ca7623c51870ed2c288d0ccd63197e4a
MD5 7f6e220dd6249348aa7e09608b4922af
BLAKE2b-256 88d95e573328688139a491ff36f07bd01359f6f6ab6d69bfe31aaebbe736ab15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae641ea754152869a87676e5550bf37a52ffe025cd67bc915a00456389b1b7f3
MD5 5aa4c263de982160938861e62c115d60
BLAKE2b-256 0e0c780f1ec3b9eb9cd72669cf5800bdfee7b0b95247961452a52c58ea2304e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 269aeb01440a3e7fc699089bf48307646dd02c675aa62d7bf99927b144168830
MD5 6e4ba2f9bdeee47c04fcbac4ef1f6e20
BLAKE2b-256 b8a01e03b033f6e4674d43d6f66581d9af752fadf8f7f04e9fdca1f4a689c50b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2295cc09a1327e9dda2b1b1f897f0da8ead345baedd54cc3a406ffec70665399
MD5 5ff201ea271ee05b9ad86371bcea5e35
BLAKE2b-256 840ae6f290031d1fae5ddec99e1e7203c677fadc7fd73787f10f42cc29df4c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7666b24f369acbbc3bfd6288712a0f26235c851a0a6de5cd16d15c31bfffc06b
MD5 8a5af0f92696779e686a427ea33a24de
BLAKE2b-256 53c1f378550ed9f17fded37c206359ade9c226a245f6ff9ad5babcad763d8607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3bd1bf51be5fb5259478c41323429ebcdc8b3ace55dd382f1ea167105e1e557b
MD5 ded44202fdc37c13b2e370419743bc62
BLAKE2b-256 9d5d58e0d1e12e0b6567b902054a19815b5ff76cadb4609cb4d3c35528c03756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 391610a4e88e059e5a356a68771afeee5d3c9b7a91a120aa018d234e1370bcc0
MD5 50fd7637aaa439af2b42cbe93adc52a0
BLAKE2b-256 f4d745681336a531fc1c7088ef6c772e039a5d8e3d3f786d67702f1edf67b97c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32db270b9442b918f90fc9305bbec3b4f1fbb3161145e5de97a7b8c247220388
MD5 724738f1b5b8d67453ca2cf741a5f193
BLAKE2b-256 fb58aaae0361c54ca946a633eae63671787915f91fefd7f75a48e8773a61e939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 474556aa9ddf48ea117290e81d40d1dedbbcab3c294edfe7a3318639ca2f22d6
MD5 29a6e3aa53605c0a75619187d8a6c520
BLAKE2b-256 c4dc28d43718985872fff0b7ad1b4cb312f2a4c07162fa9d3bc48c480bb2aa4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56220e29b86f086c1ad50a219c32800749c61bc478a8867f745459b6036d1b8e
MD5 5d7fc10974c6d822ae343f13288ac7b3
BLAKE2b-256 1be6b14bfe881ec6034f8ba559056cbaa1858e2f152f8af962b76b3e310e7e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37717724e14cbc1f4a8b9a0800787eac4990483ca91557237c9b3db23add303d
MD5 3a6785f57fb11c448936bcccd314b83c
BLAKE2b-256 89b73140a27e6f79cb0fef153ee63fafd535254fc17dcdeeb8afb3c093d9c030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b7e4e357bfbea24344ae3fcde319a010974a5cd2cfeeb71dcda3cfcb4ba79475
MD5 46ec778a55b37e65a6f7569b55ad6ffa
BLAKE2b-256 0d454cf5a4638c1b1d8a9165e4c33c986833d9343ed2ca95682814cb85a6e513

See more details on using hashes here.

Supported by

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