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.3.tar.gz (15.3 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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (986.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (943.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (876.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (900.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (987.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (901.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (987.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rignore-0.7.3-cp314-cp314-win_arm64.whl (656.0 kB view details)

Uploaded CPython 3.14Windows ARM64

rignore-0.7.3-cp314-cp314-win_amd64.whl (725.7 kB view details)

Uploaded CPython 3.14Windows x86-64

rignore-0.7.3-cp314-cp314-win32.whl (646.4 kB view details)

Uploaded CPython 3.14Windows x86

rignore-0.7.3-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rignore-0.7.3-cp314-cp314-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rignore-0.7.3-cp314-cp314-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rignore-0.7.3-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rignore-0.7.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (958.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rignore-0.7.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rignore-0.7.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rignore-0.7.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rignore-0.7.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (984.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rignore-0.7.3-cp314-cp314-macosx_11_0_arm64.whl (820.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rignore-0.7.3-cp313-cp313-win_arm64.whl (656.2 kB view details)

Uploaded CPython 3.13Windows ARM64

rignore-0.7.3-cp313-cp313-win_amd64.whl (726.2 kB view details)

Uploaded CPython 3.13Windows x86-64

rignore-0.7.3-cp313-cp313-win32.whl (646.1 kB view details)

Uploaded CPython 3.13Windows x86

rignore-0.7.3-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.3-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rignore-0.7.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (959.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rignore-0.7.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (941.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rignore-0.7.3-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.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (897.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rignore-0.7.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (984.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rignore-0.7.3-cp313-cp313-macosx_11_0_arm64.whl (820.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rignore-0.7.3-cp313-cp313-macosx_10_12_x86_64.whl (889.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rignore-0.7.3-cp312-cp312-win_arm64.whl (656.3 kB view details)

Uploaded CPython 3.12Windows ARM64

rignore-0.7.3-cp312-cp312-win_amd64.whl (726.1 kB view details)

Uploaded CPython 3.12Windows x86-64

rignore-0.7.3-cp312-cp312-win32.whl (646.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rignore-0.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (959.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rignore-0.7.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rignore-0.7.3-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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (898.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rignore-0.7.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (984.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rignore-0.7.3-cp312-cp312-macosx_11_0_arm64.whl (820.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rignore-0.7.3-cp312-cp312-macosx_10_12_x86_64.whl (889.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rignore-0.7.3-cp311-cp311-win_arm64.whl (657.6 kB view details)

Uploaded CPython 3.11Windows ARM64

rignore-0.7.3-cp311-cp311-win_amd64.whl (727.1 kB view details)

Uploaded CPython 3.11Windows x86-64

rignore-0.7.3-cp311-cp311-win32.whl (646.1 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rignore-0.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (959.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rignore-0.7.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (941.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rignore-0.7.3-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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rignore-0.7.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (985.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rignore-0.7.3-cp311-cp311-macosx_11_0_arm64.whl (823.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rignore-0.7.3-cp311-cp311-macosx_10_12_x86_64.whl (891.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rignore-0.7.3-cp310-cp310-win_amd64.whl (727.0 kB view details)

Uploaded CPython 3.10Windows x86-64

rignore-0.7.3-cp310-cp310-win32.whl (646.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rignore-0.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (959.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rignore-0.7.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rignore-0.7.3-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.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rignore-0.7.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (985.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rignore-0.7.3-cp39-cp39-win_amd64.whl (728.7 kB view details)

Uploaded CPython 3.9Windows x86-64

rignore-0.7.3-cp39-cp39-win32.whl (648.3 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rignore-0.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rignore-0.7.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rignore-0.7.3-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.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (900.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rignore-0.7.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (986.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rignore-0.7.3-cp38-cp38-win_amd64.whl (727.7 kB view details)

Uploaded CPython 3.8Windows x86-64

rignore-0.7.3-cp38-cp38-win32.whl (648.7 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rignore-0.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rignore-0.7.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

rignore-0.7.3-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.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (875.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rignore-0.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

rignore-0.7.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (986.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for rignore-0.7.3.tar.gz
Algorithm Hash digest
SHA256 9fd4dd0f99db8b339801601ae9d540b77db94480b4a5ec2ebbfc4048494971ed
MD5 e503fd9e64b953d51cb81b6199ee2cca
BLAKE2b-256 52f470241d3c05e13405f0cf237002dd163753f4512fff7626fa19b60213fa9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8e81c3b62c7766462630476ead86895b23cf385db2cf383aa391b8d1eed898c
MD5 5daec0b0baf9037ce4840c4eaefe48da
BLAKE2b-256 3cf6cce2c65da87fbfaeb7a7dfb19320897ec89afedbcf83683111d69b29afc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3dece64b6476824f5bf81378cff632270fb33a26a2a58eac390114317ec0ceb
MD5 6dc8f7983c02727fc3e434460905ceba
BLAKE2b-256 248e36bec3d7a01f76e16a26777e701e721dfd74d1bc836d3664cdaf5f54f1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3739a3fbe7a1c7c4980d6af6d679cade924756c606e7335e1af4daa0b5f06d42
MD5 9feb71f65ba5480768d6842053f072b2
BLAKE2b-256 b858ec157693a07119cb5e07e2eb46322dbdad1b686e3c42be40fcc7b35dc64e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6644f736e00b1025154758ef91e40520aad8a3380f6f0ece64cd3bd32ca0723c
MD5 d802b6811b0783da6513b269a153f6df
BLAKE2b-256 98201824a569f28c6fcc504107eced4e393d81d52f9e31e1b13f266f12194ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a95f9379a0d6c35880af38d49cfdd0fda23b8b46231960fd555af856fb88e96
MD5 7a80309059f6d574e9c8ae69a695b92f
BLAKE2b-256 9b1328824d5da28eb1773213b34346e4cbb6127ac48730794a5c93231fd65eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cdacf78681f6b22e508bdf1fcfb93ceb9e5cfeed456dcec2348229c428d524eb
MD5 f8fe95d1ef23127870d42a1297a662b0
BLAKE2b-256 52d9a94c98c19d6d41e1a7904490a874e91bff9fdbff2b7bfc3dd245ba3987fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 214345bb39d6151f5a693faa956abf4e281fac9e67d8e33d193a6de037b1cf82
MD5 61133c551663bbe4c66937255af700f7
BLAKE2b-256 540036af41869f23094169164d58892dcaddc0f14d4235812de8f806390a6663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f42a833cb94e882c33b77b2a12935500858af8a86b618166a47db35beece367
MD5 247c8573de08066f71d5527e61a58133
BLAKE2b-256 5f56254c9f638a11626ee851483d4f9e02eb8bf8097afb9e5821b28621b4139c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ec80cdeac2e8f63c05c94c816835d2b66e980862343e465237548a2b5a428d5
MD5 f688dc0b90f30f07de9262d67e1e4d83
BLAKE2b-256 365215b0ffde49c93d98e98e060edcea6801592b30476cfdc68cb823c6879237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 126c8164e6880da3f295b8ec730accfe9c47d75df5194391b86933ec36abcfc3
MD5 a0cc134b806210d838d1291f3e1c2e88
BLAKE2b-256 c1407ee0b5c2898354b64966c32817f4cca335dd9b47d5754e7494a33892a2ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ec525debff111941e40d918e5ff19f466986fd0db678aa5d0b6b458cbb45772
MD5 915a20df6bbd43840df493d515bdca1a
BLAKE2b-256 ce4f43108d3fc27a142e1acf7cc1fd3087cdba7b3a51f056435db53971558997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c8c54f67b7ff2e962467b05e6ddc7b8a0e5eb0501d3fa88dfc032369b851118
MD5 f31fed9871bba801cd46aa2b39c6cd40
BLAKE2b-256 651473f65701dafe2c0b0875ceee0717d7d3dd9ed40b04d4e30ced922c3202a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 578c61982ab7bfc98daa24f8d812c1b205a16b8f4b046d5a579134037f7570d0
MD5 ae1852b6fe9838eb94fe772fdbb0e9ae
BLAKE2b-256 bf7403eda3348ad13c6bf938bbc1fd67312c539b10bb897e1017811fad0e5f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d940fe3cefd2f2d22f2e767ed7dba554bce7df309fd73f8e5f873735d1de639c
MD5 78b1c0da1eead0cee4504bb9e2bcfac6
BLAKE2b-256 f88493832000b5b17bc39a06013588f03777402dc5f8af8d466a3205e82f1178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3787963568d46f4ed430f47e2626215d0222ac86faf59446ff24a99533d27080
MD5 e3bcb5a838062d2f0d2741db1d8a9bd2
BLAKE2b-256 06aa62cba923556d9bc9599fa13afe6c73178aea9f35e95c93c918e5761ea21b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be43149551c13e67c2ffdaa3d7113a6aaf3941ad990a0cdc480fac9875bbfe47
MD5 80452443919d3c6d528446c07ef38858
BLAKE2b-256 7f51488c1ed232d090a192b4b810f66f54f720e01dbfb9d75fbdda6a8239a15f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1ca18388e6c3176aa3088ed7b9b28e1126294e40327f495c40b8d2b8fe846fe
MD5 629c79ee9308c0bf5128371b8af5dec4
BLAKE2b-256 4ad3898e4bb9cef53578b885085624ac0ab8f592ccf5cfaf67524a56b9f9421e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e457eef72fc088245e36233afc491b6849bf14854e7a9db7a87e4ac9721b14b5
MD5 1ef8b88a051be18a83592cb885d29301
BLAKE2b-256 93f78971636374ee3b3f3011d04b2d4414ba56d192fd6a4c7e2eaa3d1fe7edd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abe4077cca618d7f479a09db90ce0214d75c76cbc8eafeb59cc087ecb0d949c2
MD5 caa5fce477db1cc07ca7b091fc241fa6
BLAKE2b-256 0c44e3ddbd71468e2ed69f79642026dcc209b3bdcdd1ddd8cafa8e911ebbc543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ade02b38975ab87568afc2ed88b79c399218c081845263648742beb159e75e08
MD5 3cd2a5dd259427811ec04e5c811b16e2
BLAKE2b-256 dccfce0a6533c2cc4b850f02a209c8cefed2e969b0cb555dc17a437c69a8df72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 091d2ed76f500a935f0aa755b6dcae1c9dc4569e7b0f7eee8d202315932acbbd
MD5 fd3ac2170b016c293d818576419cb843
BLAKE2b-256 d0ba6de92a8499509b9b29f2453384e2b0b3e9e6a7853fd67f9b72cdf36fd71b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 185094cb1d6204148b75391c32d2451d0887e6e6a6acab2ccc7d109efd7c2ada
MD5 c420af73ddadb9c97ffb89a8d5428d8b
BLAKE2b-256 395b4dfcfde66988a2d999a41e5386fd9c533308ddc5bdf7c395bc71e4ffeaaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96f1d1a0f0590ff307e4a4843d0c63c59a7a3777c502981edf6a0957269a5f66
MD5 6df62339b3c5c21711d2f4aa5ecc19c3
BLAKE2b-256 f142554310ae24f497f7cee1ca4504a06210ede44fd96320c077db1e28176b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04f15dee9e8e19c0b5a96ee199574c534a29318309b03c998cc875f583b4d553
MD5 24c4009e85eabf200f25b2f73ea7ffed
BLAKE2b-256 160bbd5d3e30e5e6beab072fee8abb14e2c826c52efe0709107e6728dff8ef62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf284355c3204a6970ca02407de9ebd7d1e6626eee71a286dcc2f0fc5fbf8b24
MD5 3d425d173f9a47939b504645fd47f96f
BLAKE2b-256 33a29289888970673c7e2da4dcf8bf0567f392939379e780437be882905e0c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67b85910a962cfe4900ca7296c695e9578e2e18e071d8a196e195832f01e6c8c
MD5 810c06125502194816df8a6a368baa59
BLAKE2b-256 ff1d52cdc580f0640b69cb3fa35ff1b761296d064849ce5a0200a2e8595a912c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1baa079f7ff10a12064c7834701de877a0bf665e0c57eaafd83972008e7ec233
MD5 b6c168abd673c84153f16d8b3397e7e6
BLAKE2b-256 c60855067ba39d40e969104295e3102ca9a9b1556f9cb43bb6293caf2ed2c8ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59200f820948939e3f7157d06181562e975da1ee4ebb7598bf3f54237e2abbe9
MD5 9b11f96e4d98b84f4054dc7238e6d9c6
BLAKE2b-256 f21bca5717a700a5f9b4fdda5b1aab3fa04ebdda0e44f8d24b3ba29cba115aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e58348f0d29cc836a5cc7582bf307936a9f8738e106a34ee76dfff544fe647c
MD5 6c28422fd68976ba0112a9b843adfe66
BLAKE2b-256 b99d32444edd51929607710d8230caadb04074c9b8fdcff2b1691b880f80add9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f30b5b586b1c01b52344ed4e6b44a096fa2c0ac22f4fab14253091d64c43e71b
MD5 885437d8e3ce40292986c8937ab6e803
BLAKE2b-256 b499013d4419b2584e9415d83270b85675fceaaefb20b711e1ea182608e9d76d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 656.0 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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 da3edab4fdcc32059e0d6d1c48d1d4d5d6e85bea8922e0f3d6b7e352bb804dbd
MD5 3694cb714e6c8c4c05d99704fe57d1c0
BLAKE2b-256 35291d8726cd6c9096aa3172bedded8d3d96eedb68da48e86b09bc393d31b408

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 725.7 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 df023c352687ce1bf4e4a90459519bb7c4301d8e657bff51f323f1de2e9ad7ac
MD5 f13e9ea73d16dcbd2a07ca8b219f116b
BLAKE2b-256 73aa7afcef0898e922e46f244d486f5ff781c61e88c1cbc63d838a9cfd880d5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 646.4 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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 499a5e5a16e8b865f425e2f08e0393f2d9c92c3483b7870825d501967a94bae7
MD5 a024895515f03d280e380313385da850
BLAKE2b-256 93f971a1a1b00e423152f73a9afbaf4ba64388f7b3d4c9a406d5839184d49c57

See more details on using hashes here.

File details

Details for the file rignore-0.7.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 322c6fd48bd5eaffe59920f1e38067b88ad1240f8cbd13c09487f2043f235a1e
MD5 3fa62eca1f1882868bdaf7ccd5577bdf
BLAKE2b-256 e4285651a8878bcad49b82c91b79e8abd9186a9e4a0e87fcd278937fddf759bf

See more details on using hashes here.

File details

Details for the file rignore-0.7.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee6b3105bee69b5b0969837da282cb1a14f7f7b1dd64980007c5ec112b57e7a0
MD5 f170b10da653afdd02c213ce906c7a57
BLAKE2b-256 7f768e6cf920ecde387b41196a7743155b453316d0dd40a2ba193ffe2d73b5e8

See more details on using hashes here.

File details

Details for the file rignore-0.7.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27471f5ad3e0e600b66d91e47e935c7b53362ab09cf46cc85e48b2f18c224c7a
MD5 b2e842f1f553db58b7953169bed98acd
BLAKE2b-256 e49e363a1d29e474e5e4052d1ee741b4bfdabededc019076898a93f2907128a2

See more details on using hashes here.

File details

Details for the file rignore-0.7.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3b9d41560cec7cbe88701dbcc581f6bcae49725e870d8b10c58e6593dd20e30
MD5 f12d07c50ea1746a7c8614c773046e97
BLAKE2b-256 b0b39a680ae54f6aa073d388a960e1bffa579b2b2ebeb2d65aa60a1963930f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e4c6ba719e021a04484954a81ff0dc0e23ea04680001d713894a4c53c2310cd
MD5 d654fbcbe353ffc0a23109c53eed0ea4
BLAKE2b-256 20c74b6939061d9deb7412af09e0406b5e21c0479121ccce719a1d4985a14fd8

See more details on using hashes here.

File details

Details for the file rignore-0.7.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d8a20838d8822f9118f23275ddb766f1e997a98821efb4cf62e10ad515ca404
MD5 82b0d5afce8ad43d09f1c8818f6af9a9
BLAKE2b-256 a2b43acbb69a0e119959c39745a4452c9905095fcdaa9a28a2361bf2c5e2f025

See more details on using hashes here.

File details

Details for the file rignore-0.7.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60560e3d62b7f10b4a7f9945702d156f734975b3b76f0ee855e8742e55f8a7c8
MD5 ca079c5288e7fd7231a2ec49ef617ba1
BLAKE2b-256 39c837d284c4f18313858095505edb0088ad6b19a1c14867974281d0c5c21dda

See more details on using hashes here.

File details

Details for the file rignore-0.7.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a35ba9e5fcaf98838df2e57616fb0a881de32153689014cbf190071a3b7ba4b
MD5 464be280ffabdb37b38caf5c9a140ead
BLAKE2b-256 10f3751fa62e022f937d24cec9929c96d94d4a5fb2de1b2dd5f29571b72ccd98

See more details on using hashes here.

File details

Details for the file rignore-0.7.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a8bf29b8fa7df7cbf0554d1e759fccc6183d651013256c5d3b3f4b45ece777f
MD5 5f207d9ec3feb4efe637ceca90b49ec9
BLAKE2b-256 7a7177465c58be754e2e9889907638e656f7677d1dc807eb9c2d50022709537c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b442541f52bc2cb3649125dbc936509185e37300d0f1fb31d0eafe9282bcf4bc
MD5 9cb245407f07119f59afbbf28d79d8e0
BLAKE2b-256 cb7a700eff307bfbdb0b71726d98942099c5d7efdeefe0e141083b498dc59cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bb73a79a89c5917cf76cae2b0642d5e63edc858e1648ccc1f2b45d044b1a56b
MD5 93a32837e7c34dd5619fe910cc6c0d63
BLAKE2b-256 a9e15392f6e2ece9f6168c6eca0a105dc0e629af19ea0120ec9329d0ff8bcb82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 656.2 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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f2ed45164a13d3b00638c08e82856934339d58c964bf04d7f1315abca29802f2
MD5 c951e20edd01f9ffed805c7e2931551e
BLAKE2b-256 fe68d97f236b5c1a6f53246cb3845695080de5a6f9694af21cdfd0fd4d541e9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 726.2 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c7cd16759cdbec219429e607565a6391bf419efc0ac9c3b5425231e72f5056d2
MD5 48f04c7c005d7a05bdbfbfcaa42f32ef
BLAKE2b-256 cf72ac45f65b3e3a7113b365a128f61b10740879e1c800efcfe99429bd922f31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 646.1 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ab04042d7d7eebc115075af4d10efded78bf55a55318793ccefa7a63995fd6e4
MD5 c421e47e6a62f3f4bf39ef0ebb46cc9b
BLAKE2b-256 eae5feca1d28ddcef3e37ddbfcabeac322ce19c0ef6e105046f236bc9b2f3789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 861b35e6180cbf69ab2a8578c88738f990ef2a782f487fb079ca339b826dec4b
MD5 578440b7a080e6f48ccefc1d699b8fa4
BLAKE2b-256 62921247071d70afcb888fd2ea90d9f669250abbd05c1a9a01a17d6a63d86090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a894300367fd2af9f57bd70f0ead4aae1afa8fc49ca70a038df2622600ea1d5c
MD5 0de9bfb2a66328f398eca20ca40afbf8
BLAKE2b-256 2b5a7b809542b0c4ab3c798e88d7079a05b98d1788d30ae14e3e57e16aa6717d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c866e97295d70caf7d51479a817746a31147110609cc33a3a8ec528cfa35201
MD5 909246b98aa165369684897fec281527
BLAKE2b-256 a81c4f73adcde5e1a92cdd1a3b998b35ce123965887dd88ca85b6884bae41f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 983ce285dfad0a6ceb907a538d4ac7414322f9855517f7350153dcd78e73aec2
MD5 59892c2cfcd17ceeb3a46be2dbd874f5
BLAKE2b-256 948aeb2ce50f0c0cc82e03023638c84f939754f7ee137c2fa2fab31e2e913ae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06ef117414f7256314cd72737b6f93765a7b9e20a53c3777c5b186d9bb9ac40b
MD5 e3a52ce51f097dd821e0b43481ab1ca2
BLAKE2b-256 b9f96a906037511ae11ea257b498035ecc4bd9abdd6aa241736abc935f47c7ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90db9d78ed545ae24fa8332bbfe8594a7a58e41cc05dee3b1689243b4cc1097a
MD5 92a515ccef499959fb2f235e121ef0da
BLAKE2b-256 c1839ff1c71f8c9ceb8a36f2c7e5f0a1ff401f1e725d2a69ad384921a2563508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af9422a5b32b9f77952e395e6765743bc3a809a77b1c67e623c4392b71024a7c
MD5 5a93573633380cecd2017b38dd993d9c
BLAKE2b-256 e87320031ccfeec8f3344d1495424027daa3e2732f50d7f53aab46c4f7791c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1717f570407edd1921aaee8af5f64a636f0640360ae0605da3515062cca9612b
MD5 7a2c372b3172912c86ad50be74a29297
BLAKE2b-256 fb50a48671c3530e29e8924dbff5a0680a0614d9971c5d4a9fb39d87e0c995bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c24db93a2c4b63ecde527a9f0d30d87acb04e7b3f73bdf12ac2e190782e71724
MD5 d30ffb40d0265ff4115e450d561c0eaf
BLAKE2b-256 9510fb75486b7c800e48d027b155dc30653c21487deda7cd186f1394e9a3f905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 09d0d64f9ad015cee48e4c077cc486d1379cdc19310a6967c5648a87cea11e1e
MD5 dcd3345d03fec971ab601bb0b138dde4
BLAKE2b-256 80846c5ae4f782af1382686fd1f00aaac37663cdecea61c67cd0b18f82e8092c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00ece2c08fe3eea4f89e8d2c71d34f1bd97bb6ce7c9cd8f46272f367ba848802
MD5 2527df11057ab7b4af2a05d3a659cda4
BLAKE2b-256 7e5966dca4cbeaa80d29711f5f1c1b06575668bbce3a51aba9b8ba5a019d156e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 807520076818153f6a514a8572af54ceb0c40e5617a03f34726aed81c564940b
MD5 027bd35a06a827f55b9807cbfc8ce010
BLAKE2b-256 30c5bb7d90b0e199854d14328c4a09d8c22260f42e9d03cd981273abd2293f49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 656.3 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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3a4a7b305ae41eae7587515362cf31de52efc2438f83fe3a058ee06579d45ca9
MD5 599a381938d262ecdf2abe7082e05f3b
BLAKE2b-256 e024e0c870777ea15ff38725e94644daca8065d781a92895c4f8af4563ca5b88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 726.1 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b644dec382205a90c0fa5783fa4234c795d64e57d50215b4710019bc7d6d25fc
MD5 b02695844049d78145db6b3aecf7befd
BLAKE2b-256 245e01a3333d982493466e138fb9ce14054ce95f1b97d49f5c1088cfee9077db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 646.2 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bb6d2c7a391835014a21f168949a12b9846c6b7a1a6f906dc623b81f44a21bfe
MD5 a7d70f7f7b2ef3774907b981854ca4ea
BLAKE2b-256 b6d5e9be26d350905b1afa14df4995d604099f4aebc461341bd283b6b4b878f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d1b6e0b6c95acddf177b1ffa42911d0824d129c05a5e4b1ad35329d1b7f9d44
MD5 f43bde263a44cbcbf8643643430fe1c3
BLAKE2b-256 a97b134e6b14da99b6d31f73b9c008c63b9bf3c20e11d428c2dced62bcd76535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35cc6328fc11ab07a547ea0369e2b7b9a8c6107fa5045b001ae53d89019ebe3d
MD5 4613f953cd1dec901efe62fab913b8a5
BLAKE2b-256 f64b4921402a9d63dcf2e5c38dfff4b2e5457fd4573c9745a6ed57f532c69880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 889a1b3f3b68b02cc5ab9011acdce0c8fe563191d480082642de28b5aab244c7
MD5 26e295f81017835e7551ef05f8fca43a
BLAKE2b-256 f4b93351760d1a9917511fee6ebf6d52e9df4ad9375131a1df99c48ff6557e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba8b10d93b6a5fda6a38a4e6aa5e7edf7e2590d16fc0d43f46194d2c5f256d97
MD5 132c05098b2c00916a870a0696a5c106
BLAKE2b-256 c5c341286edc4404b3697fccbb469a1f95cbbf32008f68925f2a2426788a1db3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 393e010bfc73493085256dc1d302d4b7fb7960a1d6656dd8abe7e9b032a0f1ec
MD5 d93a8f0f4a82dcfd9adad8b98767d6e5
BLAKE2b-256 2247167283253f37fed11f2d423df7d8fb682b74e9e0a05cdbfc0d0b3d5e0fec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6afbfe5feeb2e0fb7b0dd2adb4a730ad5df03c19a9233137fac135142dcb8cdb
MD5 1c60ec54e28222676ee1d537f917da87
BLAKE2b-256 3f8991c8d6a3768d37c216314d2af6f7819cde45a25055b13cd74a8b818e679a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9987f4a0f7ee38334e3c32abdb36356fb4ec68996e24c27da34e19d44a30b65d
MD5 f30bde4a80be88f3e23d8648574fe77d
BLAKE2b-256 e53627c33dbf797eb1854e10cd9516474441e00e6afc7bdec9b5be58b52150f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 259719bdc32f606de93ac3b8207e1fbeb4cfc75de69cb8b7fc21db59cac809b0
MD5 4563f62b48c505dfef52d31f62db98bd
BLAKE2b-256 7c84b8ee2e4c9ef609277485c9c40bc03848fd90c6a79f560bf73e2d77610aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15efdba35bd450bec8cca4d07dc4b8bcf7b2c3dcd42d2262c6aba74e83d79e0c
MD5 74fe985e682bcb2a7b3c6d43fcd41d9c
BLAKE2b-256 056f5593461a5b62bdb3911041386b48dd4f6022e71a5986a9e25897eb3141ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 19221b3b814e35462eadb8952a6ee7c5ff6dc3d8731341f45ee4fd5711c4407d
MD5 aa6523fdcb2f9e50e9536d4b761fe18e
BLAKE2b-256 9d8926329282a7487db0e83ac5011ad1cf49bd00b0da8c22606c158a88b6c376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9dc4dc79607f920502eed4cf4aa7b47db23575c02107f769c279362168fadd1
MD5 dc8514ffbe1bdaab8777378802c555ce
BLAKE2b-256 da3fcabfbdf014a01d8e52db270de954ab53a997d76bdf7d279d7ce885b8d5a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa56df10b9dbbf77af7e6f7a3453002bc5dbc63ab6d9e0312f9d5729dc76cb09
MD5 1041e1488295600705536b0f36881673
BLAKE2b-256 9c0f2920bb68fe5553ccd1049ec20440ccfc30031730f9b4fc8833037eafd1cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 657.6 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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 89704f0ed344fbb81e822f459cf84fa8eea737460fcc542cfbd7d803a705f3a5
MD5 48b5f5198517cd2ce1bb7f6048906cab
BLAKE2b-256 46d057e457c7c5336092a331d40f12a18c41a5973963078284dcf47220b9325d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 727.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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 434c887d1c932d9ccdd7d3aa4e4db6700413f3c349241955d3571bc3ca1a87ec
MD5 fd8a96e487c4ac82a84c5461742b5d0d
BLAKE2b-256 8d8f0b694ac057fcf5f89618e471d7effebfd3ae8d782704e6b697015baa3316

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 646.1 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 781ef8c0bcf88e2db057bd4af444aa876f682fb0826495049a29934dfd31c412
MD5 0ce2ec74f82a528dd2864a1a0ba5eb3f
BLAKE2b-256 cc884b7a83b73171a423b0eb62eb76d13ff291eb19c375261cde93598d932b59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cf6a05a32151b3cae7d704320ce3082fa0688f7e7adfe146f332e230059beab
MD5 28a9a910d63573f9ff5af1a496e488d1
BLAKE2b-256 ecddbdb1e243484ea9488188cd32be30f572933f38d67bd61743d1d11af9e19c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 220dcd25a43abdbfc54dc44c37be2e2f128c3799a7cf21654dae6f40edcf888d
MD5 19be442d147f101fcb1e2e8f84a90dc2
BLAKE2b-256 02c5f3caebd4fcc276aa5a1edbcd66a0e57586bde048ee214afad6a8af4ebd44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c6771830a5960eb225eee5d83f540c10ff24405e9bd1985cc018199b70f2b96
MD5 9c298a8c46fcf3e02773374524ce7aa2
BLAKE2b-256 8cc62d62287785bd16a35eee2462c67ffce3f7b7e3ea8bd14e991c850d7ac341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b56407f181c937888616e28bbbb0d5cb6637811eeaaf64907467df881944e8a
MD5 3b69ba692c8bfde2e38776b8f4812185
BLAKE2b-256 17c3aa0dbdc1f2c6284fa47075459baa214fe734671bdf5f7133bec4a397064c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5552ea081350d59f262e178cf57932afcbe8755b2589b1c9390aeaf5b56d3d9e
MD5 06b556124613f514961920f4adc522bb
BLAKE2b-256 a72050768ecb4d60a0f24f1cf4c8fcc2efeb4dfac2b4d64d2633f495b24a069d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8fc7791b0b3069a9fdef0a2c753d66d9d392a010945d47d3531c5795b7ee718
MD5 c45cfaa1098353ab060f16a0264e708f
BLAKE2b-256 d25a4bb9cc2a651e9134f7c9e2ad59a55d01454c548095410a6eeeea069b74d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 674d808829ed367580f73ef206d2074856baf02312e1ebf5c97a78d1bb7f2584
MD5 1423d44c80fc69e0a29563ffada215c2
BLAKE2b-256 296ef98c7396c648bc9b43b94817f2a2a7bb8e1707d16815dd4f9b6c3ad41f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 abde4dfbc7eb917538be61bfd83f88a9597ac6f4f68c3f829d0e7883557736b4
MD5 59d8f54bc6c1f82581d64e6ed7a532bd
BLAKE2b-256 4f4216bcd602829b82f12784147156062644a919ecbaa92e533aa5e48fc9e4f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b40aefac055888bfd5c38ad0643e9e5d73a61e5805bb0ec0d20479d391bca00
MD5 946a50c9290cad459bd65d44c4990fda
BLAKE2b-256 535450a8273979ba042045b4afc28df0b14c00eb06d52e35f17220fb451621db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6898db67347249627e26762689995631376c08816945cfaf99a3ee8b290656fd
MD5 e540c2970fc5b5afc5ee0074f1d9deff
BLAKE2b-256 45b5443b37de1c1a5d2a565544acbcb8999c7aa90e421ed9a719a9f9e60d3d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4db43cc9839840f8890950a8c90130e36252fc56a8107d7ccf980b3c16f62a6
MD5 aaade3430fcb7fc783a3c6f939c16c62
BLAKE2b-256 1c7c2689a6df7744f4b4695287f6fcff71ed53871ef4a21a9d00d91d44c188a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 337b081c34c6a38917cda14a2846008c7f19813c90693a5fec144447577f9039
MD5 9a22c6e8f38bc17f1db59f3dfadbdf65
BLAKE2b-256 a1b16b7c0307b4cc1ce56ca551f3aa9f83eb229573c36b416cc3623b32cfaf9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 727.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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d49bd0a9011b92c392f27ab302fcc63cae699739f9331ebb5dabe70f2dc18a13
MD5 e50d0042e4640e8bf641cb54be50099b
BLAKE2b-256 69a3b9fa749b7586c8d79b1968ebb10d01bb172551238fb5f07f6f79c41e27b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 646.3 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 991ed9114a065a3e5c12d344a72aa7fa56c6a74afb4a48bdc7c00bba684d5019
MD5 c7e175f74aa8f320fc5b76c97edc05d5
BLAKE2b-256 724011ef0d9d40b0c628b37e55fc04845010c67be61606f9db7aaca889c735e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49b5bef79207e5b013460960a6bd3d8cddda316c9682a5460b84fe63c4ec333a
MD5 13c72c2fe86adf589750d3c451b5a1f3
BLAKE2b-256 ab70bec926aa64e6fc69b493ca334ebc116aa9500b3aed43ef1a26aca348f757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f5ff4ac2556a2ddd91392b9ec5d1ddfccdb9ea46d426ca6ef6bfd6764eacfc8
MD5 32673c62a284dbd6caab38c9c618347c
BLAKE2b-256 d52d47d07fd7bea2b1c4f44083c4a198d85d771e1de2119da790d6145309539d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 53e79474480eda21e1d1b4dd89cf9c2020758851b46a4ee41d3d97f9aba516ca
MD5 8a785d17c6fe04271e2ddea7ee419fd2
BLAKE2b-256 184f2323f7870f2a90f4d2e35c9480690500e00939616948b21beaff118713ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f251910def949e8afd7be4b60b3b15795c9961bf7f0df0508d56c38ca92d6fb9
MD5 629a4ecad8491d6b8e56cc900dc1e966
BLAKE2b-256 a98b36f509baf98fd1d2cef55f0cf58a1948a0fa1dd816401f7fc39f48a76226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f20fa7f8bfc7d1c3f8d97b4ae363b2b1403c6aba8768e99db2d55b37264f9509
MD5 8b310b443f494daec28b9b77ae772cc5
BLAKE2b-256 802ff30984e99bc5d7473574ddba1219cb449dcf7cab420a976ee8036218a7f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c11e7f0dc8d0e4d5da1674525b3e34f7087107c0f68d50e467f4845ec101ffe0
MD5 525dbc7cd95d454f59f8fee16c49b318
BLAKE2b-256 20cff591b64cd5ce55cd85b29bb1abfa4a760487c028f83614676a8a31ac0d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1e6bd83943fccb0f0d05cb9e261b58e0b5bc45aa82ec1c9717287d6059f9551
MD5 7e31eebcf64fa101a92c304de8920615
BLAKE2b-256 cb9d289a931490e650589be811471592dfb3756454106df195400914ae2acc79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0318478b58cd6c6858403912a6ef980401e12334ad5b135f293b1bf371bcc888
MD5 9d71f5911e58ba1e8cfaea919c725c31
BLAKE2b-256 4f21f753506617adf67eacdc0e4a1bb71da9da576b563a2f55569734c79e35a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 069e81e07156483b7d96f91c5798f87ab526b40e9cda62c598dbf98284364b37
MD5 12cab5624efbbbc1954b9e20cb8741b0
BLAKE2b-256 9739d08b140777fa0eab393c24885f56d315ee6f92001a90c42b7f77656c8033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a34b77f0306541bf73bc069235fb76ffa61e630431735ff803d0e77d37c1790
MD5 e6fa5c1c8c28cb3e183d528e8b1f00f1
BLAKE2b-256 213e983227bf56c3e7546ea68e27a4f7c170b60fe9bb906eb1c3a1213b2c1a87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 728.7 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b060eb99cff45b3699f9517791148bb709b692d16352f387d4487b38190486bc
MD5 3e0d8ca7530c72f4bda2e7f7a9df5981
BLAKE2b-256 4e0830b7f6d3f92e9060495903ab5f1adc12c5753524ff0faf31de6b530ff8f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 648.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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 03b54ca1b7c12f9fb90095beb36ac2a7cfd20d9e3ae283c9f3034c282f54c969
MD5 e71725b7a53477553500468fc5453ca3
BLAKE2b-256 064a3fd4e5d6202fa1e4339d668530e9e8b8be35e26815768846894e810ef7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d034c1d51a78e15881b177d29fdc63df6719224946c99e90ef33f30ec22161e6
MD5 c4ff69e7e1adf2e2d70b9912115f3dca
BLAKE2b-256 74f3c6bf8d71ab2a2173334cec2645f2c59029489313bf1b662f5676da842835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f1960e7373fd8bcf7f543e6de8769e93b5b19609c5960a6be7a9cbe4cfafe15
MD5 0994352104a5102976c4b8fcf8879c97
BLAKE2b-256 082f0ae2849d6cad74eca0ca7d38737c20449e4c23f91a70f872b7b398352b28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f70241a317b01a7fdebf366e160823ddc6c0d4facfe21d5293ba12947d89d755
MD5 f575ccedd6b6e8d43d87de771ad196c5
BLAKE2b-256 b1c36fcf7ce095bf9abb67c43fd421ce67fb3de56e5c2de29b868e87116bea2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 559386f74c4dc09610e150f1cec763e8bc6fed669f32637ef7e86aa82a6517da
MD5 274f9df330e5a7d040f3cace7245f190
BLAKE2b-256 56c935c62ee5fbd0365551ecad9b022276912cc1c930fd23638760685f5d5b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc339a3ac62b562959efd73a16fd7a2dee60e7421fe536bfd74077bc75973d68
MD5 28e492efed41b243a8388eca2ae24036
BLAKE2b-256 60fa7151789669633e91deab60b287a8ac132b47deebba96d4b6febc53b21ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b252334d80c54f1c26a86a06b08dbaf04b8c189247e55c0879b6063eb7d8390
MD5 d5dc7f1c45abe86c8f11821a68d1221f
BLAKE2b-256 b46fca2f937d74ed3f6cc8e3e53c4126445d17de1bebd679482a66218a29c469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8ce271b3eabd4cc700e8db18c4e04d91bef8f5f6f9a8ab797b76d8e430216cb
MD5 d112b438119a0cc44af7efcc8acd3fce
BLAKE2b-256 67f43e9d66fa1731bc484b1e6c0b9dfc72cceac52d52597acb54dd7476490d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5dd5f8465783c6db72601f68c15698111c031234dd2f0f6f7c64105ed6424a4
MD5 13476538b3de6e5b73999de0161c5999
BLAKE2b-256 9965cf34592be59ccf8f24cb46f2e9281cb541b59030b2a498a4ffeda60bbba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3bf86ce545d441c7f699e73087fe0f3a804aac3b905baac156106581557c9be
MD5 e64aba5ed69c53db9beda630aab8ac02
BLAKE2b-256 1fa9cda4bfaa59b2c5400eea7a4b5a684d2e2c67c51ad04e2539fbbc91da0926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 200ffc1ea93ff74f062ab5604bc3603a2707cb12d5aa1a521321e5f9d48753b1
MD5 00f1c0da6dffe24144a1810e63eec433
BLAKE2b-256 7058ddeca4af7e9634b8cae680718164c04b443eb8b82ec2a5b42b208d968b0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 727.7 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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 01ab3ab7707eb997521ef324a6c698cabfa59fb3aed0ce7c85c4fd75920de73f
MD5 43d0dead092ce2e88838568767fa776c
BLAKE2b-256 4cba17cafa81e42ed1915a47cde266f4befd5f85cc5b22448f59ffd9921f513f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 648.7 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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 64c2fd1325b8175298c51ad2b581af56873049b26d40db8f8f0dc34342e9d3c8
MD5 db5c0d53eea9da9f7f8ced225a2d55de
BLAKE2b-256 45f82954920f2f11e9adf4dd1f0ee0470a522c3ee988d6e1fcc28110899c17fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1191b8f0617248fb985bc981e029d7b98423f7dd44925bf3bbd61175f207082c
MD5 63366972250dc8c48df0de74bef80712
BLAKE2b-256 3fe926174ebaa47f77a8f4ea1ff6b48f717214597f3e4e776f0d4aea5f51b35c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e8386cfe684b06a7083b3a8fb8057e974beea88f98421ca9115ed62cfd9caecd
MD5 a2d30aff33f81bcb525d2d81adc6ddf1
BLAKE2b-256 5a9ccfb02841f12e92199711f9c1923604c135b065c8383d111e99d4fd44a421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f64ee9bc2285cc7f59bce4e8f18ce6152795811bfba69873c2e5af50332f4424
MD5 877e24f8747954b0289a700e37069b54
BLAKE2b-256 50172502d259df674e3641ffa3cb5d71a947584d7ccdf4a21e9dcfdce58b726e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96c14abd8da99ecce6ab299dac5079f157b8be7e4bdf3e50f58b8edee1cfe25c
MD5 bacfba6fe4a8c9d9c70dad23a78cd0f1
BLAKE2b-256 52f05bbb2f7fa7912153b41697b7f8311f75d3087801e689d00bb900cff4663c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7951879a195b1cb3d711eb8292ae4176a407b290ed0a2d87983d5b47f8b5fbde
MD5 cfa67753076dea54f12b35fb77a13624
BLAKE2b-256 75699b2b81b4efe4c6397339ef6e953e9673517de7d359edd89bed46989d400c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f55bc6f8a8182e8a3eecd3b829a9001c2ba67ef15d94742fa3032aef200eae79
MD5 ca4f2b5e428c48cfe759133309bde383
BLAKE2b-256 b61680d1c9a8b86c4542437c8431e2c010671dfb55eeed3fd6834c8ac81b1daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67924971b1b081e88f8192bc0cda284cb4c39ef809683d0a7053bb8e4741187e
MD5 7acb73c4460f0dfdfe12a4d84477841a
BLAKE2b-256 00c96c527782a1693d4595056bb956d28dde13a2f681a60bb5b15a5e32a6e4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbb60ed1dae7ec73404916c416cf8a3d9e93a0543cba6273fcec7bd1fa0e8004
MD5 259dac9547d34995042b54db14e37ef6
BLAKE2b-256 82a9926a6661f1b6cb198cf054feb41d6cd2edb308c3dde95aed5b459bd62364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6becc291aa9a7a6b2c9661e7e261cfeb12d63b381cccc04e515e2077cb6cdcae
MD5 1e3a54dacefe9045d8771aaeef159db6
BLAKE2b-256 c554a01d17e2b6c9e8eed9cb8a7fc4bbd00f616891a667437951b87194dba96c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3aad65c7bba0d189473e55f819bb27a6c015198b2b91b910694c73cb8b69ec44
MD5 ed04fae2056c9a2c759438d9dcfb0bc8
BLAKE2b-256 f6bb4868541cdc54b9716e0b53168fcc8641dcd2386b861ef1a9d784395b9b24

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