Skip to main content

Python Bindings for the ignore crate

Reason this release was yanked:

missing wheels

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (900.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rignore-0.7.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (943.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (901.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

rignore-0.7.5-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.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (901.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

rignore-0.7.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl (827.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rignore-0.7.5-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (887.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

rignore-0.7.5-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.5-cp314-cp314t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rignore-0.7.5-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.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (941.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (897.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rignore-0.7.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (983.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rignore-0.7.5-cp314-cp314t-macosx_11_0_arm64.whl (820.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rignore-0.7.5-cp314-cp314t-macosx_10_12_x86_64.whl (882.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rignore-0.7.5-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.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rignore-0.7.5-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.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rignore-0.7.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (984.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rignore-0.7.5-cp314-cp314-macosx_11_0_arm64.whl (820.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rignore-0.7.5-cp314-cp314-macosx_10_12_x86_64.whl (882.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rignore-0.7.5-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.5-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.5-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.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (897.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rignore-0.7.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (984.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

rignore-0.7.5-cp313-cp313-macosx_10_12_x86_64.whl (882.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rignore-0.7.5-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.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (943.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rignore-0.7.5-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.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (898.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rignore-0.7.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (984.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

rignore-0.7.5-cp312-cp312-macosx_10_12_x86_64.whl (882.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

rignore-0.7.5-cp311-cp311-win_amd64.whl (727.2 kB view details)

Uploaded CPython 3.11Windows x86-64

rignore-0.7.5-cp311-cp311-win32.whl (646.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rignore-0.7.5-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.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rignore-0.7.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (985.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rignore-0.7.5-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.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (942.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rignore-0.7.5-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.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (899.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rignore-0.7.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (984.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rignore-0.7.5-cp310-cp310-macosx_11_0_arm64.whl (824.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rignore-0.7.5-cp310-cp310-macosx_10_12_x86_64.whl (884.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rignore-0.7.5-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.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (944.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rignore-0.7.5-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.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (900.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rignore-0.7.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (986.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rignore-0.7.5-cp39-cp39-macosx_11_0_arm64.whl (826.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rignore-0.7.5-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.5-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.5-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.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (875.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rignore-0.7.5-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.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (986.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

rignore-0.7.5-cp38-cp38-macosx_11_0_arm64.whl (825.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rignore-0.7.5-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.5.tar.gz.

File metadata

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

File hashes

Hashes for rignore-0.7.5.tar.gz
Algorithm Hash digest
SHA256 67d6b8c2e18a1665e94dd3382e5e29c753ea8650f9b23c151613336728dab6f0
MD5 1fb4f79ad357a90a6c88e247f5cc0de0
BLAKE2b-256 5b9c52b28641caef6d3cfac32d240ee6f4fc69eaaddac3daf18b164c5042b440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ab66756e47b6ff16f375c03d0a260d125bf143a003e6e86fa1b041e21291aa3
MD5 0f5bb288453d418aa54b52e22c46bb4d
BLAKE2b-256 acbe087c2a7fd151613ff0aa4316dc513aefda03c6bfd9fd9921306abeb82e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38a3de8fdd60751bd32172e159021e0f3252a7042cca23fbe3b396117441c229
MD5 a4c06c672a4c7d8617a97c73aef1fdd5
BLAKE2b-256 6c96437669fe4a0bd673b9d29bdfc1cfff423ec6c10eff4c53d65d199c4038e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96268a18239ac27cc473638c09b311bce5ca7e307bb1da36d42cf579bce417be
MD5 affa5c54acf144254b65c54277b8099f
BLAKE2b-256 97d4a5e39267e7316732396a309bddb1320cb9103d161b3cb164f04c8ed72efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2b79aff2bd32e9d3ca5670ca95efb9ab0858766bb8b699aa603dbf19d381879
MD5 1bc671704a8e9781c0f5bdbbede66585
BLAKE2b-256 f9d375a3ef150eedd24b3ccfd77fb4d179178966ea12856e200b8a94246cf1f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7002058da61782b14daf07b5959b4d3523ff5e8e4faa29e53504d4a043bb7529
MD5 d5724752231ffb2ceb89ecd416bfb74d
BLAKE2b-256 60e77d0eafe0dd3cb2341995f42a3eeea2fcda5a8421ca35a9823fba3da07428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72887d3fa570ffa8f5381ffcb2a0f3cf3306d808972ab8559838565a41938104
MD5 d1a154b8191f82c980aabbee855a5414
BLAKE2b-256 67e71ed5ed086093721abf5c6d32ab192c7ef9c9c8cb140c94df3440d3666146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 940f146359b562d0bbcf861ebe8b6c2075ff2b56bdb7fb1c3a5eaff9eb3e57e8
MD5 c9fa3a23eacffc528ccbb6540ee21078
BLAKE2b-256 d624c34c45e86a6b247a576969f03cace42c974893034547ba91b5f4971e9d23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 653c7216e41868c1d50ff799f0c81f91179ab966ea1f70f0a932bbd36378866f
MD5 879a5081aaf6f36319127a5d71f765bb
BLAKE2b-256 8f7edec2421d067147445efa08d6260300fefac59359626f31b8ad3200d5a981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b996d34153562170b4c5b6c51bd9138b7c5aa19158122b00341cc19715e4aeae
MD5 eeb29355932c1aa406cef16689b88806
BLAKE2b-256 1223dc2de61a9b7dfed4d1d415bdf70e0d75a2b33c43e00b3873403bdf3a986e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17506ed90bd819421a3ace244228763bac9efad8c14df8f6ee0510ce0a580f0e
MD5 dba5d9fba41303ccce5bc93fe0060923
BLAKE2b-256 6a0c38c790ff32e75dde6e8877366fdd4e90ab05858b27d398fcaa7198cc8dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 798732107f1a911f24822e0291703196db42af28774aa32510e6e495dd2d4a34
MD5 6edc6342e96769daab21ff25c6526aff
BLAKE2b-256 56b63ad8ff971d03b05c7b0c390efe02cbd662e100e02c96f7175caca335e35f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a1fa7113368706d34bbe2219af339d50ee56816f0f12b365421df1920a05c18
MD5 c143f820722fd0d1f7f38e857f7a506f
BLAKE2b-256 b061a75019d764e71fc606b06de1f0075e822b46316f48f2912f024d9300c587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afcbbd5540ab42356cb006080d4e0b37d9b659bb703f5300cdac1f7399a91433
MD5 6f4094487dfa1463a728eb45cee357f5
BLAKE2b-256 4295254bf128b87fa333e2e69e9158561c16bcee024dd1988a71a4dc17746aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 439cacbfef5b7ce689ee7db877c5b263386828ecaa27e6541098cb1c9bd21ff1
MD5 ee43e63a270b69b549689904e12f7334
BLAKE2b-256 cc622677f7e2ad31160a9e2a910d2ab3efb16f54fd786ea5c0e584aca8ab41e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9be09e01331681ab141f530602e0bed290c4179dec47384f9d6cdd5ecbf39d35
MD5 6d02be223bc8805d6ebb8d33007b79d8
BLAKE2b-256 91d02ae97e75d0ec77db6428e1a1f47df678e6ca31cb6183a217a0dcbebe4894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9b2a270894e3d6b113b63b6e5f57b53bf19008e5560e2598dc94449e321846e
MD5 993ea41fc877bc00d857f848edb53085
BLAKE2b-256 a267ebb7d15738d450bcf25eccad495882be88da83ffb98f4666c0717f8644df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2aa7d36d85d42ddf2cc2c94c3757f4083a721ea8e8b2efc49b1927da6546635
MD5 b6df3ea9447588f7d1ab03a72df619d0
BLAKE2b-256 2adae0ff2a52c6b07aba5651b2612f01d36bb45173524f9d1e1a40c6bd49ad32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4aff54a1568691734361c7c457b411021d618b298d876284a9812bfadb06d60
MD5 132fe7270a681aeaa00cc79fbcf08050
BLAKE2b-256 5738182ff3a930743c12b818c7ccc504b1ac82b038c39d349b8f1e3a29a7136e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66206ad39bd32a132bfcfe4eed3d39046f0007af581f883959e2172056452925
MD5 cd751fea859bb9fdf0d7f8b9f1bfd837
BLAKE2b-256 b9c85cdee029a4f8f84cab177608eb8918010140f572f231c5f856d341ea45c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6cc429a95744582432af2428a2b96372f5d2ee593d6c951d97764b897515efd5
MD5 f1886c46637a08d3fea9e697386d5dd2
BLAKE2b-256 7d1309b621c4f07bc6aa3053aba32ee559d1f10158aafc52170558417a59c33d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f11dc03139d8e973aaba2e7993d67589a1455845351310bb230505959e53db47
MD5 0ba688e24e4bd81c5cfda8f8b72925b5
BLAKE2b-256 fadc1235db5af5de01d501fb86e3f7cb56364afeb6992ed942601778639de470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8837f6c1c69b7bb0e938c7ec7975dfc904689de52a7a67cd715cd2e392092ea5
MD5 f2aa1641b8bd86c0102ddc92809ecc57
BLAKE2b-256 711c3ac75e3d42bc35b02d05036a59fff10535835351041aff2a83c4c8302949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c88019ac8997d12510fbe59f04862ff3d07a6ca86d3b0c17f9aba7023862f88c
MD5 6384dc1a4a5d3f47515d2ca8d77aaff3
BLAKE2b-256 fffe8e7ecc3b8de59ade27ec85774e77927150abf0fe45ca586c7eb1bf3d6433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8034a83c5b3f59001c7cbfc9e8bda149b27b8310d7fc1e8075899810fa1a52ee
MD5 41ab3f53bd7edcd2ee5add83699876c0
BLAKE2b-256 3e4e339954b7b0e2cabf542b8186fd5a27ff3f251dffb4e8dd532c54d67d0d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efdf0addc50c05d70586bbdd2a1aed34acd13a51831ec87da26c54216233bbc7
MD5 763e98e78dae359da7fd33196b9fc154
BLAKE2b-256 34f253bd6767371678b213e31e032c73e0e75ab2e0f9e7b291070c661555c052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc8218b926b73f5e38864a4f5936dbe965a6dbd44ddbd64c10ffc4f1041b11a3
MD5 434948a91a640c3543e78cda0a6d62e5
BLAKE2b-256 06b5a0ca72129821109ef4f3d9568e890797730e58f6bf74c959aa1ad06e5fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8bc56446b1b3c6c2c404e02c9f5ac465c5b76151f5949f01cef1041998adb4fb
MD5 146df53e2f772f6a785502fcbc89f374
BLAKE2b-256 3b8acae70a4b2e8b2d795daead90a99db319a5690803ba823e7a14a7f75bf786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8707dfff55d347a1ab024a9e762ff3c8951a789a6e9bb94aa1124e120b34c9f0
MD5 ee32b09f4ea140754d6f827f4eb77313
BLAKE2b-256 c36c9976dcfba36ebf24b3ec541ebc6b156fba86611c4f922f49e6ea2f11a031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a436a1ddf4f0195f2bd30192006683cb45adaa83196cd961948cd07930eb3e00
MD5 ae4f59b03c1ce0edd76ed60fa60fbc8f
BLAKE2b-256 0df5b08b8da26779dc50bfbb42f198aeaa3c374de6337fe326bdb9262d530ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52d6a9c316f0ffa7afdb1bf30e7aa643ac0c20cf8d0514ceb2ded69f1e71b04b
MD5 5c3b3ab9295543d37f15b6c53700d6f0
BLAKE2b-256 9735eaffda64e86e13644bd52b2fae778b1d610a90cfcf6ee30eed3af4c772a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d44a0f90628617299df2aa1a3c9a1c43c743a8f92acebd8318ec69cb3f387667
MD5 25db7bff0c5e245472b5afd71d3e8b77
BLAKE2b-256 39ec169ec5c14e51eac8918217c7b3006624e774774873c8b98af5cf7a73a260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd87168993c9af96403493dc7fe99aea566aaa2eb2f81a23954372f6f005dce6
MD5 bcff2ad247fa0840db2dfe3cc3081244
BLAKE2b-256 5c6215cf8478e7b033e56fd9434bb3b052101bbbd3cb6064896d4b415347467b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e44ab1125818e6d57a5895b5416dc649d9800bf950db347a519da9ba6a5dceb
MD5 95fe570f7f7aac00421500d1b0484209
BLAKE2b-256 d20d7adb1a175fccd2a9f4e3227d80b6813679eea2e29ba6079e718e743374d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a69df23bb2880ce82f621ce8378a97369590812edd8b810e6333c18d03bd4472
MD5 4fe3286369b8ff5290fee45da485a30a
BLAKE2b-256 50de3e77919591234e83ab00ac3901ebf3403bd2d57e53686f05b9572d1a6e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3c61f5acb86476f4a4123e993a8251840d8928470ea03f1fad4eccf4df8f393
MD5 ecd6c6c9d9e99dc8586b40c7f336f6e3
BLAKE2b-256 bb9488df335b4c2a76e2d9e905f469e577b561b7b518ff74941be67cda4f401d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fcc7f4fe0f87c81d91051ac7d28ce4e8c9edbf4243c28ed1681cee5071df8d3f
MD5 57ae2a5d9d1047dd6b6863e9456a9122
BLAKE2b-256 3f3f1feb8f6405705cc4d343ad3a565569e148e79ec6f82ca6adfb33e66f4ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 45d6f91ea19f95797de9922840408e06c012b61f3dc76cc225dfb46a9f4f5859
MD5 b083d850a5c33fb49c5d5eacafc973e3
BLAKE2b-256 042c9e826551bb55398532bb8ecb841093f7a622fb0ffbda79c9bb90a28541db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 62fc661ce477921dbef4748e32ecc0a612c4083e94d0913bca90f534f2a6f5d1
MD5 c75161d359d42ad9fa1fc0bac2e7a23a
BLAKE2b-256 3523107503093587e6c03eda795ef4d88145135a57410fa3b6201572a1357270

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f0d337d200c11fdb745d13b93b119b96898f05752eae8c08cc15036a24a80180
MD5 358f28d59896c9a6c7f1c332f1dd4133
BLAKE2b-256 869746180ea852aceafcded8276f283e5b788ba169d1f3b8560cfe170a9b4c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 260332a8c0511bc8e0a319456ecb7404c8f2c625b646a04c14bb5f55cbde2dd1
MD5 0855ed6605642c77cf7a024b4c451ba8
BLAKE2b-256 40ce5b57c7d5919dbb162720a89ecd79c0a749eb9dcbd1728bb9235782b8de13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc32f67b382c359f59d487ae72b9c51f7d68f7c07501139a697023a3d8391c0b
MD5 b74e65432bc8e782a33fe45bb2b96815
BLAKE2b-256 39e1996dade4709c394fced8b6066e9089743a324b7ee97c402946a381c60f08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b69bd99bdfdcd13602c38cdad90d8bb35fc6b18246bbe6e8f3b472ca7078ac7
MD5 f1cca368c3eac6a792b21d463dac062b
BLAKE2b-256 28df4effe33f92e1dacf4f53fb2ad0dbe49ab298889f5f69a9d9b00fa015663d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ae32e2e3872c9001e41ae17d571a3edbb625f2519f8bc4348caa60b953bac68
MD5 5aac192c413f13eeaeba2399aaad7c04
BLAKE2b-256 53479416596f60720f3f375b0299560b71a2cdc79b6e7d531b5e7caa247ff291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2ac1774c60fb41266fc15560ae07b3aea4c70c63832c21d994b1903ef56488e
MD5 808c6f0cd9cf70fd343ae992d781e475
BLAKE2b-256 567628749579a2816d58ad8be2ca2e4cd1ffb1c719ae137eaa0bf753dc49cf49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d2b7d4f99b947c3580ee655af0de0573ca90319dadc891a032982ad83e04674
MD5 5d3e0f956b7981ba78ece4053344b4fe
BLAKE2b-256 abf2528a4f1f3af24847b3093b073a9eeab11de283d1cd720c447418a9220199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f389cb8c5629f1478698ae8b25fb43a5e26409161f654b6b5b0068021e439c57
MD5 bb9953d986b3b5a4a49f593094de5ad9
BLAKE2b-256 6c8eb8360c3f4cbc966e617554d8bea9426d92f4a798731a580bc4a3072178df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f8519413e24cc2eac20aa26071b16b120f83aee2d7f50e411b2ccb659ee00c1
MD5 942c9c332a8e6b83b734b4464423e64a
BLAKE2b-256 ce7f4fe1c1389ef1df756388a3d57c6407d44aa15d750253bc94885d11ef8129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0086d966ac6850b65c35f7876806b4532ef6b9be590a6c820d66518a669cf8c7
MD5 fef0f83741da41f82bce6045444b15c2
BLAKE2b-256 1813ad6956e3209f627912c93b376e663e55d6fd092372e5fca300e34bc3129c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ee10deb10b2da3bc031adad98613838e6f1a4b98cdd1ea7fb99ebf091aaf67b3
MD5 82e089d3e1d9a1e6ad425c3258b4e758
BLAKE2b-256 85c07e4c05278bb9860436e65753d81994c515b32b60f4589af9986f309c5cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9f74894c91a12b4f2c2d4bc5598fe1769627e4c851feb12370b7b1069749010
MD5 5ead94f2e6dc9c5ab0bb59ee5186b1c3
BLAKE2b-256 6622cae7fde2ba4df586301ef43f23f34b907558ae5dd033163c7e346167e361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fafb3002b2dd7b38177867344f28ddb7ad5962da7295545952675b498bd5126f
MD5 7656c5b7fc13a8e3ef133a2829dbc83c
BLAKE2b-256 71ebc958684f6ea6979bddedd48872189dcfa59fb513c35913de1fe38af4fbf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 120fef632c5f0eb9a59b89d4b836acb8336db3704273d070e57e6e02460fb7c9
MD5 07feb5d61ad5964386dae5636c05452a
BLAKE2b-256 ed80f79aefbd728debb8fbc25595f75fec5ad13c31f3d634e425694537f5bc94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dff0e648a31bb41e8614cf793224429976d0c27f3b1934de5f1e24196a00be6
MD5 e816f2c0e0584fccfcbc94c044ae387d
BLAKE2b-256 1df5f080841949216db95f10adb2777e33102131bf7773915cd4f353718d3e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33816cd3eafa70437250b1b932bde59c530ae5b2984e99aadf3e31537db7f406
MD5 c9155978cb86ace56b7b27b8120d21fd
BLAKE2b-256 34ae24f5ac1df2eda30f303870bedcc784cac8f84e0813b931ba56ae1cc1d24d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d50904e6d7b5ecf4ca074c7ca6602bd411fe74008ec89de07f1e94a902b531bf
MD5 bca0beffacff0ac83ddcf6f4d9090ab1
BLAKE2b-256 afccc669dc26f97a242b2931a512e1620ed1e0642da2eebf8164242172608186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1782855d2cd10ce6b987d1eb7569263b0b0f08d2fc1cb726b35a7242877e247
MD5 b43e90dabfbfa625e5d0a108e8e4db9a
BLAKE2b-256 2d9fc33a5262f3e50f3dbd01d8dfbb6b0c940fe7673792f92f6e6fd32bc2de30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 070f6224224b498cd5858a8dfa62cc87f834487de6bfd5b86cefd299808b29ac
MD5 7f4bb9a9e6f164be48ae34cf1cc8003c
BLAKE2b-256 7e7d35dfac1362964f81da8d6ec81b0b332e682f4d7bda2e3018630fac3a3136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3ecdcdf08c447e9958d6327756ab290d92c722cd49f05170d05ad50f2642dcf
MD5 a7f1202f3ae77e2c5557b092bfa446e3
BLAKE2b-256 b04942338c53a9db10463965938b6987d878bbdd80bf024a7de835bcd34548e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6831bb99e723ab3dd0ea3213c9515cb7c03b34efeff1ccaf66985444fd8f691
MD5 d37bc91398c2ddbc54558a0e9f35b8f7
BLAKE2b-256 fa3a3b6f4c99032267e49dea2589b9c958502da37d483963f6b30d3b77776d9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1a67f21f113739bd527b0f1e57a643b0db3b2aa2ffe391a5249803ed2d27cae
MD5 d5c673bc5fbb506fa0692671c1a4f603
BLAKE2b-256 2d151e43aafe47b64435d7a73298f0d9db4d0871b92cc3241b474c7395eed343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5013b68243200f41831c3526851ceb1351c574881438ed409e89153a9eb11d98
MD5 9c7374d5109cd264ecdf6640b8dc2de9
BLAKE2b-256 671f89205b12c91a4859fe916075bb5a6fcc9564760e3a4af53b146612cb4c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8492557f73235572ec6fe54d95e92d2c8af65dbe91409dcb1dba57cf14e262a2
MD5 1c0aa6406a8563981d768e182eda2c1e
BLAKE2b-256 71032a201c4a7edc466b300c174ce777e9f633909ebe3a9083a3c5bfe1ac0aaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be9312350aa1c0de2a9aa420e66c6c315fd18a057eda0a28cda676d05016e92d
MD5 b697742073aaf6a527ce4f6258ceedfa
BLAKE2b-256 6a7fb70a3c1efc4a9c08d8da287cf6c1fd4f02680eabec7a1be485eaba678125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8bbd7be282e316293a4dab47d5d837de50acabd42da1c75a72caabbe62f0865
MD5 f781b43058cb566643ceecb2b9e5d8e6
BLAKE2b-256 d579a94fd4e8a8b6a19952088e3fe99f353c0f1553e8bb45ec80341c9b883fe6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0e585b146cf75b04327184efb33569b3c704a77ee8cb54bc33bd452b25a2825a
MD5 c207e87d157f676c9d2724bb9a952226
BLAKE2b-256 a3569ee2f7c4e4a02fb83929c202abf4c9bd672cfe19d9b758471ef674ddcd4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 21625784010e2ebd60c8adb3992b586e9818bc5944a1a33b66f8f4670c56bc9d
MD5 e0dd92b12d3299f0b1c31860be35310b
BLAKE2b-256 1c2cb09bc149c9980c066dbeb9cd30ba7eb2ac6f506fe881f8fdbaebec3a2ffa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 845a3aab8c78f6237d9a3fe0f6e2f888c830e6896a5f282059243843cf57bd67
MD5 185d5f389cbdb160a98a9ffb790ce18b
BLAKE2b-256 79757073c7eb3ee8d1fc093b724f876da0dfe974adfcd3f3d735b3c2d783eb9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce56ba35dda592ad962278f5cbafbcf06d68e48bd216961965c64e4e334d4550
MD5 4b04a87f9fdfcd896eab62967f4c3ba9
BLAKE2b-256 c4b53f67c9d1e6de3ca112aecbba1a2ebd5e8e24db4e0c3ea745f4b9e06bf897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d5d254a0b96145cd177fd01c579316e1f5cb0bce86ba22ed44a6f109961ab4e
MD5 c1fe6bc77f2955f0b0c0cbe5f2083926
BLAKE2b-256 2684f7ef88c70ece479f28d043db8429577952b84c2496a8ec9eee6362a43b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6b2174c5cd80d95a0fe893191dcb37997da1acc48ba481fa8046e78c1e140a3
MD5 5f84f10f4a1a266a3eb92f11949a30ce
BLAKE2b-256 66233ed72ecde0e9be2d32ee4aa20ad7aa1e064e3ffb9b103d377f3722804f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3872b8e8bb0fa49dd4f37e0505809e2976c972b162ee4f26088293e1fc91a92
MD5 1199c137c9147e88d6d5439e03d36811
BLAKE2b-256 f736d64f72704be07afa30b65e2fbda6ba8277763fc501dc6c54e486c506a5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39b1e50861acf2560dd3e4c5303a2afdefa8bf3e487dd7b55c7f5b50e66ae0b9
MD5 b28011815c16770f930158609736dfec
BLAKE2b-256 958dfb106866b1db0bd476679f88d02135e5e1657a2f50e915a8917b47ac93f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 311b01f33e679b9c9e4f8a8b1579ac240c24d2eb8bbe5ecbb8f0c76629b6440a
MD5 6d6f47709d8507d657f7b6572ed98069
BLAKE2b-256 0060eb57823ceb10f9695b629229a74e03ff493b88d4137093571987f89aaa59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b22565877adfbf3e9753dbb676f46bccf28554517b5e9805e0ae58b2907b357c
MD5 6a80062473532b74deb7b7ca5b3089c7
BLAKE2b-256 87400c8f529981c5e93293afd6e856b49e28caf0f2d06de40f7a0b288002c7b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e237084d3dd78689ccc6d0818d6b97fcb46ef30d1d1960faf3b9e965430fd78
MD5 034a1b4fdf05a2d5fcf2db195c3b947c
BLAKE2b-256 e7f7df67ac8a0aaf019e620be946a0db197f88aa87410a652a30b0cf085c7824

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 328bad6d77af8042e0e81ec38a1e21a11b11272609b76a7658f390506abee013
MD5 be54b3f04a96f2c87a6ad09b478efa2b
BLAKE2b-256 7425a70ee32632255801d94ca1c19e5c298d6f8ff0129ef5d86c982a2bbe0ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a46ff0cdb340496c3a03330b3530bcf8a7940b78f4cafc91d6171fc120c55fee
MD5 149b647285ec3c7d21318b2a127902f9
BLAKE2b-256 1bdc09b7719817a68103cc1d27957ab0df8759a1858b0a252a9f81c32df7c91e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5af321298e418f9219d72dd360460137b3f38596d23d076831380bbda9f028a6
MD5 8564aef075f2b68a863644ed786195e9
BLAKE2b-256 2c8f3b58f3eac51cd1b28806367e5cdb5d87527e2674e213943f4fce5e4c3a7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed6d0baef57efd69adebf59f689f6a0935889b6413dd8a6c9716ace23389c1ac
MD5 76e8489934d6c296be6da1c23c6c1c9d
BLAKE2b-256 f40f5cbbe73aa2cabfbcc5595a8bbd7251db631822146ca31a9b955a5aacef78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4c84036790ff8e92f94d5598a480052535c425757c6f1c69bb6de0fe90da3c2c
MD5 d4fd5fc5f9226feae200cb3859764c6d
BLAKE2b-256 0461608cb820576cf1a97c123a62796d381dcae9128632ef22e10f0b22f149c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3459bfb0307678bb851615b3c16f6a5f6d82d19153e941150211ecbce24e3531
MD5 ae465938897cc162363421ad7f4649a9
BLAKE2b-256 7f6ed27c5da709a414e8050fcaca11969c171132ff1cfba13d9fa6d1165c0df9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rignore-0.7.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e5df5fbc132547fca656e57f32fa231cbaf9a83af627b82971f9a99f230c2bc4
MD5 4ceafbda198662d7521c30e2b1475c5a
BLAKE2b-256 7a6e3bb303aede269872f8a52912eb12ccb498985ba1467e27ded54bc18558de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4012c0c0b76a467ef16952205eb404a30e097f63695e42e1483bb49286baf846
MD5 ea308e868a6c9ad7de08d95c54ecad77
BLAKE2b-256 1bd17980bafb55e9cd1baf16e057cf0cf5f6a9a4596c97c500c1aff33e279020

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df0b42b2fd98cb2a8db841361d65e515f3acc74a3c6b0ce9c670d31dfbaee43d
MD5 227f8e5eec363f1f213b123abab1222e
BLAKE2b-256 8f246b48896cc6293d8cffd3ddeac486a49856e0215f592a17e020b53dd7db28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39cec0c1d317039dd4e4a1f95fae971d36053d8a620e887e0a85954868c498bc
MD5 749c9eaa4951d3c0db93e6f9f635286e
BLAKE2b-256 2d009fb83701ee588a5598ec3043c34ae258b971dd85f62acfba72a40626f1ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 414872735a88e9feca28d0df2b6d43d43519186052bf33419fc4918a612ab655
MD5 a7519de9cf9a7cbb5149bc5441a885bf
BLAKE2b-256 c75027904c598cd00389ff4ef73a5795235e9cb05f4995767f7901caefa2201b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d26c01aeaf142cf0a699c373d88a770960a7951dcfba0aec59398fcd490946a1
MD5 8369b00b969116c64e49aad928be4315
BLAKE2b-256 a03490fb66d6e2ad0d4e850153e647582e67dcd589b99ce7f69c7cf198231641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 958bd494e005cae93955d64402d0d2735d4008ecae300ec4e8e8dd2123084049
MD5 b46d99044910b21fe493e6ac522f3146
BLAKE2b-256 74b3d970b5e6b685d066cd84eaa30120a2ba2d4c9a6986e1964d1841f443243b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61662c49ac1a7e756d41ce2347c5a32bc44c63cff5f236112bd6af4fb79c92f6
MD5 d1e7ef684be9e9cb0cbaebe4f1035ede
BLAKE2b-256 7035bca6da6d151dff073891a1a82bcee7a6b2f7741f3f2d47b17befbb4dc349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c07bf87ceb5359f12a010f432c87cdeb07c815cc4e126153e46266184a4fbae2
MD5 3dfbbd5a73a5031c878bb91c251f802a
BLAKE2b-256 2feb7b673247d771f4b7079ced9f19bbb4b6d54d89075ea22f2d34d6d16535b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bee7d5aab742cb3f927d42ced0cdeaea3e3c6dd915bc30ed3364222e5745d51a
MD5 d99db567d00d5fa651ebd00c6029972b
BLAKE2b-256 fa76ff45365e3093cfc8a48fd6dbd3aa5b40a7ee470a1faa9f13ed2beeedd5bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 59862bf4a4d69c506cb3f834e1b7012ae8fd2f5ec890c705153e9c8c6e0b8749
MD5 57dd984227e145e633eea90fcca49fbb
BLAKE2b-256 ccd72377fa6df5625bcc4783f3321b6300da5bfd949a03553d15ee8fb1e88b28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d427202ecb612c39a05d9238ef1e4daf86d820235e20c39d4a1f42e2590b1371
MD5 c6ad2521baf14e711a96cfc4d5657587
BLAKE2b-256 9f26f621e0fb417c978b0b0d0eee9f8e5eae6efd03bf9a44361aef26d23ff9a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b667830f146c41ade6653f959d8543c445f5cf7a01e810bc905290a00d5d25e
MD5 be46888254bfc0d7c28bcb4186e48d68
BLAKE2b-256 34661c58d87a4c5ee1e0d0c28d03321dff34d8b5d23b002cba6fc5aca15d1b7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4f6a52a1263f1ff41c739c1f9438362f9617df775989f8352e61b4ab9d356b67
MD5 326c3ca6b682fbc1a4b8df8a18bb6d1e
BLAKE2b-256 3c9690de4f87ab7b776dde299dfd3cc7e921b9b70f60bdffa93d5d2bc1eaea78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 727.2 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0e48d6006c808fb57044fdc1513e52cb3dc738b71d4a43373d05867dad94a1fb
MD5 888744226ad2fd376d7eb8730c4f2741
BLAKE2b-256 e20115c5cecddd09fa2ef809157ee172a35f68b294d3fb14f418346e240242fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 646.6 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6e4ea9cdc9276eadb0b3a91371bbf7349fc573f0664b469080bc692719897138
MD5 b7f32df350fb0375ee9cbb6e4825267d
BLAKE2b-256 11c18724bc672ff42bb75b6585a4d5d124082ad2e6953c6cc9d750c8df49ce95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4836b1e8ff2d9acfe34ad34e632452ff524780e8402ad7fec8b2242107656518
MD5 a732c9ef3a4d49397dad44db3fc7d48f
BLAKE2b-256 a70cd5c37c53dc79d526dfd7eeda0785cd089def8e0eb7a6b680ff31b62858a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 478aa133171332150af23709de1263a140817d96a90b0d12bf2b69b122aa5f05
MD5 81d9d893274286bf2cef565958979982
BLAKE2b-256 818c06f6c02b66b593a5da46c01598b0909f221426d75ed70f7e689594178190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6276b2accb651383c243017210d171efa547b9ee176c79a4bec178f9a0d0c297
MD5 b6996ce8793f1eca132b59a78312a14a
BLAKE2b-256 a1d813fe21240d8dd9ed7db4f7091760e5406e82711674b44f330caf9055972c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 281deba51df0f682ac3042551e2bab621efa0dc35a47e8f4dde0021bb50efc3f
MD5 beffbbe081bc34b379743eb733b98e35
BLAKE2b-256 0fd4a7a6d73b7b286bfe09e8ddb2b74b8e8936c03c21fabeb05184fd8d178247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 674acf3823520f8cbcba292d5100a0569a9fea15a39fd7c957d788a5994a39fa
MD5 12ad0cb29c1e77a0f7a614bcba2b4eb8
BLAKE2b-256 3361ffdd6c55d35b9bfbd97515aeb43deb4d37b9277ab45ac1c845702d05f4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f8375d5ae2bd04a70c84dda5321aeb593ad75b8f0716d30513afe3b718867e6
MD5 dd8f75c1ab6f2e241c708a768e6b0aa5
BLAKE2b-256 b79230fc2faf6be6c4c63f1796c3923d3b03f810a6051e116b1615244f6b690a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07d81401b456a852a9c12032dc187ee343a805d15a407053e4cc5f18a769b934
MD5 e0c92f68d44a8db24348bc5c2432624c
BLAKE2b-256 68161ccddfc3a019abec57f3587d146d980133cbfae5d5a04bf76c6a04cc42dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00c9c86c22346bba8f7c3a8b9a90c517014566ea7304635cbc575e857ddcce81
MD5 892aafb17af34163cc39a189698cac18
BLAKE2b-256 6b609153b4746f46d31daaf429bd3a6c5eed0a73cb575fb1e62ac231dcac27b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44946590dbdb248dee54e0188c26c43272a170ed6efb47236fd2db66ccb5ef34
MD5 2dd93f026e4bf5a1cc99700a51949ff3
BLAKE2b-256 aad4edb5828e5764b94cb2c614067396a44de9790e3109999c52c123ffc60ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6926570aaa73c21854e58b8df5216b6f4eab1791fd9289eb4455776b5a8636ee
MD5 e07a49730ff4eccc97357cf412e1134a
BLAKE2b-256 9cfc66b775c45e5aed9356c30133517f1598a7a7e535e0a809838b48896c62f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e9bb39a743233003820102db4e993e5e7f2f41df838095fc35ab837fbf3d0ea
MD5 23b33e48a8d055db2f1ceac0e51644a3
BLAKE2b-256 6bab698bb4da02fcad31c5216dba1caa06b8d22228e20c27ccfa76d0528bbb24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a10a8cb70d30db1273ffdc3dff957ea49ecf86caa61ada05e717692e1a8a9653
MD5 ee4a2e87ad7e7f18b9dc62ba6453e504
BLAKE2b-256 f5e588dc22de188233a20ef53f3bec5a1510b44e72b7cbfec3fcf5e28da11c51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dd1578e8ea81b3577ca7b4614470413b4937e983db5578c4099162e2a27eb522
MD5 68157fd2005d6e353fdd1e8dae0d003d
BLAKE2b-256 9808528d2b0c68fb8f84939191ac96176cd3301e5f24c8d15dfafcbe9d852de4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f2fd0fccd1eeb206f7bf1e8c5930100a7ff114258add5d7c78557dce965b3b3f
MD5 2db15f904491a34d21ab0fb09fcb89dc
BLAKE2b-256 c4ed200bbb7f8a8001d6740bf4bd27f6c0c2dd6a50daa518430881983932dded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6a6930ffebc55a7a9b8c0348e1fee5ae0d676891430e5406705328c391b8373
MD5 5d77bbf5b7a23394186975024807dc6d
BLAKE2b-256 1c8e0ae9260199dfed6048afbe0bbacd39a347afe2b0d9fd156b5e6c1d43da3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b56ac196c3b84e2029a5c47b7e5f59258a7e0f3cfb9ee189994f9325cc2ddb91
MD5 5ac167f77ed97aa3226d3f1a35f9490e
BLAKE2b-256 df9c8049428bf4faa5237876e107e3d88bbaefeac785be30fe3b5da2a0e2dc76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f5d5796c53f28d41b82744426c5335fd01f6140207f349d05f63284f63e0ea97
MD5 42d346f8961b962b82d6c566e612913a
BLAKE2b-256 7e494efe6f99e96dfb616f08e8fe757fbd31dcf3179501be5d9e87af0ac11763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9adb10ecc7bc13bd2a10eb726b55c4cdb85afb2d7b1bb6e4ca8183d84282840b
MD5 6c2c08faa47f1b73f86e450a902fdcd2
BLAKE2b-256 6cc11191f4a05645be6cfbd429d6988e4fdf511930b3ca53fcd04a177947e891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1994beba9d152a7483e62b62013759710dd57a892f6b517bc8f2213b483aaac2
MD5 29e539fe003965a613cc0f31f0eb7f43
BLAKE2b-256 dfc3edfe79412e06ba77ffd646250859823e041c867b22a69194142ffbd0a9f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89a8eedbd3ba3bc9a6d04a2d93bf0903b59907686680a3a9dbc1f54cc960fa83
MD5 56565e84dc4cc47468292133b2b359f2
BLAKE2b-256 caf5d28a9c9bce77ed5cef5d5ee6f996d88d5417ea349c55602147ed6d821bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a62d67b80d365f80ab75e9f7022505a461c389157af092105c21cfb0a441f1c4
MD5 5e170a3fe11144e20a4aa43a306cd7d2
BLAKE2b-256 63824338b98e3a2ed00076f8238eb5ea750de3f59dd410636c4020cdb18d6af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e6312c5d010cfded0c34e74e7f5947ed15cf43604e1d80b9ba738dc7a15b636
MD5 f42444cca21f1ba3280c6cae67742eb0
BLAKE2b-256 2d5f654a679b58b07bfc1b094505771621414df26758a591f5d07420587da8a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52a0ccd9e6a3c47c42f7ff359685d3a5ab45f847d3665cb1f5f9acad55b8ef0d
MD5 6f21a6c7c2b23933b9a8d40a18ea00c2
BLAKE2b-256 2764078da7a5bb5ab1420ae0bfb684bfe65debdfca3371c85b9b20003d842e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5fd88e767ce881f77f233b78204756689e3d5dc8625bf267cb91b91c91797ec
MD5 4b3aeb2e815a269d6b7ee6de0e34712d
BLAKE2b-256 a2156ad21ed5468db33e900b0b55ed11eafe3246046afab54c67340df1ed50f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0f3439a9f9d001076be953cae9b667275a8ba9a7fed5e32938f1e144a9b1ee7
MD5 69e3f08c57df7f9a4b12a1f396223fdd
BLAKE2b-256 009962e80c7697e625a86bf7a38ff47a5f1d9ba3a7848384787bbb7d216bdb95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cd418d033e213efbcac91a40f68f4e04b94b990113330f34992b7757db1f23b
MD5 465b4254a06a62ec62cb3ce8c43df750
BLAKE2b-256 7b6175ac4ee3c2fde11dd8e49a16df27a3dd8dae24ee38fd4a192e6d08c3a772

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b080090e6281d3a146f5833f755a6be7465b112ca23db1631dff6cbb4b2707b8
MD5 aef8c19463bc1ddf3ffcf2672c5abf47
BLAKE2b-256 33e7d5e644fa34105d7b2c6bd0226140b6a15ade1770705726245dc778fb739d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ce7d73c86d1a0639401d6aafb8efb45785d10710209b8a49fbb25bf3fe587a68
MD5 4b50e4945d2d7e4a154819c5cb904f2f
BLAKE2b-256 28c1d9e6f53f862f3f71ad6c4e0691510d888f5178ce78fd414fabc4a9176a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10119aaa492467c5baad0ac593d6d359f9b8cd41d892f1ad6a1601f6c1a78139
MD5 d9a5aba819c74330f611a83c17579834
BLAKE2b-256 ae4b6340c0a52043bf81fd9479c98b0182b90685dd6d16926fe6840a7d94d9a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21754054279e9da6dc8cf408b398fb24a7093ba598c47cbb6fb071947d200080
MD5 d1aae08ad0455e5dc176779b42b78d70
BLAKE2b-256 ef15e6342211ef596f0669ea107b9f7bd6b61a60c4af207d6f4695546c51a77e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20c56a0c20a40e05aaf416476505505e2509462a80239ea4ef84b9c6e0623104
MD5 564da59cb579e7e8c0b62901abd8aa94
BLAKE2b-256 1d707ba9576ba2efcb238c825eec54532cbc7f42e2454ccc5e27b147fffb9fa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a07907017bdca43df3fad3bb20df5db9eb945e69f6e782661cafbaa57ef3613f
MD5 b0ba917569b5030a1868f6544b7ecfb1
BLAKE2b-256 f63697032da01e239884dbe785c28dd274d64bc819ae23fc1913dddf6049203c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eb11b2bd01a6ce24882ad9a2607c89c1e34c574fbb37c312adbfcbb3e89e34f
MD5 7a9955c60fbb7b5316e1ed6227bde708
BLAKE2b-256 ac2de0e50bcfbca6b45a9b0144e0c53ae10565a988f8aa9bae2129de7b82c659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af2b89688dc4f43180555a8b5d69de4e38eb14352c0ffee680c3d73048da8426
MD5 a889981c10fd28a2979f4dca2bdb3f15
BLAKE2b-256 e4433f1b5bb5694b9026a21f0d391a4e13046aa0b8626eed686788bbb61389d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 671e89421607cdec2d9cffa1456d7bbad9f482467d587c20a55c00a591044c48
MD5 aabb461e7f595b73e42f8f4423db2464
BLAKE2b-256 e584ec6241a55b14cbb7fd60b7ea6ea2073abd5aa84de79282b10ecc704eb9eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 099ae64ea37f96cb63af5175b73eb02379b5d69496ddf967d805f649ffa47c89
MD5 2217288a46970dd2b712bd7250ed204b
BLAKE2b-256 7cebe80af4fa4496acdfc158815ea460f5001f27a56d790b46c83f7b8bae804d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4feb9d2bb5d5ff69193bb8e1581879f886f5d898d8032f9eb92ac566ddeaece4
MD5 772fb93b0d497cf2a75af75ab708819a
BLAKE2b-256 5d30b8078333a13460daa1eede1a63a2a33a2a1021b2981ad0629492b486594a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49240aafa1fcc8af7997f67d3b48c0b19529d0db46d57728a94b0b959e4d1122
MD5 beccaf6dd6f5e3d2813e0c2d93920f09
BLAKE2b-256 b8e229f6abef89bfc26201efd9ea0652541b24d2f09134d555484de2b803d00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1989d3e304ed0e0b9bfb0bfcbc0a4420ffe20dd83776845b1a38e867f7ac08e6
MD5 50f47506a20cbc94cc91492bc346b21f
BLAKE2b-256 b1fec1628eee24adc2ad73de8e18e321d26ac8736d464c778858bc2a9e52b598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd5f2c3a3ff2682a5cf0eb08b4ebaef70ec622bed86fca289c87a37ce1d9b4e3
MD5 1e4f6eaaf91fb8307c9918268f2d29cb
BLAKE2b-256 4562ad1ef4b3a7a71aea584bb2a1db98785327a33af8b109fad31f79b79b4a75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8563ccb31ab005b5fa0fc7dec7b48b9341c20424921f59ec6bff30ee6946bb43
MD5 214250b1c3a23d9d14a36cc43dc75803
BLAKE2b-256 e5af8de6fa680bb49e90ae85f4a70d477ffa396573ba2b3a8d89ad10293d84d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rignore-0.7.5-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.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 969d3ad06504730c5f05d4dd292c395ff2e57acd9c9040cde06d76dd8598eda5
MD5 529d2c5451795ecdbf320aada0fb171f
BLAKE2b-256 75491ba928b9abd96521fcca6c57c1f09d7fc5b539ca32ec42e9155ee045a8c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20b5d4b55adbc33d15ee88b4bca00343ebc5db86c0774c49393f6b5dfff3e78e
MD5 0cbe10b68a9c70d5245d20f5f9846aff
BLAKE2b-256 c5beb53fd889c1912e870e2f401c098603a7e7fca7a807fba276a21f825c11fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa2800cc5d09f3519e0d985b6a3f67ad8af044e8ba5363c2e846c1049a22a437
MD5 34c1c45398511c0487dbaafacfb27dc9
BLAKE2b-256 d4d7377d1cffc4c975bd656542c935c1f494e94ad5b95105ca96f034f4370d23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b41b5a70ada9c152272e63ffeaa119f0bbfffd136853de9642275e5a69d41b5
MD5 3effb53037c8090e2a281b27c3bc5921
BLAKE2b-256 d337504a76197a1dc7d326477a404cde47f31cb26fe3d716aeca63c95084f6cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bd5a4b571ff514f002c500db591da39ece94116c0e1bd891f4a8795704e83ed
MD5 99552c369fccc4231688c6b6bd07018c
BLAKE2b-256 31066b91892729fd1b22c22486f3436c13bc9b0ec6c71a1fde461f42df0f235d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 019b33e8ba2e30bb03e5216630a4ac8c87817c74e18179352cedaad73bd10d51
MD5 1cfbf58e657ce59067f72ddbaeaeecd8
BLAKE2b-256 dff13dc0deaf75c7badf700227567d4485cde432d078476c1b7eb45a32bf0d20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83662902df4441ace938755d7fae2810fa3084385bb7e71f62edcb19fe3660a9
MD5 4c8a67b6fec8e34ece6c8106d0cf595e
BLAKE2b-256 a8b23dc4fb0faa1bcc263c4235b6e113e3de8d2a98058dc998ead52f2f3d5bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 671ed66a382918205ceb4ff0665164ff6a8a05af000b9bc7239fd33f9ac7db20
MD5 f24ea335e69d0f674df69707bfe9a50a
BLAKE2b-256 4feb6a50146013b8bfbcba70f0b791b56f43e1e226e879502303535d461df132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44de6fcde36253c635a80ac5b25522ed6037d4f10739b54712e019491b5a6221
MD5 144a74e0c1e234c2e26ac5168374f64e
BLAKE2b-256 b89f18c6bf2fdca531fa5ac55bbc462022ffb44a13d22874e9fac3c530394f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebe61bff2465741c0593e88a89421bdb9252dda37019072f68b8af766f6a55eb
MD5 9dbb58de1bb914a73ee3c0e60f17a6bd
BLAKE2b-256 c2cf50d789d38053ba23df056a9ef646ac3b8b684e9c32c88f2982ee60278e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 88da2c6587b7bd854e9df32f118d1655a29fb30ae063f8b0aa109b980036b32e
MD5 229890207fa19596fcbabb47640f8703
BLAKE2b-256 778790503907d03ab9772e007f290561563a515a9374a8c9ca52305487a99530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b93ad513f3448704954af4f0e5514b3fce77c6a2f4adbabd55c3f88b65c3ab9
MD5 0bb5890578da3297b098fef942a1577a
BLAKE2b-256 47cded384e7a774864c2eb96e3149f68c7e8f6fb189420cbe0238962497a8f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rignore-0.7.5-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76a1cf6072bde20cd5602c654424d4c4c5c3d6f0f9b2bac79114f4bacd7c9a63
MD5 c1dfd8b8e2e5c1157ec5e846a06db32d
BLAKE2b-256 aa5d47455653d904deb8a82d99ae23a99b97a265f2b89885cedbbc8dacb7405d

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