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.6.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.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

gitpure-1.0.6-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.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

gitpure-1.0.6-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.6-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.6-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.6-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.6-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.6-cp314-cp314t-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

gitpure-1.0.6-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.6-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.6-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.6-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.6-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.6-cp314-cp314-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

gitpure-1.0.6-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.6-cp314-cp314-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

gitpure-1.0.6-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.6-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.6-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.6-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.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

gitpure-1.0.6-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.6-cp313-cp313-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

gitpure-1.0.6-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.6-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.6-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.6-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.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

gitpure-1.0.6-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.6-cp312-cp312-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

gitpure-1.0.6-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.6-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.6-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.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

gitpure-1.0.6-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.6-cp311-cp311-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

gitpure-1.0.6-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.6-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.6-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.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

gitpure-1.0.6-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.6-cp310-cp310-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

gitpure-1.0.6-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.6-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.6-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.6-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.6-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.6-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.6-cp39-cp39-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

gitpure-1.0.6-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.6-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.6-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.6-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.6-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.6-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.6-cp38-cp38-musllinux_1_2_i686.whl (5.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

gitpure-1.0.6-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.6-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.6-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.6.tar.gz.

File metadata

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

File hashes

Hashes for gitpure-1.0.6.tar.gz
Algorithm Hash digest
SHA256 b6d24d998f4c2639001db1caa2836db41d7157a2febd0ef4ec3e5731b8ee1175
MD5 30272d31eb1627030595e4689bccf9f1
BLAKE2b-256 674be61c6d167b93ba5f26f4d05fd135033e6d4f301844bbeebe8a45a633fb8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6158d14f5c6b0f56b90fe9717e1689ac93230fdd98656f40d528451e1226cf51
MD5 7beaeafdbb1b61311e166ebd4b70071a
BLAKE2b-256 82f20a7a8792ea509e36f78d3d42ac52abd0d8e8967b06a85466cda7af90e181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0820c9895ba5990475827c670cb9ea50d75079dbd9da6a798f635d6b56d047d0
MD5 e33816024f108d7cda67ed1819836991
BLAKE2b-256 7744c6b5ab132d09baff3a81d17575282dba162f90a98397e2c854a200607e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05d51593e7816e4aaa1d34555ae8f275a1dcd9f4c6d9655fecf911e2f46305cd
MD5 efb28f0ce1bf219121cf0df69e6a2744
BLAKE2b-256 9b556e3cb7c115602245597f348327111e868c992d11a623ba700f63cda9cd14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f535c1208af69af322137ea9758f2914852561562729c6425c848bf8ed5af217
MD5 b803fd25cd6cc9a3e26eaeca7a5c03ea
BLAKE2b-256 bdf3ed9188cf202b7ce047beb484d122a8b222b6d5308cad53ab86af81052edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1033e0517bc941916cd8b02068f87cb8004742c38e560d042f8578757028ffc9
MD5 cf37b405c2a572c7e99c777013f5e228
BLAKE2b-256 444ea3d16a6e069a72d2938eed90b46e4812ec9c0be4fd60d8f708faafba6ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60927773ea926e29eb43cae0a2303df7c5d80c7cebda592db3aea8d3443624d1
MD5 293d3cb691cb50aa61ae28b3311a69c5
BLAKE2b-256 2387c5fdbfece1ebfe25c70878d06a837a2d86eaa1a98f894b638d313e638cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9737a9ad2724a803d3b0255b37d638c82f3ce3b525729656acf02eb9ca1cd644
MD5 7c80647071edd8cd472441af44a3fce9
BLAKE2b-256 b552a28d35afa650bb97f46eb9e7498ecea141d26622f8088d0573428eebf2dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a69092a1815a7b4b272701430b2e76b3af2fca5484b6a06eb24a6cd806e21bbb
MD5 96dc4819b851f5f1647f4bf4b1cfdd28
BLAKE2b-256 c517841a0860ee3695d057424414b70de78361fc17a62326a3e38f660d4ee29b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a82a0b1de87577769f8acf987c00a2c9f12bae711953127800af6bef3bdc4995
MD5 806d95576b93534657ac9f4665d194cc
BLAKE2b-256 81998c4299aac660051e2a2d2bf19a4d5298b73ca682b55570e2c11226d25f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 345e0cbb6f2f6482690571a1065bc29c1239244e7b171add5e3ba2f066b80a4d
MD5 fc5bc0ade4e58709c868383ce31ac77f
BLAKE2b-256 8611cb9606381405c3692eecbbbfef8db5e6f0e66a882722b181d367afcd7694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be2172c75e4b28677287bbfb37ac6001acce38ee7f324d7106c9743e7938d972
MD5 caf44a6bd9747897d46a876941938111
BLAKE2b-256 7c2f82dc65e331d704288cb6916e652a28f62ab8f4b5baf3bfff4c6d67753d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e5ae5c813b99527052c3971ee18bade47192381456059bb904b72a82bff7a74
MD5 f94812a39232e6412b72a0e9624f05ec
BLAKE2b-256 5dcc20584d1410b66c45a5fe42b6aab0e6097c9a02388eda14f2fcb7fa5168cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bee78644f837a95fd77c5db4705981c50038d3aaabe45b3653f93179cf2dda5d
MD5 159a73ba28bc96a7d04cf8cc3bc24217
BLAKE2b-256 dbf85161d1815abc1d8bfddebefceca9689153167b26999e78e385272e316723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f8b13e977828b3eb7d72061a7365efb454b0387365f684f0b47b4f3dc92602cb
MD5 50e418367d8cdf4f99ed6b180e28db22
BLAKE2b-256 cd00c089ec77ba54c0119dc75fdcf4f1fd1ed4cd7b3a11e88ec8afd9b523afe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f85cb83baa78e956e77feead739756363e177d595386564d62763089b93d862e
MD5 625d800afab5d2c3fe65d2b46bfef312
BLAKE2b-256 4cbaa8c15d8e6e38a7d276f5d4653821664fd0ec45e4835bc3a73b4d1e01e66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15a8a34e7cdb5fe426772c3730cccb1d5061a79340f8111db7e15aa896ea2263
MD5 dd297ff5fde99f40d2e884b8be657f49
BLAKE2b-256 fd0d7c18ee0489e1a52906149000d8f11b0a902b55edc5bf7053c8280562c725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c31adcd374408845510d7a16fbb1a47c8a9775ff14db815ecfa9192dff6e3dc
MD5 25e9775a1a97df95a710b49557cf185f
BLAKE2b-256 276f86b99139820f603917c757ef3f7aaca736e55eb0d83a493e4dfa48a22d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05aab1eccb09842a3355680330f1657f407238aa6b750ae67a814ab87ced06a6
MD5 0044248d6cc68bb284879f9669ab6819
BLAKE2b-256 429b04e7fadfa2551e44f692b5b1b7198d97f2ba0ee17579b131b7c060d0ff26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6e00fec875df361c3fd9a29cd0b951744e81fb856e86b285fd15c105e9f25f6
MD5 d3855b42e16fa5946b1fc81559e8467d
BLAKE2b-256 9afb73b5511882b9cc95b26b95026985cc4410f60808813f8a3c292450cba493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c011cc74b2a1bc29b09841a992cd84313983642205bef44d9bc5e019c95ad846
MD5 b533ffec32eeda3d64561232ecbe3f30
BLAKE2b-256 cad8405ebf8f0bbd92d85eb2e8e4430d0dec396273b5130056c20611385f72d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d5f2f03b66df17c9081667c2d281b612f4946b9f32e36ea79123e5e9c781d65
MD5 ded48dcc09cac081cae4c17ee7d9b84b
BLAKE2b-256 d3978b35b23d19f6b8a0835a024c68ee2d8f96d970856d3484bab4474042f747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6b8001665cb278d0c7d0b153a57a3d123bac2f38e29ad6b122202ddc8f3f33d
MD5 901241b73fa70084356314a54b61a6de
BLAKE2b-256 2602ee5907eec8c108017246683b783b6002cd0468afe58af48ec39d60a00202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a94d61bd91f0c40434b46d483e9ca4a5ae4870f49a532bdf329bc05a5f1b447a
MD5 6737eed5317c5eac492ebcc56f3c508d
BLAKE2b-256 cc961faeb57d8e08a09e68ec0239be742a637f9d6f7c61289f322116f39e8a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b5e6e431d18fbe46d815dd499804725a6177173bd5f2fbc6826748d91ebb465
MD5 332cf9f3d7d0315dbfac444a3dabc23b
BLAKE2b-256 3e897e8d4a762ea2a7ab1d9ac2b44476b51b919e4d41ddc21ae1201cd106cf4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-1.0.6-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.1

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d0b20b89a539938bb9c4e9ab60fe141f52db47a6103fbe79f61b10c102f51ac8
MD5 df4c2ee6740bff2ed4e0c3b8d1cf26d8
BLAKE2b-256 5603da1c4ca84c0e05c7d993a3e35df5b39494d0c064f3022105bed2b132763a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-1.0.6-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.1

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5f35e2be9392540374069b2f3e82b5f230de813c3619240db96f016eb86f3f10
MD5 b072f794f417c98fc632278d2b278267
BLAKE2b-256 58a608d1077bc0f7f6bd6baba5707873fb5736e08e92080df99409b79b1db8fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24eaf5cf076fd46d26c4be3287e407bcee0aec2ec6c4fe8d33b10a8fd7a03a9e
MD5 0486358b762e4e49e7b901bf875b1cb9
BLAKE2b-256 b83bd39802a10d62a64dbf11d3724896d21e9c67331a4a02461fe3be5b27d203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea3f74f4d63cb45eda569fafbf4de126540a8ff5cfc13e60520e41bf530d7973
MD5 a8a0b2b7e3b6fb47370b21fcf1a116d9
BLAKE2b-256 919edc200c30c28f5a4be2596c0fb8ea59c07a00fea0c7903a888c318aeeb79e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 798997d32cbda5c323357be4d533c932477d3a0148517f419535732a81184603
MD5 0573c814fb2ecd1140fcc7adac10f180
BLAKE2b-256 96b1ce04c3d8edce9f6a8ba8fc4ff3955d8a9f3fc3f9da38526b87b2d32a7327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5596b5cc34721d2ffac7ed75a3fc952923b1a329e888698d2178c177271e6292
MD5 1dca4b77a06491ac16cfd2443b2d1621
BLAKE2b-256 db2324decdd3913611696e051a23bcf134e5f34a59bff79748a75418d136fc86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c458e9694d796e942ae1ed893c83b5217c001501e5ceafba5118b50df19c391
MD5 05e4d12520e49e77f8dbc03156dffd75
BLAKE2b-256 1113a0e302da62fff78cfbb1b88c2c96e128900ed19c8bc56190f5ee6836c98d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0eb53acaa3724e6ef0efc9a4b19f933699688dfa5a7ca30439e19c4870d63ad
MD5 21313663f10b9d62f4b3359dd6986e22
BLAKE2b-256 f60717d1e1f7dbd0f7748e7edfb0a9fcffaff455187330b7198cffcf7668bac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42938bc948267d57b8f03d01af554c962829738eaa1af47c6288ca8df5e45656
MD5 29e9a261f100a42e6d996a6c13989b18
BLAKE2b-256 8cfa75ea09d4019fb0f4f8a21a60d9337f99a671b458a61f2cb6327ce208240f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 042f58aac2d641531928bf3dce248c307414ffa282e886e750b848a787dff448
MD5 60284c218ee4766dda63a7073f365447
BLAKE2b-256 b0caff608918d4fd565a786d99a1c9fa65a4addd284b4e76f4a67037565a4176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bf30435249319db93714eddafa327d4de5bb74725b385019943f7c9c0cc0075
MD5 d4d57c4d65ce86a4b4f52b2ce003b772
BLAKE2b-256 59aed550a1613c0174ae8b7fd3ce1b90ad8c2e28e12f01e9de71dc8784abc174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2f78f5f3230946399e2194694a4b094725db78e187fdf35654bd5b01172c4f5
MD5 aae10d208d9d346d44842c00a16d5be4
BLAKE2b-256 7767ed9e78ab819cea1da802f7b42a44a8a664b205c60f58fd010620f8bc4432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba589ea8b51cd58a3b44d64b028bfa21d1ad28f7967fb1f14755e1a64785419e
MD5 0189fea28fde5743d63c923e57300524
BLAKE2b-256 c058ec67e5640270c9b4743800782ef17636ec81b16526148002d240377e005b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4dd9c3ae25c5cf49446f688f2e0f1137c08decec8a9bc859fd3c80ec8b37ce57
MD5 5e53500d197c80f661085a73c7223360
BLAKE2b-256 52db6ae52e0ea249592ed4c539c336860d5d15b3b2753afe81aa0bbe6c973fe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-1.0.6-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.1

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0284f53599c5887af4566ac92094457adcbb4c28e4f410ce75ffdb46c2dc98ab
MD5 d5b396681b7370457a4ce08ce0f0019e
BLAKE2b-256 2e4036c4cf647072a618b3bfbc86235f7f8d2b8cc519702ef272bd36a1fe1657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a35cdde3539167d4a286e0aaca05b83ff2bb2e9697e8cdc5335b0ad156eaafd
MD5 022050a17149449349e394a51a926e3a
BLAKE2b-256 cc40dd39ddda02397eb93d6b6f3fa5aeffe430bd0478b7dad3e943adbf64e1c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb50a1122e81bd2de8254524f592cfc379378a6115e6d5928b022d5292c2ab46
MD5 d462251637cfbd3b820da9f4ef51c8ff
BLAKE2b-256 a6b96ff0c2bb58ceecc09848d3a09ac9f012b1a8beace6d90660f56385acda6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 512370ccd0e25d4cff3a20b0e6109da199f5bd0c718ed738280a35cb07dcf0cb
MD5 05f0d8b8fb95378a8f1575b40c72f110
BLAKE2b-256 7e0fc6bcacdb08fa07020e55128eac16dad018d00be0339307f63207110de36c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 865213d12ad0dfb0205cd344963d29c8a4afebbe9126e1e87dca9e3a50de333c
MD5 e99ae5d7a68ca4e948de4c0b26753205
BLAKE2b-256 447b2578bed500507d925ca6c1b3e158bd2b73eff681c08451c8075f73536eab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08affa843697919fdc7e3ef04a3d1bf4bf2cef3348e1a751de9214c8a7671c8b
MD5 98e33d0c3557c9e3c6fba7a0041a95d9
BLAKE2b-256 62d1d3556d0fda644363f2681cbdc5f81d921c3aa62548fb6925cf4d42e93e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f0a7586eae472b01877ceda88c19b30c94f31d23eb3a00aa2d8eb5bb7d29695
MD5 07ca2ea3dc83db03409aeba1a5a09187
BLAKE2b-256 431347081d60e60a632b5bd9a8b86e743073498455da97654693a121405d4bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbcd534f52f6744c712bdfee34634e23cd494866d0c7c84cef246f730e8eaffa
MD5 4e0855b61d1fa77c13c5714be62c310a
BLAKE2b-256 a2482ee16c459fe8b0adfa9e761ea54af747ea8f6fbc03b47aa11b35ccbdbbae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51eb202e22bf7888d8a760eb9cc645d5b6011a510ff36b78541eebabf8d12595
MD5 8a0bf97c286b8379cdadf0ce2292b29b
BLAKE2b-256 b2c00692c14ec22d4dee0414d72af80dad2f4f946a5cf38f5ea36bf98ef5b542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28f5dc23b55da69bc612732bb9365020af5827198691e35df93c6c647976b609
MD5 fc019565ea9a217036aa8fcaabdfc0d0
BLAKE2b-256 a4c683ac024a081e31e4057c822760ea128135e6c28cf47224fc8d356e0e1500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55c5d2a485b54112565abe3adb4f80d6b24f9c185352a8f0ae270250e2e11e0b
MD5 0ab3aed98f8d6e77f11940fa7b3ebdc3
BLAKE2b-256 5c044a86d36dde6e34ad81ceb725410b6834e834619bdaa64753e44dee8e7110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53712dcdb1c7cf6202dbbb620c8019b9b5f25ea170ea1d9d5e0c4112b1b116d1
MD5 0ca1261ca6f9873bf0fe03b5cddb933f
BLAKE2b-256 0d023fe74849e51223a753e533f6edd117e0bdd250ad3a47f6475b7a1d31532f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11563f7ab3650250eea1453a8ed8eb2d256685df8c53c668a606aeca390e1f66
MD5 d1f7b282d37fafc592011ad1350e68c2
BLAKE2b-256 40385c100406daafd314e915afa8d4ff046f255c1321662b56f573e68626ffe1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-1.0.6-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.1

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8dc32a0b952214515343a61eeee45c06a85a1456c198fe5841d367e6131f96c1
MD5 5e6be654b5a8e00306ca375d0f6278ac
BLAKE2b-256 a8eaef10d2cd70a082a442664e2a3f8787c1a346ac8551f117a802e9adfaeb88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6db7dd7e8daf6ad838f430131e6d9d94472b6adede99aee50bf32c316e559203
MD5 e43f8ad60c4fb359365aca3377f9b7d6
BLAKE2b-256 9b72cfee7e20486a26c8ade0966dffe301c1c84ebb5cdf09af05775415f355c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35e962adf63b678254e1e9cadf15d67124e06678da8ad14e79da9147422dec97
MD5 87ec901e69b2a86dc5d6b6474b4b2a81
BLAKE2b-256 4c9ff8f16704f0a971e4db2f2a4ccedf00ced99d54ec994b4181f62a79e03f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf50715b85215d6bb30ea1289af5c2a834815c0b82948bc68404759b2b9fa622
MD5 8ac099d130ef6682f83e0d1a94adc5be
BLAKE2b-256 468a8f586f0568c2fd386fe15b429db869fcb9173c007a5f2e2531d4052385f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab067f65e5125ef965ec444c58008373e74144b628a399749f3d39945eb1ddd0
MD5 c99cc68ffc1d4e138dedfcea2760392a
BLAKE2b-256 4581bfca5b73511970077a9b222fe01a952a40bc18a61b96e5a711eaa0eb7348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b70b829580d7d28552e38ebb0bbd217ae68c5b3174e82979d8b168028cc13583
MD5 acd91901c8434486921b74e3358e9953
BLAKE2b-256 0c4a1a6a102bc7c2f5797c609b55af3e1d0acade84cc88d085800e3e9df1674b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcbe92896825be102c446fdc33ee54a3f5b90814e70013d2d35ee7fc9409c8ce
MD5 b65cd039ead45b881012466201bba2fc
BLAKE2b-256 0474f186f696eabb7ef501add2ac3877dea98b291701962514c7935466861851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd1ac997c58f181e715c286edd8e4fdb72a8baffa1f7cf1ba922b31764920865
MD5 ab987773b8d34d1dff9eec85ae759b66
BLAKE2b-256 246e5e036b6dac77aa81821db0f737e9f7e4e38824b46d29683736f4db049674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c1c7cc14cfb8d640e1a2fa12aae67850ae6d6f7249a9447e5596e1a7d04ac51
MD5 31a5d77ac11ddf96525eb93fc25e3baa
BLAKE2b-256 0fa126a9516284a3129eedf3960ea0360fcaa7356012acc236e7f8ec8fe6018d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e09f23b5c28d8b8eae12a9d78367485a3fe6be3091937f12185f17abee011035
MD5 265b1048277ac91ab20faceec48e5337
BLAKE2b-256 c9ad3967fc674287accb8e0d5f6d7135c09540b58fbb9e89ba1361f0d6049147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1defeffd9adac81c0b9121aa644f2deb52cadbce3134121fc3da958becfaa322
MD5 365766d39eaf9b260550a10acbd43b3c
BLAKE2b-256 79e047b6e5573d4865fcb159172d19a18547ad496c3ecc4102d60f998f536c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c89647723fd44a24b6bf898638c05ef6f5a5f7760cf134a36493cc1609c3ed92
MD5 11d4988aba563ddf65f3ad35df69986d
BLAKE2b-256 55d2ddf68a68ee863deff8512f154c0c374ea7a887b453ce1eed6e67e2ac0bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e80b7c890c7ae5658bd59ca67968f42c4e7788fa21d13fe2e1ef79cfce751916
MD5 ccdbdbaa413ae5dd572bf6f375072e7a
BLAKE2b-256 4806ceecec0dab8e659ef44cbb276d49a5754abeca0c385d7a2af3e9e386f4bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-1.0.6-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.1

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 af0b75e1667ee8af9977fa7d0abe89065ce2e4f43b5f951903e3376a2b92f02e
MD5 c7f5af453e8541004c7fa246f3681c89
BLAKE2b-256 d1e57f59e0a6928c0e6ab7a3d4466e782554b3e55637e660b8e8f2c0cfe80c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2b1f780892ba9331399e14629032b9387c44a26ff7c0fc7d0c80c8f7ede8d00
MD5 f855a66c0eb3b9fad16eb93e19356b19
BLAKE2b-256 a54c54542f951bf449ebed936d602a5db3984659e2d5df3990c8c0c0898d2d11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4dcdd143543a55fb3cff5caec97d349b695b782e31ebc8bf53d7bdbc216a883
MD5 c452472630aea7f93b2ad8e2311f47d5
BLAKE2b-256 360c90cf111e4460287eb8847985c00a0c8e466edac53986e0bd21b91ac7db23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6bd29fb0295867d7b0bf786c306cd35f79fe55f54152773b64b63fe9a1ce539
MD5 947d29014ee021311288202be1c41b52
BLAKE2b-256 7c0b5944a73fc2c9fe42fe1ec287eeaca14eb6141e82da1af6509c05f1a47415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1d648e3aa21d07a82019b7ec25a0d7bfbb875934240d2ce4354b009b0a614e3
MD5 a38bdf3af0086ff18a1cbb3bf4805271
BLAKE2b-256 e12e88063842560664db4bf18659b5dfd27c96721f5bd48f185a3c992117d46a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53d21fc6631b039774a1aec19ac0cf4710d13e63fb5bbbdb8138a42a60538062
MD5 636a7e54043f43cb54f8eeda58dcb586
BLAKE2b-256 cfac80375f35956434ce7de98af6b345eb4b9c44d1389396687a3648fa0356cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f48d48eb97435d6bde9a5fbeb69b36d5cdf2d64145e164ebda71b7a797160c8
MD5 568511d828584a9c732c46ff012d3013
BLAKE2b-256 eca8988adff92bb46d2fb0d7f7ccfbd2d4aaaedb61d1cf4944063f645fc70daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f00d88b7498c1907f7b3bdab27d56c383483a215b4561d3ca9d9d448be5822b
MD5 eb85074f1052317a9f9f75a4443f50c4
BLAKE2b-256 3a5af64f1222b784473b423f1ec2995a9db851f3042caf120fbae7569fb27e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44d9fda295d140d59345878cfeadfbecd255b91d92b392f13cd8cb694fee6e9d
MD5 174947aa73860b311b18e1ae26ae6d5f
BLAKE2b-256 9ed419011ba987c49fa199f9d3b7a6e586a53d71526a4923e6a0849eec6f7acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 59a0d5238b5bf9d1ac79757e436b213a5c1aa88457379020cbe0c4ef6f650fed
MD5 eb52733478f5d8d0629876c6b799e097
BLAKE2b-256 63d7acbd24f9cc3686e1319f598b7cd933f1235ed37920cf8c40f3ee2758bba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df8596a2edba3a10e3a95ec5a0e6eef0405d9268e7a959cf8fb36cf9e055508f
MD5 fcc56afa2d01d99f87fbf518daa75b59
BLAKE2b-256 f5f80679d149b8a645fbfbc0e4af353dfe2e02d59c272245e58814d3de2d77ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20871a9a95a1a271c3816d3a2dfeb6279fa755e0a47818d534c4d95eb2b742e8
MD5 4679431e25f369454b4dfaf049c18856
BLAKE2b-256 cc5cef1518656211d26bac69b11bb656463946d6e4f6da60288bb486e013f11f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3db62512f64aae23d2138044f3756487a8c6f475672767c326fdea9dc2e553b
MD5 e29b4fb677b19735dafcbdcbd42f433d
BLAKE2b-256 a53e3f7c7efef30c2ccc2d3f6eaeb235a1a63a71303b90b8a9f31389d088d829

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-1.0.6-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.1

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3387d8db47d55cfc5b70de266b2b4bef9f5b94439759c1b49a190de8bbc3e3aa
MD5 4572f42d809d027fe76b674ee6f63c16
BLAKE2b-256 96b0744a868c03f9ba53db42e040b7fe984e565faa25999dcff4ecb9e6cae2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fe366d1e67657ab317dc6bfdaa721eb3465ddb0201e282e7744f1fd9c7e2e7a
MD5 32c94941e4c74dc4fdb1517865997d15
BLAKE2b-256 b7143545ad31112f5a9a90d2de8a1e5ba9af1fe480e3a79bfb1eb7ff64af9da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3da809427dc734e24a8de0b5a9ff546c0be1a4a1ccd5e3d07e472578c5ec62b4
MD5 06c44e272bb741fe3efcf328012dcd05
BLAKE2b-256 810c9c8c94c62ce1a6005c8ff62e0f5dcf31a836b21e31af9fb5fa5b5aae5db0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 604006b51db8c52e972d435f2a21203e14ceb341147ec4f13933c1e0bfe9b4d2
MD5 9451af1ab6bfb7508803af500a3fc1f9
BLAKE2b-256 3c5b5b314e335cf1736e18a44215e89d5639ee7c12e72edcdd4a6841d43223a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 660e14fad76ebfdc713c75bb3d8f8ea7ba7d082b8316b93e821cf95d7836097c
MD5 defe4f962693a06a2fac774d6bf342b3
BLAKE2b-256 3ee00d82b454baf8f40ac8118915d0ae5884533667388faee5c955ecbf284351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c225b1dc829b3b0678a52d9880720eca98ee33d2b4d29149e44404419d81d70f
MD5 545d5dde9e5fa95458224d8ce7750d10
BLAKE2b-256 8d964e619b6e2b801cbdaa3a8a64cd2a6554d0942ea2b39d4f71487de3fcac81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 932c90dda39b99d5887f95dd8ac040e084627282dc78cb76802b6572f0c52d31
MD5 7402b7ed91f71681e545e2fa5b7ca72f
BLAKE2b-256 79273e24d331ee521d0c513f7193204953cb6acb850c025b4a4ae7824f5723f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad568796f7be9c08fff5e6aff8f75cdbcc75ae86eb179f7b20762a8505f62244
MD5 e3edaf8a39d63dd2c835121edd0d640c
BLAKE2b-256 af01e588dc519232239f70c6704998194dcf8af73f973122aa3906355177b91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d97579168dc8d8d0047cef626435cb58d2994f7df9727569c2f7172466f66309
MD5 b4937ea9c67723f6379a281f865a7f37
BLAKE2b-256 45900a7be7f46dad09b88c15207b548543a24a9fd5fa7707fd16a6804eab1ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa926f90ef208a4b9ba2b3fc570ded1f6efb3ac5a4a9462c8cd3db00b7aff9d9
MD5 fbca602e96e64635fce2af5060190c2e
BLAKE2b-256 f6758f38567e2f173fcf042293021e4d5410029322dfe9bed120853d21f975be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec8250839152a4d086a4edc02dea327371dcc669455e569d2a139309fc075b22
MD5 68681495d2b204b3791d8fea4cb44735
BLAKE2b-256 81a25c4fa9b6357d3dd685a52593e95076d614d1671a7d9bce45fe57df4c415d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 724f2af80eb35079aca1e1bb46c9c0a758ee3e0156be401b1437440487c1d9ea
MD5 f3443ea2282226694dd895bd4eb0361e
BLAKE2b-256 bc699dfafcaadbf7db9c6f7719ec1146cd43d7915d6321a982c4a74dc74c4465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a4b9eddda38a77aca34b909c938bfe2d3642d6fcec659482300febcc634f95e
MD5 f9fb5c07799f596a5d0f4945418c8331
BLAKE2b-256 99cd0cce8bd1e45360274f8142d8418e3ac8cf00e545985d50cf8cde1b157d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e7f34136162b52da7354ca015075be9b007ca3a675f38ae6d36074afbf124bf2
MD5 b4b57b4def0354a7dcf83e8852e8ba59
BLAKE2b-256 278f95ed7a7a2280db4ea6bea1939f1d3a71005d3f9f37155f6c128cbf936160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72667b10e765381eae2422cd104614d395c36dee7ba861baccc84a80bcd24cec
MD5 8fc29e92a2a1bb8f5e7efa709059b45e
BLAKE2b-256 8d36171476091b4cb2c0dba32b7610ad2ad3e046017a838683e73cfecef8af59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80cef93c6c4665b9ad65f5664aac1ea2c306197d1bb49997a048ad54c9f97e0d
MD5 3b6c5c93578d7e60740fdee4c5f6eb79
BLAKE2b-256 f0d7fe5ceab99121f588383e964cdd1dcea46ef0e7718f6d0657560c3478bbae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eccf381c6b14643688b254dc468895a923eecd9a26d13d95f1a32da6a9ad469d
MD5 5c4b072e886029d7779a2be9eac27592
BLAKE2b-256 8930faf646143db1097ef9ade94c74507b85040b781ae6a658cb7a9fea602b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e33bf4bcbf305b75a9a8f82e4e9721d28452149d3be0438ab7488c4dcdb3c203
MD5 9f97854a5f7ca77e1603f709e6085fba
BLAKE2b-256 3712c9d03493738bcb99b5ce52b45054609cd199d7d13ce414ba03fa7cf68159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4464989e96e193dd485c6992f8f4348b96694edc3a9e72c729ca905416e1c4fb
MD5 22ada4cd48c9ac00921c7fb2219d46eb
BLAKE2b-256 0451bff7c231742ae5dc260dd25841b2b27958580afcfb8ad3dd65d6cf8a6ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37d0bbe3f79e312a8ce7c5292ec24fa7a88f24f61481b64ddcb339763d66993a
MD5 15ffaaca85d858480879bf59d31389f8
BLAKE2b-256 0855906d20a126b475a033ff7273ffc4a7c8ff00c0662e9c974a3d9ed5320e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85b8cc4153ba4e10f0e7b9ee3b24ab98770a5f38a73802aab46c060dc5efe2ca
MD5 1ab3c8db015dd23fd3c9b224f4d17e8b
BLAKE2b-256 4f8b140421a3af479eb75dc288c701a2c2628f3c9959ce75c5bc0918a4bdabe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 005b897625c051d331b99f7d1eb0f99c2a740dea9c3556c927911b5a1c1c6a8d
MD5 edc99b0ebe882e29cf712c2226de7904
BLAKE2b-256 ce16f3564ac6b46ffb1e00c3fce91ae977ed5e726b28e51fcb6eecaffda91fb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad1f5da54d4ea0940053ccba79003ac7570b848242ca2045e60fe700bdb05a7c
MD5 454f0111dca9130da46998b721b05adc
BLAKE2b-256 0f0ce7ad0e3ba6fc3bb72decd146a2fd8f84e5d93e453006cf0ce126969533a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0435f3c583ca40a907e45851f40af4f1e151c6a2019dd9276b60e7edfde03b35
MD5 d6a54a894c20a5840500bcac5fa305ac
BLAKE2b-256 0226d22c64f4fc64fc37cb317aafa22f77b4ca1019604f03201437a4b1582027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbe680ffbffc6c53dc5c771db1e38525af2a8d30985852a5860c4c7f555d2fca
MD5 f811a5c16c40b0e0790f879b57b22d2f
BLAKE2b-256 c546fd09c8915b32586faef5dcdaa5de7f24234e3dcfefe3fda52701b6a694bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b23f8952a5b322f6d5889a4a3429f64e6a407919dddc378df9bc4bdf3a97c992
MD5 8bc8f4eebe92441c24a2e8167c735e9b
BLAKE2b-256 115281f486d40f75f47014faa7e925182ff6586b511de6f73eb404a06812af41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 180c56bd89a8add21ee2dc34b83fff0e92da7695479ddef9f5e01bbec03bb625
MD5 7a32df5dcb1c2561773ad73891878f31
BLAKE2b-256 67f800086bf30fd2d7d567d57282e97963e1a9aec27454706aa0079bd1ebb7b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d06ff51d7d7b1b2612ad6f32e8fd64cdcc9ec1f0fa472554da21953be059c240
MD5 3b083d7c99f5c06b836811aeb8dff91f
BLAKE2b-256 b54e321ef1c356f4bf98c44027c739990a684b112fef3d4eae4c5231f97b1c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-1.0.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4be9c911cf045bef899493210cb35615b04f4e117c083d104d8bcb869070ac8
MD5 5197e868377047f7e4edec441a2fafc2
BLAKE2b-256 b45b7144f6675482fdf0b4f6868ac5f8e8f91021e375b09164fd9de1e6ea6b3b

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