Skip to main content

A Python git library implemented in Rust using gitoxide

Project description

gitpure

CI PyPI version Python versions

A pure git Python library implemented in Rust using gitoxide. This library provides fast and memory-efficient git operations through Python bindings.

Features

  • Fast: Built with Rust and gitoxide for optimal performance
  • Memory efficient: Leverages Rust's memory management
  • Cross-platform: Works on Linux, macOS, and Windows
  • Pure Python interface: Easy to use Python API
  • Safe: Thread-safe operations with Rust's ownership model

Installation

Install from PyPI:

pip install gitpure

Quick Start

import gitpure

# Clone a repository (with worktree)
repo = gitpure.Repo.clone_from("https://github.com/user/repo.git", "/path/to/local/repo")

# Clone a bare repository
bare_repo = gitpure.Repo.clone_from("https://github.com/user/repo.git", "/path/to/bare/repo", bare=True)

# Get the git directory path
git_dir = repo.git_dir
print(f"Git directory: {git_dir}")

Development

Prerequisites

  • Python 3.8+
  • Rust 1.70+
  • maturin

Building from Source

# Clone the repository
git clone https://github.com/cmeister2/gitpure.git
cd gitpure

# Create a virtual environment
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install maturin
pip install maturin

# Build and install in development mode
maturin develop

# Or build wheel
maturin build --release

Running Tests

# Install test dependencies
pip install pytest

# Run tests
pytest tests/

Release process

Releases are fully automated with semantic-release. The pipeline will:

  1. Inspect the commit history on main using Conventional Commits to determine the next semantic version.
  2. Prepare the Rust crate, using the next version (or a dev version if available).
  3. Build wheels and source distributions with maturin and attach them to the GitHub release.
  4. Publish the distribution artifacts to PyPI.

To keep releases working you must:

  • Continue to write commits that follow the Conventional Commits specification (feat:, fix:, etc.).

You can trigger a release by merging changes into main.

Architecture

gitpure is built on top of:

  • gitoxide: A pure Rust implementation of git
  • PyO3: Python bindings for Rust
  • maturin: Build tool for Python extensions written in Rust

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

Development Setup

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Add tests for your changes
  5. Ensure all tests pass (pytest)
  6. Commit your changes (git commit -m 'Add some amazing feature')
  7. Push to the branch (git push origin feature/amazing-feature)
  8. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

gitpure-1.0.5.tar.gz (70.8 kB view details)

Uploaded Source

Built Distributions

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

gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (5.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

gitpure-1.0.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

gitpure-1.0.5-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

gitpure-1.0.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

gitpure-1.0.5-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

gitpure-1.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

gitpure-1.0.5-cp314-cp314t-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

gitpure-1.0.5-cp314-cp314t-musllinux_1_2_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

gitpure-1.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

gitpure-1.0.5-cp314-cp314t-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

gitpure-1.0.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

gitpure-1.0.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

gitpure-1.0.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

gitpure-1.0.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

gitpure-1.0.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

gitpure-1.0.5-cp314-cp314-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14Windows x86-64

gitpure-1.0.5-cp314-cp314-win32.whl (4.0 MB view details)

Uploaded CPython 3.14Windows x86

gitpure-1.0.5-cp314-cp314-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

gitpure-1.0.5-cp314-cp314-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

gitpure-1.0.5-cp314-cp314-musllinux_1_2_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

gitpure-1.0.5-cp314-cp314-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

gitpure-1.0.5-cp314-cp314-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

gitpure-1.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

gitpure-1.0.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

gitpure-1.0.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

gitpure-1.0.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

gitpure-1.0.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

gitpure-1.0.5-cp314-cp314-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

gitpure-1.0.5-cp314-cp314-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

gitpure-1.0.5-cp313-cp313-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.13Windows x86-64

gitpure-1.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

gitpure-1.0.5-cp313-cp313-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

gitpure-1.0.5-cp313-cp313-musllinux_1_2_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

gitpure-1.0.5-cp313-cp313-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

gitpure-1.0.5-cp313-cp313-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

gitpure-1.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

gitpure-1.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

gitpure-1.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

gitpure-1.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

gitpure-1.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

gitpure-1.0.5-cp313-cp313-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gitpure-1.0.5-cp313-cp313-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

gitpure-1.0.5-cp312-cp312-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.12Windows x86-64

gitpure-1.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

gitpure-1.0.5-cp312-cp312-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

gitpure-1.0.5-cp312-cp312-musllinux_1_2_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

gitpure-1.0.5-cp312-cp312-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

gitpure-1.0.5-cp312-cp312-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

gitpure-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

gitpure-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

gitpure-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

gitpure-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

gitpure-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

gitpure-1.0.5-cp312-cp312-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gitpure-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

gitpure-1.0.5-cp311-cp311-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.11Windows x86-64

gitpure-1.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

gitpure-1.0.5-cp311-cp311-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

gitpure-1.0.5-cp311-cp311-musllinux_1_2_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

gitpure-1.0.5-cp311-cp311-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

gitpure-1.0.5-cp311-cp311-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

gitpure-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gitpure-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

gitpure-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

gitpure-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

gitpure-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

gitpure-1.0.5-cp311-cp311-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gitpure-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

gitpure-1.0.5-cp310-cp310-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.10Windows x86-64

gitpure-1.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

gitpure-1.0.5-cp310-cp310-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

gitpure-1.0.5-cp310-cp310-musllinux_1_2_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

gitpure-1.0.5-cp310-cp310-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

gitpure-1.0.5-cp310-cp310-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

gitpure-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gitpure-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

gitpure-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

gitpure-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

gitpure-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

gitpure-1.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

gitpure-1.0.5-cp39-cp39-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

gitpure-1.0.5-cp39-cp39-musllinux_1_2_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

gitpure-1.0.5-cp39-cp39-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

gitpure-1.0.5-cp39-cp39-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

gitpure-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

gitpure-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

gitpure-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

gitpure-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

gitpure-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

gitpure-1.0.5-cp38-cp38-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

gitpure-1.0.5-cp38-cp38-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

gitpure-1.0.5-cp38-cp38-musllinux_1_2_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

gitpure-1.0.5-cp38-cp38-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

gitpure-1.0.5-cp38-cp38-manylinux_2_28_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

gitpure-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

gitpure-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

gitpure-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

File details

Details for the file gitpure-1.0.5.tar.gz.

File metadata

  • Download URL: gitpure-1.0.5.tar.gz
  • Upload date:
  • Size: 70.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.0

File hashes

Hashes for gitpure-1.0.5.tar.gz
Algorithm Hash digest
SHA256 019cb7a7bb9543f8232a082d66c5c816bb21858a9652818b4674f0b66f6f573b
MD5 dd07cfc2dc7fef5da609f30406dc24f1
BLAKE2b-256 b5d613bbcdaabb1f5ad9dc4c143696d9cd61ccfabab9b42ac0b8b3b0e8e5b908

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddb2f54ab0f12a38c66f5e42a264685ca730d157b773417053ce988ca8d992b4
MD5 3fe4ceb8628622a278d51d838b3e0647
BLAKE2b-256 7d5937572aa45d3b3f28dd0b90024fec931b4f92ab915f62f68b0be91c56ba00

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24f28def487e513f2ea08ec7cdfe26e362465ee2ba4c28e87e965ba2f61e85ed
MD5 16e0d21419288b26c1ffdcb57967adba
BLAKE2b-256 f18737ec3ad7d23d698e045cb62ddbda5074d91a7f5115bd4b67dd6bdaf65fd2

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7dfc49ab4d1ded74695da87db620739f1515d123534355a39458aa9edba65b1e
MD5 5b1a88db1630af7b63e7e4c67171accf
BLAKE2b-256 039e30f54bf941b4680b24e0c55aa2b52b7bdd4de3406a273ff18830dead946d

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ea874a69e72ec3ce6a7ed529569310639a9e0e9e5ff235d2c60782798eb94c4
MD5 268c62b153a04a4591f6fc24c32fefcc
BLAKE2b-256 107925a1f90d268eeb7a054fb348da22e6cf2e43d70fa3a21a5693fd314aa2a1

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbede19e730326a804e4e497eb68a2938a936c1e32c93d350c73ad14af8ddbaa
MD5 442afc4cf55b5b05b728667079089449
BLAKE2b-256 755d5f9a016308a1b0018be727fb12eb57b4a308ac8508bde2e750369f0a5c78

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bdf5cd75179008766c10e35f42fcb76d0c29b6dbed10a9ba7c4a46ea3593f6b
MD5 53ba266472ec66d0371c63e7661edb68
BLAKE2b-256 4d808de2f8153fa58e7e54618baec2c7ee6b8891777c8e79a9ea1bf4f626d8de

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11920d15ad8900db894fdf1468e36eea41b2c48616fed9e115a7fcf9e1c51f73
MD5 9aa1c0ffbfb2c57e48796b5854fa5493
BLAKE2b-256 2d7a3608d1c9b3f9d394e8954b1aa4f834980afe317c0a1d27614885d4536d6a

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1bd194a097fca72efa4abcd35e816cb2704e117bbf4244d38d4c04aeb565fdfb
MD5 2fb47323dedcd529a23007c15b390a19
BLAKE2b-256 9c5911f4c1f3c6f9ff2df5ca355d9527eb124b3b14f4ed207cdd95f835f4acc3

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4dcc08d9199ef3d15a0d9d672fd75f7fb25b770d0c2ebdef6863f583a7ae49b0
MD5 a75c69221c1cbb3bf4be0e2cf2e0228e
BLAKE2b-256 ae17dae0df6c3ef997af9ea1fd54ec6974d4ed95335f86fcd2077f6700c9bcf5

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f9b6008ec8d7d7e5ab0d6199e8786eb9a6219ecd0576011ca578fed50a52713
MD5 0a1ecdaf9b4f094c9275432dbdf6d149
BLAKE2b-256 6b04083058bc281e05ccf2b6de204298c9f19802d14a21c9343fcc0a1efd65fa

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da2e3837e1781db432e634a6ffd52d6d2a34d2fad222fa9a58e9077ed27ac1d4
MD5 746f5dd6f72bd52ec215a345dbc272bc
BLAKE2b-256 9d08f5c6e213776ca6430bb12368e82a2b8ba1acecf4a92da6bd28622dc4e7c4

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d73bd98a0310b2422db46438510a92f1f79703cab590a0a2fba1226a8011b40
MD5 c740341b93782b0c250c954cf2c6c3b5
BLAKE2b-256 e4c57f855bb7070b638d421435fe2c8906d3c5e83ed9cea75b5928fe6e2ab38c

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 235002d474152f413e199a3c8bc84706fe2ceeef6df5a2f9147d6b69336d6681
MD5 3be7cad6da014b2f40955ca0bdf5b53f
BLAKE2b-256 59647ccc507bcf005b5e4a86f0d631396cb04cdfb112015a92fac92d99bfd77e

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5aae4bddba71653d8bdcd60e171782f56442d0babacfdcf28f51031b8751da0
MD5 29f34878195e783946d49b5a3caf13ad
BLAKE2b-256 ace8338f7a84c23aa1b9ce2025ff2d446deed62536bd938ef131e1e21bf84361

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2db621c934c4e9b94aac96567e9c08724b9e2734b78a61f476c7ad36a35dd675
MD5 c89615ec1f0b19cc4c76eab488e24796
BLAKE2b-256 828ba51115bb8bfa87beb85fcbea67592d1dad69169c1e20af0276d03211b0fe

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a11bbe75d16da5d6e0243e4af2686ab8ae2ab6775242e86203008dff5d855c77
MD5 52a266d5f8dbded9ed72c48375cf8bbc
BLAKE2b-256 90a6552b1091fc23f6ff891e68f78a5f620f6fb5164f3b119643e82323ba53b4

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1363a5a09140d6fec46c8e92a70750524e82f8e8137735c4ca29ed51b5ba2e4e
MD5 d58282c3c89138dfe6b7131fd7975df1
BLAKE2b-256 4cac1b9400bfc81f07056dce849a854bf781155c3b0d72889f34ec4df57ca004

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 835f89611e4da42792114038f501c6be83825acd8b49da1e1f55f1225935d54c
MD5 ea9cdaed452b0547c5c486373849b88e
BLAKE2b-256 f1dd2a31395da22c73bcd02a6c53ad5444a917e3398efa58a3bf3e1ec719ce4a

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba2e7c24452b930304cdeef2facb33405d72fad9c79bb66f7720f4f011365764
MD5 dff406a08dbd9f004442380002c79751
BLAKE2b-256 b373db623f2130e439697ea9fd065f176e66c0a3c9d7b35962ab46e36a515c18

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce961b9662c5b448b9037ef549704a678fc93a4e73b45d829db315c9c283eb74
MD5 e64c0d8d36605f8361c0e8f2d1b1bba3
BLAKE2b-256 e71b1338b2de0f17ffb10dbf9b74301f99a679f68a7c4d3db266c04766741383

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fea657b1b07046185bdbc8c490da4567f0a8edcb02317a549e8e95b0083640b
MD5 7a6877d63c090ea2319c1b4b411d5a24
BLAKE2b-256 146bcdd01e73a88a476b6fba863952aedc208e33d8d44dcaf726a969ce3b7a01

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a70040bf34753804d143c2565e3ebb16487c9693a9bd0d30989f56600de70b32
MD5 7d12ea9a7d7af26cf4445fc8ce64b87f
BLAKE2b-256 c1cd78e9ae769bf141d4255987762eabccf2c1824d0a70c53953503efa320a99

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 289845d028e96df75fa2b40e77adff963788ec1fde9b4e36eb87c694e19b6231
MD5 f105e072badd3e2111f272638660965c
BLAKE2b-256 e7f8ae7c6e2e26c5519efd74c24f2a00945931072324d1e8454aacc4ee52029d

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9a19cad8008bb66b562ab98243868754c5e532accd9b13558dba979a850bf57
MD5 022d14a0d7e0f4d5b8f35288e98dc625
BLAKE2b-256 3f9b101f3584db7d9f745414f547b02fadf024993a411b7a724b89acc5617675

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: gitpure-1.0.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.0

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c15a20eff7de59a7471f1613d34fc46b97ab4871ae8547e942568b0a2fcb122
MD5 6c345525c1c8669bf6f3363a23b5bec7
BLAKE2b-256 1fb1dc677ba6799214b131d86c6bc8ce35f2a89fa2ff3fbd5d8aad0f6351d275

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-win32.whl.

File metadata

  • Download URL: gitpure-1.0.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.0

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 675dd8fa1818c72e4e607af67bed23751d4cc220ba20c547595e731075f93f9b
MD5 5d832d88a03c2ea3798e56ac07a30fd6
BLAKE2b-256 55f2b0a9e8c427158d5677b67d6c8400cc6cfdb98a37b34010d1f07b9b7f5eb5

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb5db97bf64688551f34fcc52fb3f19514a19877d1572a451a89d70b711a5841
MD5 ae88e5b3bd8766bed5a60a3477ad07c4
BLAKE2b-256 0d0087c3eb1688842a88d4ddb432670b6516e73efdc5d582fc4506c1d65146cc

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eab00eccbf2032d55792a436ecb7a1388dc717f3a0d9810f51e8f6798ae57077
MD5 6e3df27092d3b27c3911b9a652bb298a
BLAKE2b-256 daeb26ea0adfa74c1c2cb7037ae1b4ef00694795ddb2577b90cf9e774661b00e

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22ddf49e2e6653aee868015e54f78470d4c5b494dfe64cf50f63751482b2e666
MD5 b671e40aea42cfe230073555d0388956
BLAKE2b-256 b8e8f0166f4eef68185c5ed82f9a317f1d2a9030edc0ebb4902141c5d6829493

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7603be5bd4a4a7af609db517189ff24faf944d81ca473370cb4d1c926f7780df
MD5 7d9952a02f3d2cf2304b493f0d62c415
BLAKE2b-256 9a2cca324309f8530b778c3b1ecf9fde70e308358ec067333cdd80bf5529072e

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b426198d1e705760c5fe46a368a5729f3e6555873fb893c9e91f12685a1b4779
MD5 d2668b7ca7b7e475995d14cb73ea91f3
BLAKE2b-256 da93a3afd8bd8e511745007655a3e63eb39d60829a94013cf0fbcd7a7aba25b2

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c08c3085c5be3becc601ff8413c0c269759d490732032843212d2fbc692fc9d8
MD5 3864cf5d85963361780ae506b3ecc9d8
BLAKE2b-256 44082f6c6b8c5f636d94119443d3b543d4bbfe522e528793e973ff6826cda850

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad84242b50053de480e754b9f64b941419e78c79a380d2753c6df23ca69c6c54
MD5 d36d96e828aa6226d32f964588000441
BLAKE2b-256 c08fefba8147c5e5f26197b3e3134f3e8671eed17bc20bfe9cb6d9f8ff71c896

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e2f181deb9d156b1114cfb34d87c8dea6c4059d28c298b9c855daf09eaacce1
MD5 5aaf0cbf219e5a5b5a34d059ee54a8c2
BLAKE2b-256 7b406fb7697c92c0cdf0c52f8b887d1a767a85edc85b90d3983a07172b72243d

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba4bd1a13af73407c71f303ede138f08b730d4a58bfb1262c9573f10e307a052
MD5 3ef1a849444818ca8ff4718937bed905
BLAKE2b-256 d3f828764d6142a8fcaa1b5d3aa8707817ae85061a1235d10ce41315ec758cac

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bb2bf72f3222cd131976a697eef54974557786c147e91ffda3daba70ff8698b
MD5 50cd75dad6976609a35a1ca0307cc97a
BLAKE2b-256 a5001faa9b9d763589ee9f4f998a999a78ebbfdf7967c7c73bed7b1993c9495a

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b08bc9391d279285dacfa57d22a1ccbe22f1863fd263105abc4bd7525849dfe9
MD5 df4550fcea844cf07425fcec7c55fda8
BLAKE2b-256 bd4c2ac988b1eee8175200036f199a92d8aaaec1df4d2c97912aeeab5cd39fe8

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af253d632bc7b87861ab34d4987a539747d7050810e771af50486e6088c6d592
MD5 a8071ce155bcc72019cb5f587ee95ba8
BLAKE2b-256 7e670fbc11ae74cfed96f9b41ddf1166fe540bf75b2e7665624a82d8bc599bb7

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: gitpure-1.0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.0

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb46df89b709bdf263d7ff5f321fe4875e0dac82f4cba59e5a9f9dd2abba0715
MD5 e1dc5c95b29a358ac964676744b9979f
BLAKE2b-256 1ccccb266b1961f85c15e29dfd0e17f3324a3857f954e55e8f9eafeafd837a06

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f6008b3c6f3ba119749cce7cd213c195e13d988c743c9580ac1250f943cf7ae
MD5 fb33cfe75ecebd48e10878b8cc708dde
BLAKE2b-256 66cbbda7fd0dff3c60d114aced269fa93dab21d9833a4c69f4ba9345896af210

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a518f1222fdb34d305b75caf3f605fadcc6380f3dc3bd7deddab9d0fc78fb33d
MD5 f68eaad2b08ef48e52d30078de468f72
BLAKE2b-256 0141f7d84c6912cecb638c53c2994b6deabc5c9761af4953c17a876d5bd2c9fc

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ed0bfb3bb303568d2e64701189fe48fc5649b0e228377b6f26de2f4ebc021e2
MD5 fd401befdbc11a790d42ff9ac85161b6
BLAKE2b-256 f981673a0d31e5263a8f7b5cac0a8c8d2a7b0d7dc80a7bf2fba8a25388facc4a

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdb47b10745ea2d113d08ff44a664bcd2374016c72f8e3a36367014fccca4041
MD5 b0fbac81af5977d033d351dee21d378a
BLAKE2b-256 002da0b735999e6a9c5345ea330359e3acf6fcf870d4d4d731051add4e13f42a

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f2049ad363719af909b35d19e13fbc1ee2742a830240a58b1999fa3269d0a18
MD5 79756270e8d5f6791889cc71c00550f1
BLAKE2b-256 02daeb18177654a79ff57cb0125625be50554886d2ed0093d206b50792e760be

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ac59c86b22861fd194f6f216f38b01bf9198d68d64c8defedcb96e1831e725c
MD5 46ef52482d55534df5b38ebe4b974831
BLAKE2b-256 538bdbcc3783a7fdaf8d87b1e6865a5c766202371d8a185be2cb624bb9d509e0

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63a415e920533afd4c927b4dae3366b2d3e5a6069cd35e56389e649cdf8b3c51
MD5 0755387bf2c0f9ed11ad5c23198a66b4
BLAKE2b-256 e4d47799eecc431a2877bdcf3d4b6f30881aaad029ab7bfa1088269aea744ff3

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91037dab820797786ef002f5105a73be67a8d3fb3664d92d25b75306f5c4715e
MD5 5604978e1ac5490b38333f51ca6d19d2
BLAKE2b-256 c60d60f9579dcf95be54e5df45c8ce455c0b18abf1339287b2e0a94942ace568

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c2c5d21d779cfd3566a60cf2a9788599b46cb63f562e0b4d7e4ca53024d3c36
MD5 6608936270e7850406197cf9a80dc581
BLAKE2b-256 e25f42b86363766b46f0fc59efce981cb3a5a7ef52da1f3de80ae49ecdc2e3de

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1d670fb9b646d09c618bb935be47693104203da1e332f3b043f4c9f7e8f5147
MD5 3fb697c5487b4d2d0cac00ccd8560d4b
BLAKE2b-256 3619310c79b214264f983591a6720ec8a61d9dbb3ee0b5b883c315746323a9b0

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49f1d8746666299cd73efded320590ae86e213cbf5091d685f97a4c842470165
MD5 39e48ee862333c4d6d03b84f9e61b20c
BLAKE2b-256 ab5f0911ccde23dc112318d2a58d625520d049df20530640870612ef28dc7041

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31da977d094346204e8e5c80b7dda7f9875c0230bd71fa4f2ebd49161b82b7d0
MD5 94efa0d2c8f7528920410c0b78a1bc78
BLAKE2b-256 7b95cabdbd6b333712c0ed4438cff6c2b681147d499f97a5ee372695c2005056

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gitpure-1.0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.0

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 51bd3e2c5f7c7877d07b58b5f2859d26b1c71ca89e5c7e2af80bd67512383ea7
MD5 07b4e1833513ae696ef49c826a0c576c
BLAKE2b-256 69bb9de61bbe22c843cd76f71649f6808daa7a2c42b829bdaf83c9c85dba508e

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2abe5204d59052a926c265e6351d5ffacf5b2a486f6f583c7e897e589b80c9c2
MD5 1e35cf9b953b53547aa8da7984caa36c
BLAKE2b-256 73dfc2088dd3c7f259f7b23ef1633f880b2a532c445802c90509f335d161fdee

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef9fb9cfd6a08da4be07c058c01b196163f06db709b923990e593089eb344bbf
MD5 8771ae61594359fc6618e6223bcccd9b
BLAKE2b-256 16a4e18c82fa77820942568ddf57df8509088b4c9b64d64e12063aba942ddef8

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 197a4f41c0ec4c0aaa2e83bb610edca130d23439e1ef916a54e215d3c4f7aade
MD5 ba3f46255574ead2a16411c8e0b531aa
BLAKE2b-256 d356cb737ed56110d1b31d14bdacc2ada232243cbd7039d005320c5907207f25

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bb535ac77d20eb6e0c0b24ef655b51113db982588455939ca535cafbed80af5
MD5 e80f4ca1bdc704e19cad3dd353443daf
BLAKE2b-256 da24ede116c402aa728c7fb5b4d1a1a625904b3c0017357737fdafd5d5cc8f51

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd71097ba5fe6d2f4fdd66c91231a3e92aed68cc6a9f5a24fcb5c277f8030e41
MD5 c333ac28c44045d2651cf75efc20fa12
BLAKE2b-256 e21f58dfc188c6defd1f1438e4c16cdf07c3326774b8c23132809be65282c900

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8b11b7336cdc691838d18d3724f2436ffe6a175580123858bbf6858b4fce21b
MD5 9684434561da185caefa9c26b7a6b82c
BLAKE2b-256 b7779451a11e943fc20a489ac9339ddc51dcb6052d95dc0afc6b8172555696b5

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4de742f13fb4fc9535c81a3d292b4685d3be476dc5460cf409fb1baf1d13f60c
MD5 046c20204eb6dcc96aebd0395bd6bcdb
BLAKE2b-256 9cbaf16cc902188f20e5fe276465b1928ea7f061a4f218b8644dd63ad6e05807

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7dfb8ccacb2f4cee8108076d46edc2f868af741b3ae3602d0aa4ad20b86a51fe
MD5 554784ef6a94d01bb21d323a0f3ff4fa
BLAKE2b-256 6780821971d744f0f812f2f94d8ad165b91e6d238be3eace4a9c735e3613051c

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6df87de14c0f5ca0cca918c3d21b6e2cf6e8c09b76b0111a6efbe8eb262a6fd7
MD5 a385cbc7aa845258695be49c792d8e82
BLAKE2b-256 eac78aed5746933bd2f3da0defdfd32445421eba1009d060df4d115ec0df8671

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c886ec58a0aa227ab80965359eed2b59bbf6087559044cafd4126529ee0775e
MD5 40c7ebb4fe289c08ce4b1d3a90d7e4b2
BLAKE2b-256 b520fbbaeda1a7b848018c2a3a62ebb4df6f0d0ec1326a1eb427c51fcfe53c21

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b94678d3ad9d4b4661ff56bbbca056190c78003e6a5965f0dbc2a93162c064b0
MD5 775ea01d028d777e24a6ac670196306d
BLAKE2b-256 55aaee98039065954c4335b3e90bd62b0a995c22d5244df1420e02969f9f42be

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 22b37de98a9335d24db3ce8bc6f5c4bd0576237c6f4cd43362acbf51e4433008
MD5 ece53cd0aff8576b88f9529dcd5bdf7e
BLAKE2b-256 2b72f5c6a9e0b64beb4f327566d563f442c981fcc225258d7bed298f6bce8b21

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gitpure-1.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.0

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 44441dc92ba1cfcbf9d5f9416f46c34a7b3e96dda309532c9df922a470c1312e
MD5 cfb8f7897cbb53ee4a8c93471376329b
BLAKE2b-256 e63cdcb13f9a6cef19258f48e48febe070e1152f3c277c3c920a40726f59e362

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4d1f6fc46ccc67fcf0219ed298b1abc98478a58436f4715f4050284e99532e5
MD5 7eb74fbbbf950f57e3468a33e2e63457
BLAKE2b-256 15037957e718380f275d02724eab89c7f14c362c83b16bade9fd53243fd42737

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 171e8d051aa88b66626a65990afd85105ca06b726cab8200e0ca83ad44d0f2ab
MD5 5e5e2899c9ccc82cb5b0da240146c494
BLAKE2b-256 c295d8570260d3d81ad20883f32d139f8c843ffe511b7c3061c6f9da732e5771

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 89c93cfdf71720888fa4691b8a921ead3a04b3fe35bb3abf1e8b427b95749efa
MD5 d6188c988a61cf9d2f59044b58c3d9c5
BLAKE2b-256 1ea65fb0aaf259e08b3e1fb4918110666d9ca1091ac99b2edf3690d00091de2d

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56ce534f730b9d7385200310e568e0127ca6d560a89543445ea8fccf55860d58
MD5 f3a0e6b2be84cac5ab6c05790cb11c30
BLAKE2b-256 36a40b0b7c9de88f45b74e63832867dfa596f23b65c72c68b15e13f3e821c28a

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ca73212833221dec44d08d258462ad200f9538c238c84186d6e14fcafb8baa8
MD5 06e3536ea8c51e87a32b29c9b9a1dc7a
BLAKE2b-256 1a6d4c3455bf06dec0b18f48debdf977026d046e5fd9d5e133eaa4710844f877

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec54e8c9a58d4b9b7240c8166fe871989cd6f7fc00be396d0acaf779cf24d41b
MD5 2c29ceee93d9b19b100cf6c140c78c29
BLAKE2b-256 2603ef6a15fbec9a96f34b8fd78b1625103bb4d5c6e58d88416ac9ee98241556

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09f53826605c18d67dde4da41806754b4f196a9d76e6ea5a16964c9b16aa3601
MD5 227d57c77a2c618632a2f21300256f77
BLAKE2b-256 b4d1775fc384229598d33f262f283f5fe1d88c936ac0ef7310aa8813dd901625

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29bcee2d96f0a30ac12e30acd03adcc2124b6f4b8f4b68515b49a280a4261eae
MD5 21971d5741244d0e2974b87d954d25cf
BLAKE2b-256 b274100cb7175396ac492df16327f36f4efb0bbf8ef7672252531c7a756459d6

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 318733d78c7617e58e58211449918af75d53c0c5502b2c1c40e26ddc5a577ca5
MD5 e3553c926f478d7b9a604c28308d6455
BLAKE2b-256 403ef0dff82377d40d767253c2e1afa475c99c6b123f6c7fdb9dc646cda17541

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34d9c5cde01bf04f02ead2b570938bf1869b2304eee246502d6596fd0bb9b12d
MD5 2ca99dd99087fdd1e5a2edff34e7c39d
BLAKE2b-256 c26fe4c59ee2fadf037f9f5454b3f5bc794b46930dc774997dae5db7722453a0

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b40703182aaddc1238286cd9410e35d2081b04e8392c90513756e8e4b62f70b5
MD5 7d522fc0f9f6f03cb44d46e6312df546
BLAKE2b-256 89d0daa44275b06c6580268e294551266639c7f82f3078d240af79cb25936279

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fb562baeb733ca26498b3c69a57dfb2b277f1b5e2ac8be276c78df5e65f3b47
MD5 ffa0d144cabc8f987cd5f1b74dd231b6
BLAKE2b-256 1f922a7ebd6c97f8913b1afb35fc021a7d1d72b4d6f75a90ee8c4579b91d8435

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gitpure-1.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.14.0

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 352789bd268301d6a99cb7800422ee2e4b2ab2d6eb6d986dae7db7a5c3bc4469
MD5 bda8bd6138d1f72455f9bb8b4ace7f5d
BLAKE2b-256 c47a3d9437846b92985ac1af741df663217af4381131bd3ead19cf0ebe81d25c

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be33e3ada125b3562eb1019d01229f5324910d8fe7ef34bbbce3557aaacc710f
MD5 e552c14179efdf2e5586d8a4be8d0377
BLAKE2b-256 0319e8fcf55737fa0a4cdb0f2fd62e348bc8b7709f8c8bdaf1c407c2207e6391

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 748fe57f02b7ac4f7e62db2fe9a08d46d3ae98a2beb5d551fbf5077485cbbb0e
MD5 7178de9ab03750ecfa68bda7f5f6c565
BLAKE2b-256 30a888462ef54bb89feaea900db5da87762408669834608c1c39d257191c56da

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0fab41789814c2193db4c90212042e8fd3415a557053b778cb828e27fc849a0
MD5 a28d6e41069da2a773d6c364967c54de
BLAKE2b-256 8ba68dcf3fbb1fa31899644f8b0d5c66b25217bcb59201175c7c66263bc0525f

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e86d89ca71d253b2f1a8f4a58ecc403ec75ea8ecec142a8ae9054a1240085b70
MD5 a02fcfb34915ee3a1e9ca883d9a3c7bc
BLAKE2b-256 223c49ea9eddf31ae8c5eef26defd0cd00605bc06cb1a4914a6cde546ac05874

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd7bec46cdb20c30b93c4b9c02228bacb7f705e372cc51b944d2719854ad9a59
MD5 5cace216e407ed80e427c62d8e7e1049
BLAKE2b-256 e299abace1d62456642f5b3d427a225f0a9727b0f1862c16b7a1bae8f9e1a078

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e960b4f0204e040b8c8e7c416b4ca2a56fa11c9cd1be35a3c8f33bf224d778f5
MD5 f680840068a051e86c355d6c86909b82
BLAKE2b-256 6dd6339fc3bee1430cfcc97d3950bfea4af84d9f58f02ef898b6d18c57a93ee6

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4adc200f25e5b4c391498e46cee8eb1c01528eb53acc96cdcc99ec386655a52c
MD5 f9b838a5144e2f5976e39638de67fa3b
BLAKE2b-256 ddaf8c1c299b390527e1f3897386cbb78cbdbf82519264b4ab02a8f321ef4b94

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a2d4ab2b3a60897f36562d6b30ff896cb354238e76de4f7650142a94ec649cc
MD5 6a1b7e9c6ab702d07fff789a555fa623
BLAKE2b-256 2a5c888f838f60bbbb85ebb0411769504789d12466b0276f7a0f248b5c01817b

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5e65452a871d7567303e8667adb17b5c28a078fef98ec08ca6b8d8621dcbfcd
MD5 8d302504e55ee25577756205ade2e348
BLAKE2b-256 c40af54d9d5176fbe7c352ecc5b52953c8aac0de377317eb42132904be62da09

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 193f69a43378f40e42717af8621839640b5046169531f81347f65f905aa303fb
MD5 cda38d9849086f5be4e4b042ef63a203
BLAKE2b-256 193129e66d18b085aaf1174ef3ece14986e903035724f09973b21213c1725462

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2993b86cd654d51d21b53907b4ab0946cf5cc781f1d777c591c7660edb01be9d
MD5 96a869c013ec9076e10e890e72f46dc8
BLAKE2b-256 0d387dfa27c008466683a6ad11805ff26ea9ee62a01865918142ffeea18a53c0

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94d7aeb29b54057ab131e73f77f5c76c30dd1b82672638f7677c006e9aea0280
MD5 d554af934b6e816588fb334cdf76be53
BLAKE2b-256 b7c17e5993e846234cf2eccd77620ee9b16ec970e7dc5d888ee84d84cefe8aa1

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6465e719eeed7473ce3265fb3d54360d5e9d7423874b9693d06e17744ffb46a3
MD5 6640d6cb083acc722dbb9a455ec3f825
BLAKE2b-256 020934aea618462d3a5d5400bd6ec1d76b1bb3661c2373a5c8bcee2a4dad68e9

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5506ef5df5a617111e73f6169cdf11cd09f1a01d0d736e00d730533e856680c3
MD5 a0e97dc7c3b25baa3407a877dd565a5d
BLAKE2b-256 305656e0caa6de8328bc3d33efb82d1b6f31959ed048292fc6cb4b3ce0ec6d75

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfb7b12a1b5fbb8641fb6652afda3f64fc87380908027e83adbe46f0baa53798
MD5 1e64845e05942b83c4cba43ae1bb4f9c
BLAKE2b-256 e22afc4b21b1bfd7ecd5bd27427a1a74abfa714d7937955aaab5f238e740533f

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57ec701f34619bd8b1638e38fd94205dda348a7255d77f2d893dfffb56c326fc
MD5 391786f809e04e217678007b8d472a69
BLAKE2b-256 d12406fc2dbc2371d2380741696c4d7b59f14356372f94484eac020a1cc01b29

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8eaba42631f7467a564cf927db106f9d8cccd56895122b33a6076297589645ef
MD5 21c6c3223399c385ab8af47fe48edd1e
BLAKE2b-256 c6443d742fddbb70e8f6d2a66cdc441172ee0e3edde2bf0780994455106da67c

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89e9714bd85b666b8d383d73391315b35f16935d644e1b4f3b5f24bd7cadc50a
MD5 4ca959f6f1c307524f5d534b5a255a61
BLAKE2b-256 36ed4b0cfc93b934d0163371b92a68edaa5e32a892b19e33ee4ec615ed92a6b4

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4e63382d4508ed97dc100ddfd8b3e8798257990ba161e4112c646c4e2055bd1
MD5 9957c2dab64db0bf3f562aedae5ec9e5
BLAKE2b-256 cdb11c32ec969bc0571a009bf621339da33eb733cecd7f08edda5d8d494b6f5c

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d3d21b9c7ca0b390e0c8485d999f551c1aa80b075c6b267e5a0161b12999aa4
MD5 523813956efafc12193951b2104d8aef
BLAKE2b-256 89821ddb234e98e386f9e480d3fba493a95000b60765c8e8b23dfbcedb347b4c

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4d1883af818969e3d120e301dd6869d4114419b06d2cec7dc9b11ec6d52b710
MD5 c295ac1229f25b53e6bcb27e70590be2
BLAKE2b-256 13b312fde0a8836413bf25ac2369d7152a162284102f9a6a88861896b9eb7519

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0415b0a36ee1541e827fdc2b6e174b75ce879e2397efdec8eedb5eefe49c0330
MD5 59bcb4d00d32561c7d9d1b018db94d23
BLAKE2b-256 8ab66af399a1af9f996488fc84c7fe0c616b9fe5aa82c3ff745374369f276607

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f09538448cc52e56681cdb4e88015b2e99e827a70d6c68a0e469b6f1b4bbb2e6
MD5 7f96782b24ccdd913396ed6ab98cb782
BLAKE2b-256 3e2b3d78a5f9d2b6f72aa42f86288b9557c6f192bc537153f1d0fe94722a55cd

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbdb6f20b87511774d7723571d1eff44974c27b75ca4ddb03f5bea18e67409e7
MD5 8c2d20ac0ae50584975456ea8ffe0caa
BLAKE2b-256 b96c794286631396db0d28062f8782b8a813ba83dc7bc854dba8752d3c96221b

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c93102af6b875122456961e64e65ef88c9527a3fd9793b8aeddd0eb1258abde
MD5 ecea5d65e75c940a3190ec234084edb5
BLAKE2b-256 b41d646ecdf9986a14c4476b99d16756264e249957c169ba2544aa73bbb47419

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78272b8b8de1ec6795c35cda2aa467c4fd50d3bcb30c5f24eb53df14405a90b9
MD5 d447e3c5e88a20de7f043910799e4d2e
BLAKE2b-256 29fb045ea00c3ba55679d2cbbc33b4fff6a19cad1531d7625e4dc00cac9f8350

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f17b9df95e8e427fa77ada0dd45714b4a1017815c201b1782c9a1a54a6b567fc
MD5 b86389856e01666138ecfe033d4cee37
BLAKE2b-256 09b5e1480f861d2ddff0c10856f0dc3cdea4dcbf975a53ad266867f1b95ac50f

See more details on using hashes here.

File details

Details for the file gitpure-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ab49f64f4dab1732ed983c04acb2b7e82ba8dd4ef55a2ed030b06f4d838502d
MD5 eacc836941f56f12bb1ba84e61f8f90f
BLAKE2b-256 29eb75e2e9ba13601e3cede5be9853900fb09188fcb1c09c6858cf1827c9575a

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