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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.6-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.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

rignore-0.7.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl (826.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rignore-0.7.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (886.5 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (943.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (987.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rignore-0.7.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (826.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rignore-0.7.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (887.5 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.6-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.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rignore-0.7.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (901.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rignore-0.7.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (987.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rignore-0.7.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl (827.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rignore-0.7.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (887.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

rignore-0.7.6-cp314-cp314t-win_amd64.whl (725.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

rignore-0.7.6-cp314-cp314t-win32.whl (647.0 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rignore-0.7.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (958.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rignore-0.7.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (941.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rignore-0.7.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rignore-0.7.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (897.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rignore-0.7.6-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (984.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rignore-0.7.6-cp314-cp314t-macosx_11_0_arm64.whl (820.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rignore-0.7.6-cp314-cp314t-macosx_10_12_x86_64.whl (882.8 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

rignore-0.7.6-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.6-cp314-cp314-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rignore-0.7.6-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.6-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.6-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.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rignore-0.7.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rignore-0.7.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (820.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rignore-0.7.6-cp314-cp314-macosx_10_12_x86_64.whl (882.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rignore-0.7.6-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.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (941.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rignore-0.7.6-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.6-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.6-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.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (984.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rignore-0.7.6-cp313-cp313-macosx_11_0_arm64.whl (820.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rignore-0.7.6-cp313-cp313-macosx_10_12_x86_64.whl (883.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

rignore-0.7.6-cp312-cp312-win32.whl (646.1 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rignore-0.7.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (897.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rignore-0.7.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (984.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rignore-0.7.6-cp312-cp312-macosx_11_0_arm64.whl (820.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rignore-0.7.6-cp312-cp312-macosx_10_12_x86_64.whl (883.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

rignore-0.7.6-cp311-cp311-win32.whl (646.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rignore-0.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (959.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rignore-0.7.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (941.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rignore-0.7.6-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.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rignore-0.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rignore-0.7.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (823.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rignore-0.7.6-cp311-cp311-macosx_10_12_x86_64.whl (885.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

rignore-0.7.6-cp310-cp310-win32.whl (646.8 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rignore-0.7.6-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.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rignore-0.7.6-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.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rignore-0.7.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (824.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rignore-0.7.6-cp310-cp310-macosx_10_12_x86_64.whl (885.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rignore-0.7.6-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.6-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.6-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.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rignore-0.7.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (900.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rignore-0.7.6-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.6-cp39-cp39-macosx_11_0_arm64.whl (826.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rignore-0.7.6-cp39-cp39-macosx_10_12_x86_64.whl (886.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rignore-0.7.6-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.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

rignore-0.7.6-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.6-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.6-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.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (986.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

rignore-0.7.6-cp38-cp38-macosx_11_0_arm64.whl (825.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rignore-0.7.6-cp38-cp38-macosx_10_12_x86_64.whl (887.0 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rignore-0.7.6.tar.gz
Algorithm Hash digest
SHA256 00d3546cd793c30cb17921ce674d2c8f3a4b00501cb0e3dd0e82217dbeba2671
MD5 ba79650c15047cc8c1947a2be3f0408c
BLAKE2b-256 e5f58bed2310abe4ae04b67a38374a4d311dd85220f5d8da56f47ae9361be0b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8955b57e42f2a5434670d5aa7b75eaf6e74602ccd8955dddf7045379cd762fb
MD5 139f538a8b152eaf09e854b16e3ce907
BLAKE2b-256 ce8ba1299085b28a2f6135e30370b126e3c5055b61908622f2488ade67641479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57e8327aacc27f921968cb2a174f9e47b084ce9a7dd0122c8132d22358f6bd79
MD5 ce57f1906cfee3972f1eef386ad1b055
BLAKE2b-256 6b5bbb4f9420802bf73678033a4a55ab1bede36ce2e9b41fec5f966d83d932b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c081f17290d8a2b96052b79207622aa635686ea39d502b976836384ede3d303c
MD5 3788ad9ff495aef5f52b373a7c9e203d
BLAKE2b-256 675636d5d34210e5e7dfcd134eed8335b19e80ae940ee758f493e4f2b344dd70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2673225dcec7f90497e79438c35e34638d0d0391ccea3cbb79bfb9adc0dc5bd7
MD5 8570220e837d5bc57c52497025e96b62
BLAKE2b-256 33b8133aa4002cee0ebbb39362f94e4898eec7fbd09cec9fcbce1cd65b355b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77356ebb01ba13f8a425c3d30fcad40e57719c0e37670d022d560884a30e4767
MD5 23c01a06eb9b34778f62f19fa2f0894f
BLAKE2b-256 de00ab5c0f872acb60d534e687e629c17e0896c62da9b389c66d3aa16b817aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 684014e42e4341ab3ea23a203551857fcc03a7f8ae96ca3aefb824663f55db32
MD5 6e429803a7646582211d4b7971ff23ba
BLAKE2b-256 6e10ad98ca05c9771c15af734cee18114a3c280914b6e34fde9ffea2e61e88aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87409f7eeb1103d6b77f3472a3a0d9a5953e3ae804a55080bdcb0120ee43995b
MD5 2965a6c94c28f3a6a4677a25ef8fdade
BLAKE2b-256 cc10d6f3750233881a2a154cefc9a6a0a9b19da526b19f7f08221b552c6f827d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53fb28882d2538cb2d231972146c4927a9d9455e62b209f85d634408c4103538
MD5 45162a76d23b1ebb036ab1474846a56b
BLAKE2b-256 55e4b3c5dfdd8d8a10741dfe7199ef45d19a0e42d0c13aa377c83bd6caf65d90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22baa462abdc36fdd5a5e2dae423107723351b85ff093762f9261148b9d0a04a
MD5 cb19d0e67609c3cada1117c87a044b89
BLAKE2b-256 f1d21b264f56132264ea609d3213ab603d6a27016b19559a1a1ede1a66a03dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6cbd8a48abbd3747a6c830393cd578782fab5d43f4deea48c5f5e344b8fed2b0
MD5 9850d3d2e2aa1938c1794a403a0e2fa0
BLAKE2b-256 b8863030fdc363a8f0d1cd155b4c453d6db9bab47a24fcc64d03f61d9d78fe6a

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 392dcabfecbe176c9ebbcb40d85a5e86a5989559c4f988c2741da7daf1b5be25
MD5 fba72630af211a786555fa8a8ca02749
BLAKE2b-256 35afc69c0c51b8f9f7914d95c4ea91c29a2ac067572048cae95dd6d2efdbe05d

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a20b6fb61bcced9a83dfcca6599ad45182b06ba720cff7c8d891e5b78db5b65f
MD5 656a5633385f9cf0de7e168f9c1a3604
BLAKE2b-256 8278a6250ff0c49a3cdb943910ada4116e708118e9b901c878cfae616c80a904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a0c6792406ae36f4e7664dc772da909451d46432ff8485774526232d4885063
MD5 5f624bcf9177609071bce38fd0c3f9ad
BLAKE2b-256 97f4aeb548374129dce3dc191a4bb598c944d9ed663f467b9af830315d86059c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe6c41175c36554a4ef0994cd1b4dbd6d73156fca779066456b781707402048e
MD5 9ebf8f6db4c03a2af9bb87fafa04b30a
BLAKE2b-256 f5d6bb42fd2a8bba6aea327962656e20621fd495523259db40cfb4c5f760f05c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b63a3dd76225ea35b01dd6596aa90b275b5d0f71d6dc28fce6dd295d98614aa
MD5 25bfa4e27c30b32f860babc31b85771d
BLAKE2b-256 43f0250b785c2e473b1ab763eaf2be820934c2a5409a722e94b279dddac21c7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f32478f05540513c11923e8838afab9efef0131d66dca7f67f0e1bbd118af6a
MD5 77d2caebac96388dcc137bc6457ff135
BLAKE2b-256 8c25d802d1d369502a7ddb8816059e7c79d2d913e17df975b863418e0aca4d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4565407f4a77f72cf9d91469e75d15d375f755f0a01236bb8aaa176278cc7085
MD5 4f529c1b48a50779581b501db0217451
BLAKE2b-256 34283b3c51328f505cfaf7e53f408f78a1e955d561135d02f9cb0341ea99f69a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 775710777fd71e5fdf54df69cdc249996a1d6f447a2b5bfb86dbf033fddd9cf9
MD5 2811ff97a1aa1d87df6204cbfeaf51c5
BLAKE2b-256 9e4608436312ff96ffa29cfa4e1a987efc37e094531db46ba5e9fda9bb792afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2468729b4c5295c199d084ab88a40afcb7c8b974276805105239c07855bbacee
MD5 a5c4423e0439d5e2f28c086a75313a46
BLAKE2b-256 d0fb93d14193f0ec0c3d35b763f0a000e9780f63b2031f3d3756442c2152622d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1a6671b2082c13bfd9a5cf4ce64670f832a6d41470556112c4ab0b6519b2fc4
MD5 b11c75b22833bc0dbdb8796200caf5e3
BLAKE2b-256 09bae5ea89fbde8e37a90ce456e31c5e9d85512cef5ae38e0f4d2426eb776a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cab9ff2e436ce7240d7ee301c8ef806ed77c1fd6b8a8239ff65f9bbbcb5b8a3
MD5 831290fc7d17ba485ea77cc6bb4f11ee
BLAKE2b-256 3e2c7d7bad116e09a04e9e1688c6f891fa2d4fd33f11b69ac0bd92419ddebeae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc44c33f8fb2d5c9da748de7a6e6653a78aa740655e7409895e94a247ffa97c8
MD5 25ca9e711537abc5f969d15aeb183da2
BLAKE2b-256 5c9ecbff75c8676d4f4a90bd58a1581249d255c7305141b0868f0abc0324836b

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 990853566e65184a506e1e2af2d15045afad3ebaebb8859cb85b882081915110
MD5 2d08faf183e93965e8fdd84c52dae851
BLAKE2b-256 05bc6528a0e97ed2bd7a7c329183367d1ffbc5b9762ae8348d88dae72cc9d1f5

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c3d3a523af1cd4ed2c0cba8d277a32d329b0c96ef9901fb7ca45c8cfaccf31a5
MD5 e935bd37238ed2c0cd6b747f258bd657
BLAKE2b-256 851262d690b4644c330d7ac0f739b7f078190ab4308faa909a60842d0e4af5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 750a83a254b020e1193bfa7219dc7edca26bd8888a94cdc59720cbe386ab0c72
MD5 8f3f58848291070cbce2c9c50ba73278
BLAKE2b-256 7c9de69ad5cf03211a1076f9fe04ca2698c9cb8208b63419c928c26646bdf1d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c6795e3694d750ae5ef172eab7d68a52aefbd9168d2e06647df691db2b03a50
MD5 12a43528668e7719dd6f9a33b23e2397
BLAKE2b-256 c42b76ec843cc392fcb4e37d6a8340e823a0bf644872e191d2f5652a4c2c18ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9f3b420f54199a2b2b3b532d8c7e0860be3fa51f67501113cca6c7bfc392840
MD5 2cfbfb731e4c17db8d2331485df13173
BLAKE2b-256 8e517eea5d949212709740ad07e01c524336e44608ef0614a2a1cb31c9a0ea30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 101d3143619898db1e7bede2e3e647daf19bb867c4fb25978016d67978d14868
MD5 c4557e750d9a90ebbab0fa3b700ce1e9
BLAKE2b-256 6db8d12dc548da8fdb63292a38727b035153495220cd93730019ee8ed3bdcffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f00c519861926dc703ecbb7bbeb884be67099f96f98b175671fa0a54718f55d1
MD5 3eeddadcc516879ba44b43e91c5087d2
BLAKE2b-256 0fb93d3ef7773da85e002fab53b1fdd9e9bb111cc86792b761cb38bd00c1532e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1016f430fb56f7e400838bbc56fdf43adddb6fcb7bf2a14731dfd725c2fae6c
MD5 5908082173b46e015714b4b7423f98b8
BLAKE2b-256 bf1e4130fb622c2081c5322caf7a8888d1d265b99cd5d62cb714b512b8911233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91b95faa532efba888b196331e9af69e693635d469185ac52c796e435e2484e5
MD5 f091013895aed29575d93e9d88243487
BLAKE2b-256 556342dd625bf96989be4a928b5444ddec9101ee63a98a15646e611b3ce58b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d9d6dd947556ddebfd62753005104986ee14a4e0663818aed19cdf2c33a6b5d5
MD5 4e50dfc35cd192edc78cc0c3cfc56c8c
BLAKE2b-256 90ccd8c2c9770f5f61b28999c582804f282f2227c155ba13dfb0e9ea03daeaaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b129873dd0ade248e67f25a09b5b72288cbef76ba1a9aae6bac193ee1d8be72
MD5 09e55181139a5426ecdf4378f11adb24
BLAKE2b-256 01aa3aba657d17b1737f4180b143866fedd269de15f361a8cb26ba363c0c3c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e34d172bf50e881b7c02e530ae8b1ea96093f0b16634c344f637227b39707b41
MD5 6d07d2918c27e9fe25e4f7965046a027
BLAKE2b-256 1fbc346c874a31a721064935c60666a19016b6b01cd716cf73d52dc64e467b30

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50586d90be15f9aa8a2e2ee5a042ee6c51e28848812a35f0c95d4bfc0533d469
MD5 f130a5e49543c6a98d88a135020e2671
BLAKE2b-256 21d78666e7081f8476b003d8d2c8f39ecc17c93b7efd261740d15b6830acde82

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6ba1511c0ab8cd1ed8d6055bb0a6e629f48bfe04854293e0cd2dd88bd7153f8
MD5 7f197f8075902810a6618ad05e0541f3
BLAKE2b-256 479880ef6fda78161e88ef9336fcbe851afccf78c48e69e8266a23fb7922b5aa

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b83adabeb3e8cf662cabe1931b83e165b88c526fa6af6b3aa90429686e474896
MD5 bd1dbce7a8ab321f10f14c1df6ed6040
BLAKE2b-256 7962b88e5879512c55b8ee979c666ee6902adc4ed05007226de266410ae27965

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ca36e59408bec81de75d307c568c2d0d410fb880b1769be43611472c61e85c96
MD5 31285c35ee12e5430796ccbb1838e8bf
BLAKE2b-256 3e87033eebfbee3ec7d92b3bb1717d8f68c88e6fc7de54537040f3b3a405726f

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c1d8f117f7da0a4a96a8daef3da75bc090e3792d30b8b12cfadc240c631353f9
MD5 7b4d38797d365698c71a1908d2cffd83
BLAKE2b-256 fcd318210222b37e87e36357f7b300b7d98c6dd62b133771e71ae27acba83a4f

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 602ef33f3e1b04c1e9a10a3c03f8bc3cef2d2383dcc250d309be42b49923cabc
MD5 13faa34223cacc9767766ee38f33f0df
BLAKE2b-256 e9ae1b199a2302c19c658cf74e5ee1427605234e8c91787cfba0015f2ace145b

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8703998902771e96e49968105207719f22926e4431b108450f3f430b4e268b7c
MD5 5aa0d425465c850cffb8f87934786687
BLAKE2b-256 084431b31a49b3233c6842acc1c0731aa1e7fb322a7170612acf30327f700b44

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 875a617e57b53b4acbc5a91de418233849711c02e29cc1f4f9febb2f928af013
MD5 1c28ad2011afa567fe386d6d3556eb9d
BLAKE2b-256 ac65aa76dbcdabf3787a6f0fd61b5cc8ed1e88580590556d6c0207960d2384bb

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42de84b0289d478d30ceb7ae59023f7b0527786a9a5b490830e080f0e4ea5aeb
MD5 89c088beab1fb846e82fe1d6b1f528bd
BLAKE2b-256 24a452a697158e9920705bdbd0748d59fa63e0f3233fb92e9df9a71afbead6ca

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dcae43eb44b7f2457fef7cc87f103f9a0013017a6f4e62182c565e924948f21
MD5 e0a093cc905590dbe775f36a6481ff40
BLAKE2b-256 ecbe3f344c6218d779395e785091d05396dfd8b625f6aafbe502746fcd880af2

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48efe2ed95aa8104145004afb15cdfa02bea5cdde8b0344afeb0434f0d989aa2
MD5 ded99a3ab1417314077b63c23bfa9efe
BLAKE2b-256 a552cf3dce392ba2af806cba265aad6bcd9c48bb2a6cb5eee448d3319f6e505b

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ffa86694fec604c613696cb91e43892aa22e1fec5f9870e48f111c603e5ec4e9
MD5 72fdd642e2838070767f9295f828bed0
BLAKE2b-256 5559ca5ae93d83a1a60e44b21d87deb48b177a8db1b85e82fc8a9abb24a8986d

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26cba2edfe3cff1dfa72bddf65d316ddebf182f011f2f61538705d6dbaf54986
MD5 306054b5dfe1f107edf1d438252fc725
BLAKE2b-256 1e40b2d1c169f833d69931bf232600eaa3c7998ba4f9a402e43a822dad2ea9f2

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bec3994665a44454df86deb762061e05cd4b61e3772f5b07d1882a8a0d2748d5
MD5 f558b2b74b0883c78374abac3c98543e
BLAKE2b-256 7130054880b09c0b1b61d17eeb15279d8bf729c0ba52b36c3ada52fb827cbb3c

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2cd649a7091c0dad2f11ef65630d30c698d505cbe8660dd395268e7c099cc99f
MD5 d5b958d23646b040b0a5c4ce2ce630d1
BLAKE2b-256 c934d3fa71938aed7d00dcad87f0f9bcb02ad66c85d6ffc83ba31078ce53646a

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b1e33c9501cefe24b70a1eafd9821acfd0ebf0b35c3a379430a14df089993e3
MD5 3beefcec9f9375bc9c96ba5882ba9256
BLAKE2b-256 7761a772a34b6b63154877433ac2d048364815b24c2dd308f76b212c408101a2

See more details on using hashes here.

File details

Details for the file rignore-0.7.6-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb24a5b947656dd94cb9e41c4bc8b23cec0c435b58be0d74a874f63c259549e8
MD5 c1fb725e2062c0c3acb3e3de9be3381f
BLAKE2b-256 cad23c74e3cd81fe8ea08a8dcd2d755c09ac2e8ad8fe409508904557b58383d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 104f215b60b3c984c386c3e747d6ab4376d5656478694e22c7bd2f788ddd8304
MD5 99f821643a006836e0594fcc84fbb201
BLAKE2b-256 d97a290f868296c1ece914d565757ab363b04730a728b544beb567ceb3b2d96f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6aeed503b3b3d5af939b21d72a82521701a4bd3b89cd761da1e7dc78621af304
MD5 18746c3303dbc6fa7b213781ad2df505
BLAKE2b-256 d538c0dcd7b10064f084343d6af26fe9414e46e9619c5f3224b5272e8e5d9956

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 eeef421c1782953c4375aa32f06ecae470c1285c6381eee2a30d2e02a5633001
MD5 255233ec943ff181926a2f1356e9c9fa
BLAKE2b-256 a4f60d6242f8d0df7f2ecbe91679fefc1f75e7cd2072cb4f497abaab3f0f8523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3abab3bf99e8a77488ef6c7c9a799fac22224c28fe9f25cc21aa7cc2b72bfc0b
MD5 d44cc706f0ff73136f4410a7d10ecf36
BLAKE2b-256 8cb9aea926f263b8a29a23c75c2e0d8447965eb1879d3feb53cfcf84db67ed58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5a16890fbe3c894f8ca34b0fcacc2c200398d4d46ae654e03bc9b3dbf2a0a72
MD5 376af5a9488b5e7fc78dd96ff5cf2473
BLAKE2b-256 2a403c46cd7ce4fa05c20b525fd60f599165e820af66e66f2c371cd50644558f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12ffd50f520c22ffdabed8cd8bfb567d9ac165b2b854d3e679f4bcaef11a9441
MD5 295007a29ead3102649e2c1eb7472625
BLAKE2b-256 afa5be29c50f5c0c25c637ed32db8758fdf5b901a99e08b608971cda8afb293b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ead81f728682ba72b5b1c3d5846b011d3e0174da978de87c61645f2ed36659a7
MD5 70a96d263e3395ed3120a9e27df07370
BLAKE2b-256 2bbf628dfe19c75e8ce1f45f7c248f5148b17dfa89a817f8e3552ab74c3ae812

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fc5a531ef02131e44359419a366bfac57f773ea58f5278c2cdd915f7d10ea94
MD5 19833071158547514b4e1aeb66a9d550
BLAKE2b-256 19627a3cf601d5a45137a7e2b89d10c05b5b86499190c4b7ca5c3c47d79ee519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a2b2b74a8c60203b08452479b90e5ce3dbe96a916214bc9eb2e5af0b6a9beb0
MD5 74100793af2aeb8771e3ac340503bb5a
BLAKE2b-256 b98b571c178414eb4014969865317da8a02ce4cf5241a41676ef91a59aab24de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09d12ac7a0b6210c07bcd145007117ebd8abe99c8eeb383e9e4673910c2754b2
MD5 027d01a7adec01325203a57226c15547
BLAKE2b-256 c2bf0ce9beb2e5f64c30e3580bef09f5829236889f01511a125f98b83169b993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 690a3e1b54bfe77e89c4bacb13f046e642f8baadafc61d68f5a726f324a76ab6
MD5 a71dab32f2059449226a9f41a83c51d5
BLAKE2b-256 f0302e1841a19b4dd23878d73edd5d82e998a83d5ed9570a89675f140ca8b2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ce2268837c3600f82ab8db58f5834009dc638ee17103582960da668963bebc5
MD5 3372a28872588660c40cecc3e8c140d4
BLAKE2b-256 ac0f348c829ea2d8d596e856371b14b9092f8a5dfbb62674ec9b3f67e4939a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7a1f77d9c4cd7e76229e252614d963442686bfe12c787a49f4fe481df49e7a9
MD5 c8a07b3e25eb6e15aeccda415ca7db1d
BLAKE2b-256 5f1f4261f6a0d7caf2058a5cde2f5045f565ab91aa7badc972b57d19ce58b14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dc1e171e52cefa6c20e60c05394a71165663b48bca6c7666dee4f778f2a7d90
MD5 c002f94983bf042d16654eca07aff1f9
BLAKE2b-256 e96b07714a3efe4a8048864e8a5b7db311ba51b921e15268b17defaebf56d3db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e41be9fa8f2f47239ded8920cc283699a052ac4c371f77f5ac017ebeed75732
MD5 46ed48b90b97f672bc60130fa23db717
BLAKE2b-256 9ab91f5bd82b87e5550cd843ceb3768b4a8ef274eb63f29333cf2f29644b3d75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e47443de9b12fe569889bdbe020abe0e0b667516ee2ab435443f6d0869bd2804
MD5 c4bc499ae8c6c41aa72b1f4cf0c05eae
BLAKE2b-256 aa41e26a075cab83debe41a42661262f606166157df84e0e02e2d904d134c0d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b037c4b15a64dced08fc12310ee844ec2284c4c5c1ca77bc37d0a04f7bff386e
MD5 b889ba49f2297c0f3b2b8446d78a80d3
BLAKE2b-256 62443c31b8983c29ea8832b6082ddb1d07b90379c2d993bd20fce4487b71b4f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a7d7148b6e5e95035d4390396895adc384d37ff4e06781a36fe573bba7c283e5
MD5 dbb461e5a02970ea3b732b0ed82f342d
BLAKE2b-256 dc76a264ab38bfa1620ec12a8ff1c07778da89e16d8c0f3450b0333020d3d6dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee4a18b82cbbc648e4aac1510066682fe62beb5dc88e2c67c53a83954e541360
MD5 11bc689ad3ef4b0b326ae91263b672bb
BLAKE2b-256 e225d37215e4562cda5c13312636393aea0bafe38d54d4e0517520a4cc0753ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2e027a6da21a7c8c0d87553c24ca5cc4364def18d146057862c23a96546238e
MD5 0b263221723db2a35bb9ba5d094d1688
BLAKE2b-256 2c88bcfc21e520bba975410e9419450f4b90a2ac8236b9a80fd8130e87d098af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7bbcdc52b5bf9f054b34ce4af5269df5d863d9c2456243338bc193c28022bd7b
MD5 32c171e607799754d6159673ed41bb13
BLAKE2b-256 260999442f02794bd7441bfc8ed1c7319e890449b816a7493b2db0e30af39095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 181eb2a975a22256a1441a9d2f15eb1292839ea3f05606620bd9e1938302cf79
MD5 88fb4a33f012745e9f8b6bd75ba42db4
BLAKE2b-256 31ebc4f92cc3f2825d501d3c46a244a671eb737fc1bcf7b05a3ecd34abb3e0d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 297e500c15766e196f68aaaa70e8b6db85fa23fdc075b880d8231fdfba738cd7
MD5 d87e2eac7204324d0da511edcf462c6a
BLAKE2b-256 486f2f178af1c1a276a065f563ec1e11e7a9e23d4996fd0465516afce4b5c636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7e4bb66c13cd7602dc8931822c02dfbbd5252015c750ac5d6152b186f0a8be0
MD5 5352beef8991c9a969e9e87db6cdb7b4
BLAKE2b-256 f3f16f1d72ddca41a64eed569680587a1236633587cc9f78136477ae69e2c88a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65cece3b36e5b0826d946494734c0e6aaf5a0337e18ff55b071438efe13d559e
MD5 2d2a80739474f6143d0b71ed4c932986
BLAKE2b-256 d400eb45db9f90137329072a732273be0d383cb7d7f50ddc8e0bceea34c1dfdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f782dbd3a65a5ac85adfff69e5c6b101285ef3f845c3a3cae56a54bebf9fe116
MD5 3b0649917996932ee6616164d5ca4caa
BLAKE2b-256 ca581970ce006c427e202ac7c081435719a076c478f07b3a23f469227788dc23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1ad295537041dc2ed4b540fb1a3906bd9ede6ccdad3fe79770cd89e04e3c73c
MD5 3a26c836ddfd0f71971e8637114ed74b
BLAKE2b-256 3631b65b837e39c3f7064c426754714ac633b66b8c2290978af9d7f513e14aa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a07084211a8d35e1a5b1d32b9661a5ed20669970b369df0cf77da3adea3405de
MD5 fc2a5beb09239750c1001de31b926dfd
BLAKE2b-256 5bdb423a81c4c1e173877c7f9b5767dcaf1ab50484a94f60a0b2ed78be3fa765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90f0a00ce0c866c275bf888271f1dc0d2140f29b82fcf33cdbda1e1a6af01010
MD5 060fade5f27a8e6fafd8a0f0b6e6d3d1
BLAKE2b-256 f98ff8daacd177db4bf7c2223bab41e630c52711f8af9ed279be2058d2fe4982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2bdab1d31ec9b4fb1331980ee49ea051c0d7f7bb6baa28b3125ef03cdc48fdaf
MD5 05420ec41a59c3ea7e3588f5a2c63ec9
BLAKE2b-256 b78aa4078f6e14932ac7edb171149c481de29969d96ddee3ece5dc4c26f9e0c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a64a750e7a8277a323f01ca50b7784a764845f6cce2fe38831cb93f0508d0051
MD5 330e5927e87d7e17d9ad259319185ac7
BLAKE2b-256 245fe8418108dcda8087fb198a6f81caadbcda9fd115d61154bf0df4d6d3619b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c96a285e4a8bfec0652e0bfcf42b1aabcdda1e7625f5006d188e3b1c87fdb543
MD5 35a92c832d418ea810ef976ade97f3fb
BLAKE2b-256 268769387fb5dd81a0f771936381431780b8cf66fcd2cfe9495e1aaf41548931

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 646.1 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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ccca9d1a8b5234c76b71546fc3c134533b013f40495f394a65614a81f7387046
MD5 59637a0ddfeb993296d47ec01629c16b
BLAKE2b-256 c728fa5dcd1e2e16982c359128664e3785f202d3eca9b22dd0b2f91c4b3d242f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3efdcf1dd84d45f3e2bd2f93303d9be103888f56dfa7c3349b5bf4f0657ec696
MD5 babea811d74dca8815ac68edac0e4f4a
BLAKE2b-256 7f5e13b249613fd5d18d58662490ab910a9f0be758981d1797789913adb4e918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e23424fc7ce35726854f639cb7968151a792c0c3d9d082f7f67e0c362cfecca
MD5 c216c3bfce6afb19e7ce4f5e0d4c966c
BLAKE2b-256 7595a86c84909ccc24af0d094b50d54697951e576c252a4d9f21b47b52af9598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5719ea14ea2b652c0c0894be5dfde954e1853a80dea27dd2fbaa749618d837f5
MD5 f4e23535ec99dc885833ca44e80544b3
BLAKE2b-256 d4cf2c64f0b6725149f7c6e7e5a909d14354889b4beaadddaa5fff023ec71084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1734dc49d1e9501b07852ef44421f84d9f378da9fbeda729e77db71f49cac28b
MD5 daf3bcd49724bf23c226c01224d8f4d5
BLAKE2b-256 41f7e80f55dfe0f35787fa482aa18689b9c8251e045076c35477deb0007b3277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d24321efac92140b7ec910ac7c53ab0f0c86a41133d2bb4b0e6a7c94967f44dd
MD5 9dd7c0c2781d77d8f182e22959f11550
BLAKE2b-256 85e57f99bd0cc9818a91d0e8b9acc65b792e35750e3bdccd15a7ee75e64efca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a04a3b73b75ddc12c9c9b21efcdaab33ca3832941d6f1d67bffd860941cd448a
MD5 dd6d6389c2be1c0f7d558b462462d3aa
BLAKE2b-256 80e65b00bc2a6bc1701e6878fca798cf5d9125eb3113193e33078b6fc0d99123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ced2a248352636a5c77504cb755dc02c2eef9a820a44d3f33061ce1bb8a7f2d2
MD5 c62e1a5cc833ea741f83a1e3a4072f74
BLAKE2b-256 a58cad5a57bbb9d14d5c7e5960f712a8a0b902472ea3f4a2138cbf70d1777b75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5fd5ab3840b8c16851d327ed06e9b8be6459702a53e5ab1fc4073b684b3789e
MD5 e67eb900a9976b9ca7f8ce6b3242f668
BLAKE2b-256 b32bee96db17ac1835e024c5d0742eefb7e46de60020385ac883dd3d1cde2c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bda49950d405aa8d0ebe26af807c4e662dd281d926530f03f29690a2e07d649a
MD5 a2abd2e28f162d8c78e59c015996c069
BLAKE2b-256 4ac8dea564b36dedac8de21c18e1851789545bc52a0c22ece9843444d5608a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73c7aa109d41e593785c55fdaa89ad80b10330affa9f9d3e3a51fa695f739b20
MD5 5fa529e44db6653b480fe27c26c6182d
BLAKE2b-256 55542ffea79a7c1eabcede1926347ebc2a81bc6b81f447d05b52af9af14948b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9e624f6be6116ea682e76c5feb71ea91255c67c86cb75befe774365b2931961
MD5 d1971120767122824afdaf25fc3a38f4
BLAKE2b-256 93b0d4f1f3fe9eb3f8e382d45ce5b0547ea01c4b7e0b4b4eb87bcd66a1d2b888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03e82348cb7234f8d9b2834f854400ddbbd04c0f8f35495119e66adbd37827a8
MD5 8a600cbb6f72c8e9ae6c6ca1882b95f8
BLAKE2b-256 0b0e012556ef3047a2628842b44e753bb15f4dc46806780ff090f1e8fe4bf1eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 14b58f3da4fa3d5c3fa865cab49821675371f5e979281c683e131ae29159a581
MD5 a158db645f048407df5e356a392ab6d6
BLAKE2b-256 e347eb1206b7bf65970d41190b879e1723fc6bbdb2d45e53565f28991a8d9d96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 44f35ee844b1a8cea50d056e6a595190ce9d42d3cccf9f19d280ae5f3058973a
MD5 65e73933e29c0333b09a6f0a2c72335a
BLAKE2b-256 7cc8dda0983e1845706beb5826459781549a840fe5a7eb934abc523e8cd17814

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 646.5 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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 166ebce373105dd485ec213a6a2695986346e60c94ff3d84eb532a237b24a4d5
MD5 2e133244e882789dfc6ed50e5d5f3771
BLAKE2b-256 bdf41526eb01fdc2235aca1fd9d0189bee4021d009a8dcb0161540238c24166e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aaf938530dcc0b47c4cfa52807aa2e5bfd5ca6d57a621125fe293098692f6345
MD5 ef407085cde9c10c18784ac32e33ed0a
BLAKE2b-256 9f221c1a65047df864def9a047dbb40bc0b580b8289a4280e62779cd61ae21f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c8ae562e5d1246cba5eaeb92a47b2a279e7637102828dde41dcbe291f529a3e
MD5 ce451e7f66354d544297c352a1848450
BLAKE2b-256 7896a9ca398a8af74bb143ad66c2a31303c894111977e28b0d0eab03867f1b43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5991e46ab9b4868334c9e372ab0892b0150f3f586ff2b1e314272caeb38aaedb
MD5 704ebe6ba35069892e338ff4429fbda1
BLAKE2b-256 1718162eedadb4c2282fa4c521700dbf93c9b14b8842e8354f7d72b445b8d593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e01cad2b0b92f6b1993f29fc01f23f2d78caf4bf93b11096d28e9d578eb08ce
MD5 d9021c929d9a85af9d8dea0dfd71e19c
BLAKE2b-256 6c311ecff992fc3f59c4fcdcb6c07d5f6c1e6dfb55ccda19c083aca9d86fa1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c5e53b752f9de44dff7b3be3c98455ce3bf88e69d6dc0cf4f213346c5e3416c
MD5 7488750ce7e84681d39d172364cc9320
BLAKE2b-256 e8409cd949761a7af5bc27022a939c91ff622d29c7a0b66d0c13a863097dde2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b34acd532769d5a6f153a52a98dcb81615c949ab11697ce26b2eb776af2e174d
MD5 8aa925293f93e5bf1d22a63b37567101
BLAKE2b-256 6e8db3466d32d445d158a0aceb80919085baaae495b1f540fb942f91d93b5e5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62020dbb89a1dd4b84ab3d60547b3b2eb2723641d5fb198463643f71eaaed57d
MD5 72f4e6fe4189f7310112e676c0e83822
BLAKE2b-256 dfc979404fcb0faa76edfbc9df0901f8ef18568d1104919ebbbad6d608c888d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba5524f5178deca4d7695e936604ebc742acb8958f9395776e1fcb8133f8257a
MD5 1bd045353b91bb0b889654a09f7adf52
BLAKE2b-256 fbc9390a8fdfabb76d71416be773bd9f162977bd483084f68daf19da1dec88a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16b63047648a916a87be1e51bb5c009063f1b8b6f5afe4f04f875525507e63dc
MD5 4119556fa6a0e8baeb9d73f3dc455fd2
BLAKE2b-256 f5814087453df35a90b07370647b19017029324950c1b9137d54bf1f33843f17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25b3536d13a5d6409ce85f23936f044576eeebf7b6db1d078051b288410fc049
MD5 0802fb3d241d7dd2f6e41b7c1bdfc7ce
BLAKE2b-256 b5871e1a145731f73bdb7835e11f80da06f79a00d68b370d9a847de979575e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 182f4e5e4064d947c756819446a7d4cdede8e756b8c81cf9e509683fe38778d7
MD5 2fd3e122a565ba0987bebc4ed0b81b30
BLAKE2b-256 5266ba7f561b6062402022887706a7f2b2c2e2e2a28f1e3839202b0a2f77e36d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40be8226e12d6653abbebaffaea2885f80374c1c8f76fe5ca9e0cadd120a272c
MD5 350d7d08d72bbc30265314bd2898b49a
BLAKE2b-256 2541b6e2be3069ef3b7f24e35d2911bd6deb83d20ed5642ad81d5a6d1c015473

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d80afd6071c78baf3765ec698841071b19e41c326f994cfa69b5a1df676f5d39
MD5 58ca16738a00404dab265ffa6f8269e5
BLAKE2b-256 c08a53185c69abb3bb362e8a46b8089999f820bf15655629ff8395107633c8ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 646.8 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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fe2bd8fa1ff555259df54c376abc73855cb02628a474a40d51b358c3a1ddc55b
MD5 9991ecd2d34bf90b0ee33c99492e653f
BLAKE2b-256 97326e782d3b352e4349fa0e90bf75b13cb7f11d8908b36d9e2b262224b65d9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02cd240bfd59ecc3907766f4839cbba20530a2e470abca09eaa82225e4d946fb
MD5 2447900234e00de90144b2d6dd22b654
BLAKE2b-256 fbf427475db769a57cff18fe7e7267b36e6cdb5b1281caa185ba544171106cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c4ad2cee85068408e7819a38243043214e2c3047e9bd4c506f8de01c302709e
MD5 463c5b4d4bca280d80c82100ed46995d
BLAKE2b-256 6a54a3147ebd1e477b06eb24e2c2c56d951ae5faa9045b7b36d7892fec5080d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce2617fe28c51367fd8abfd4eeea9e61664af63c17d4ea00353d8ef56dfb95fa
MD5 428e19d093a8992d2342aa29ebfa113d
BLAKE2b-256 df264b635f4ea5baf4baa8ba8eee06163f6af6e76dfbe72deb57da34bb24b19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc1fc03efad5789365018e94ac4079f851a999bc154d1551c45179f7fcf45322
MD5 1f7a01486bf50f61b5f6b6d110c5ea34
BLAKE2b-256 69bcec2d040469bdfd7b743df10f2201c5d285009a4263d506edbf7a06a090bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d22f72ab695c07d2d96d2a645208daff17084441b5d58c07378c9dd6f9c4c87
MD5 21c92255cb98ee177cd746daa86d7216
BLAKE2b-256 90fb9a3f3156c6ed30bcd597e63690353edac1fcffe9d382ad517722b56ac195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7978c498dbf7f74d30cdb8859fe612167d8247f0acd377ae85180e34490725da
MD5 9cd85a16ffa1f6dae28aa3efe169b8e0
BLAKE2b-256 2598013c955982bc5b4719bf9a5bea58be317eea28aa12bfd004025e3cd7c000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a43841e651e7a05a4274b9026cc408d1912e64016ede8cd4c145dae5d0635be
MD5 d2a1a26734be0a63714fa1dfb5d1e92a
BLAKE2b-256 f6c832ae405d3e7fd4d9f9b7838f2fcca0a5005bb87fa514b83f83fd81c0df22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 626c3d4ba03af266694d25101bc1d8d16eda49c5feb86cedfec31c614fceca7d
MD5 035b437845ce00be1c368d6f32fb920c
BLAKE2b-256 ff3571518847e10bdbf359badad8800e4681757a01f4777b3c5e03dbde8a42d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bde7c5835fa3905bfb7e329a4f1d7eccb676de63da7a3f934ddd5c06df20597
MD5 88b657ec24ae3bc58e28ac84aeff6614
BLAKE2b-256 fa2e05a1e61f04cf2548524224f0b5f21ca19ea58f7273a863bac10846b8ff69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5bd8e1a91ed1a789b2cbe39eeea9204a6719d4f2cf443a9544b521a285a295f
MD5 2a40e74272e6315a75c709deb3bbad48
BLAKE2b-256 5eb293bf609633021e9658acaff24cfb055d8cdaf7f5855d10ebb35307900dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7202404958f5fe3474bac91f65350f0b1dde1a5e05089f2946549b7e91e79ec
MD5 8d86d936ba1307064b50de6de2fec4a3
BLAKE2b-256 ca0523faca29616d8966ada63fb0e13c214107811fa9a0aba2275e4c7ca63bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f3c74a7e5ee77aea669c95fdb3933f2a6c7549893700082e759128a29cf67e45
MD5 28cb419fa5f63dc9e4e97498a3e57d14
BLAKE2b-256 867ab970cd0138b0ece72eb28f086e933f9ed75b795716ad3de5ab22994b3b54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a326eab6db9ab85b4afb5e6eb28736a9f2b885a9246d9e8c1989bc693dd059a0
MD5 16d09ea749ee8e20f795e9adadbf2671
BLAKE2b-256 ccc614e7585dc453a870fe99b1270ee95e2adff02ea0d297cd6e2c4aa46cd43a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2af6a0a76575220863cd838693c808a94e750640e0c8a3e9f707e93c2f131fdf
MD5 050cf1fbd8ecf330d5994f5361f5fb63
BLAKE2b-256 fd56852226c13f89ddbbf12d639900941dc55dcbcf79f5d15294796fd3279d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e685f47b4c58b2df7dee81ebc1ec9dbb7f798b9455c3f22be6d75ac6bddee30
MD5 7f17c8a778f7212aeb2cde47fe6bd887
BLAKE2b-256 9c3de8585c4e9c0077255ba599684aee78326176ab13ff13805ea62aa7e3235f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1163d8b5d3a320d4d7cc8635213328850dc41f60e438c7869d540061adf66c98
MD5 82936fe80546127f74b60a33f40ffe68
BLAKE2b-256 a5dfc3f382a31ad7ed68510b411c28fec42354d2c43fecb7c053d998ee9410ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae4e93193f75ebf6b820241594a78f347785cfd5a5fbbac94634052589418352
MD5 778a9bd8dc7e1111fe45d9972f845efe
BLAKE2b-256 fc287237b9eb1257b593ee51cd7ef8eed7cc32f50ccff18cb4d7cfe1e6dc54d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd6c682f3cdd741e7a30af2581f6a382ac910080977cd1f97c651467b6268352
MD5 990d827f34ce068a5958e726fa0e626c
BLAKE2b-256 d0f02c3042c8c9639056593def5e99c3bfe850fbb9a38d061ba67b6314315bad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ad3aa4dca77cef9168d0c142f72376f5bd27d1d4b8a81561bd01276d3ad9fe1
MD5 e68097f72dc3fc28f3d6201102a4c7c8
BLAKE2b-256 79bfc233a85d31e4f94b911e92ee7e2dd2b962a5c2528f5ebd79a702596f0626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d75d0b0696fb476664bea1169c8e67b13197750b91eceb4f10b3c7f379c7a204
MD5 c45f1e4dc96f485012234c172684684b
BLAKE2b-256 35d18c12b779b7f0302c03c1d41511f2ab47012afecdfcd684fbec80af06b331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b81274a47e8121224f7f637392b5dfcd9558e32a53e67ba7d04007d8b5281da9
MD5 d22127db72776398bcf3bd9ca21878f8
BLAKE2b-256 58b9da85646824ab728036378ce62c330316108a52f30f36e6c69cac6ceda376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9b0def154665036516114437a5d603274e5451c0dc9694f622cc3b7e94603e7
MD5 c2805c05327bc0002ee45f2d793e2fc3
BLAKE2b-256 0d5fdde3758084a087e6a5cd981c5277c6171d12127deed64fc4fbf12fb8ceaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9e851cfa87033c0c3fd9d35dd8b102aff2981db8bc6e0cab27b460bfe38bf3f
MD5 b96213d6f0df53b04591dbe2cb2aae56
BLAKE2b-256 7b735f8c276d71009a7e73fb3af6ec3bb930269efeae5830de5c796fa1fb020f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 00f8a59e19d219f44a93af7173de197e0d0e61c386364da20ebe98a303cbe38c
MD5 01543f097bf23ca949ea4a072ecff3b9
BLAKE2b-256 9debcadee9316a5f2a52b4aa7051967ecb94ec17938d6b425bd842d9317559eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67a99cf19a5137cc12f14b78dc1bb3f48500f1d5580702c623297d5297bf2752
MD5 957a844c222766f3d1c5b19d3f7734ee
BLAKE2b-256 2b74098bc71a33e2997bc3291d500760123d23e3a6d354380d26c8a7ddc036de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3746bda73f2fe6a9c3ab2f20b792e7d810b30acbdba044313fbd2d0174802e7
MD5 24100926b4c6cc1013569bdc196d3c8c
BLAKE2b-256 b9b4e7577504d926ced2d6a3fa5ec5f27756639a1ed58a6a3fbefcf3a5659721

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7f41cecc799005a029407893071b15082d504f9115a57db9ea893b35f3f70604
MD5 44e9e9e846fdc92d2da823ec88b78156
BLAKE2b-256 243db4720056d8dcbb7844edfa553fb09aadb4f84aefd02876acf216d4aa6285

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.6-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.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1a1dffbfd930b27aef1962098710344297d52368b362f918eaf1464b0d8d052c
MD5 23507487b1b530474dde352834a884ef
BLAKE2b-256 8d85e40f71d5cf260f4a6a40ae3208c61586798b957aa8feb1905e127a20d3f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ba1b9c80df4ea126ef303c7646021f44486342d43b7153f3454e15cd55eaa87
MD5 2077a65fad9200e892592918ca6e4540
BLAKE2b-256 594626405a502df434ba47e0d0cb584b5f24f7d45656cd1243b64258cce88c51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96e899cd34b422c2d3ad7bef279e16387f217d53ec5f9a25dbc3fcad19470381
MD5 aa1519c381a5a7b805464379df547553
BLAKE2b-256 93a507c12381e8c3a2b7645415caf8a8326e96acd17fafd87acff6ea40fb794b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 435c0c0f38f15d9bef2a97b039b5157bbc32791510670b89504e644de1d27a5e
MD5 8e11b6f43608872eb9f9061b395042b1
BLAKE2b-256 a82b392fda0a4f2de9cffdde7a7026ad721e9ce70c121e654b696f061bad9ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 112527b824eaa93c99c2c7eb11e7df83eab46a63d527bcd71a92151bba5d0435
MD5 3c7191eb1ddf3a172837d6148915aae0
BLAKE2b-256 76ae605f51fad8493b5fc3b2dd90014ef9f07ce1eae8bd4f8f70b7e748d38929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3111040f77ec6b543a501a194c48d5260898e618712472deb91bf48026f1606c
MD5 d7793ec689f68722cd8f1b2745a0016d
BLAKE2b-256 6a07fff69502c4ea2c4e74e96ea524af6954dd8bde72ae8d50afb650449ec8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87554ae12f813d3a287a0f2aad957c11e5c4ace17bfed15d471e5be13e95d9fb
MD5 4a2bc8cdffeba0a158bbde485d916c0f
BLAKE2b-256 76500ce0b9f53276c095d8ed5046ad1f8c66c96193fa5972b1dfe1fc78ceaf78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef2183285a49653517a100f28d8c1a3e037a5e8cefe79cffe205ecc4b98f5095
MD5 78e79a38e9dcf3d6c2743fe70602bed1
BLAKE2b-256 2f7633027c802c9c23b014b0a478205878a033950f2dca65bc782757dc9b9314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5fde2bdfd6b3afee19db5efe01e4165437329f9300441c1b25d5b2aa6752c0cc
MD5 bd785dfe63b55fabb8b83864afbe672d
BLAKE2b-256 97623d7ebc0be3617f63f5ab7d9a65316a1b2dd6e1bdf853d0678a7c1b033f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca877c5a7b78fe74d97b34b735ea8f320f97c49083f7bf8fe9b61a02cf677e67
MD5 34ad1b02e034d239b40e08d1ca9f6ce3
BLAKE2b-256 d3364800f10d86fe1ae31966d1399dd5dce286518376cf7c2cb7e1f4807c57b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8dfa178ead3abeeaf6b8c4fe9c6c9b333d2d66c88735566f919169d18e728fa5
MD5 47663c8dbb6bde50c4ddef07d98bba63
BLAKE2b-256 8e722dded2792f552eaa4902143bcf72bff6a8bad8e85e62ebf4f05db874dc5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afb5157cd217af4f47a13ad7cbfc35de0aa1740331ba662fa02fea94269d5894
MD5 53241a3f04ae113739e002ebbc8bb3c6
BLAKE2b-256 9e0fd9bf14c4a8cfc15dab19b73ba19111c4521608786748bc0d72be27451f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.6-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bd0bf3f4e57f3d50a91dd4eff6a22ddc9b999dbab2b20fb0473332a5551a0be
MD5 8694364d470a6b0568880c87d4279f7b
BLAKE2b-256 4358df340586ceb3a0a168ffe98c6b7a1bc0de892f7502f4653ac3a845d3dc1f

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