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/

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-0.1.1.tar.gz (26.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-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

gitpure-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

gitpure-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

gitpure-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

gitpure-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

gitpure-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

gitpure-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

gitpure-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

gitpure-0.1.1-cp313-cp313t-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

gitpure-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

gitpure-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

gitpure-0.1.1-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

gitpure-0.1.1-cp313-cp313-win32.whl (3.6 MB view details)

Uploaded CPython 3.13Windows x86

gitpure-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

gitpure-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

gitpure-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

gitpure-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

gitpure-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

gitpure-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

gitpure-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

gitpure-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

gitpure-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gitpure-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

gitpure-0.1.1-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

gitpure-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

gitpure-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

gitpure-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

gitpure-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

gitpure-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

gitpure-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

gitpure-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

gitpure-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

gitpure-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gitpure-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

gitpure-0.1.1-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

gitpure-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

gitpure-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

gitpure-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

gitpure-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

gitpure-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gitpure-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

gitpure-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

gitpure-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

gitpure-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gitpure-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

gitpure-0.1.1-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows x86-64

gitpure-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

gitpure-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

gitpure-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

gitpure-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

gitpure-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gitpure-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

gitpure-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

gitpure-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

gitpure-0.1.1-cp39-cp39-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.9Windows x86-64

gitpure-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

gitpure-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

gitpure-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

gitpure-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

gitpure-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

gitpure-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

gitpure-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

gitpure-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

gitpure-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

gitpure-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

gitpure-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

gitpure-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

gitpure-0.1.1-cp38-cp38-manylinux_2_28_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

gitpure-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

gitpure-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

gitpure-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

gitpure-0.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

gitpure-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

File details

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

File metadata

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

File hashes

Hashes for gitpure-0.1.1.tar.gz
Algorithm Hash digest
SHA256 1f9842ae29a953f4cf0e22d245ab2419b799fddc293171ea53b4bf3dd661abd8
MD5 4f36aa65b396f7c4b658d210d7896b4c
BLAKE2b-256 b9fc0080b4f3971b74f73cb1bd494a1f060859fde68ca302ff7dbaccf81ce4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 246bb92b0b9beca9cf1b86310724358e72e09ee2eef2c86f408bb615c39dbca2
MD5 6999493b877a13ac784ed40ba35e81d2
BLAKE2b-256 f36f74eeddaf2adcbdd47b48ec978d13d2ea2ce8713d36a793c2797b6c3ef719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1a64886a9b5b582ca7864eec01d982560fff09a6125e09df2a1c5b8e67a5943
MD5 fd0b2fdd6dbcdfb335fa1b5a4345b136
BLAKE2b-256 1111bc1f10315e22f9e82edd24e882a1712bd33388a056699d4382ba5171308f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef516548ba4d9d6ef4bdf81d15fa89ec0c9815418b32d3cf3dbead138ab2bb5a
MD5 f7ef6174d9c3e5a21e72ad27e2c12539
BLAKE2b-256 4fa80770ac336cd34e330a14bc027063371e32f8a187e89b6edd1f569be5d699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e6c3b002302dea310c0401f610b5719620cd5407e463c9bbae5fbf2bc87e0a1
MD5 92d63cd01eb56b264881574c15a64ffa
BLAKE2b-256 ac1c23a90ccbbf2ad1ecb56c4cb2967967b0a06531cbfd907908cc721ab0ffb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 056e8872799aef78edd873df60e105350d69ec6b98a3fc28ec83c6bec486b622
MD5 eaa58872afaada43559c59cafec8be5e
BLAKE2b-256 b008c45f465d83f3d89e9a74a8b12b66b54b4b90cab879a9169dc1a4d1e079e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69a2be529b713d849ccb616475c9bcb39e34583bc0a7eefa1af99b50fae1ab90
MD5 e886cb96fff7cd43eb6842e675e62320
BLAKE2b-256 583e5accc621d3e9f727036e6c600bb3ca34dc3ce9f86ae5f31798d1208fae18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 681da63561b2e0b329257a074250d0b0da82313a78be71a9b36db9bde1895932
MD5 936a451204c15ac847ca9cd30bb2baee
BLAKE2b-256 eae013fee1b69b6d6b70c41a73bba969575afc678b56a6c651f9fb78b8279a83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e4adbd481cf511537de82880ecad5e362c2885db7df2dd6c682af8c32466f5f
MD5 ea674d73b6a22364087548179a2818dd
BLAKE2b-256 067108d1b8b1e39c898daf167376d2cc3b7c57ca2fc957548a41ad74ced5dcbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20d7f21acf7599c18cb795391d93e9c1ddc70c37ed6e44cf1a15dbb7ed6f3ad3
MD5 326741898afdc2c620ae94f10cd4c979
BLAKE2b-256 20b38b6c68e97a5e8d1576b5e54bf86be6f564a0a7069742e844c01aa31fc479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b02cf3f7078e601df55ba53a33bb5e139a0ef922ab2fcad298793315cee20a68
MD5 177f49c4bfea598291f091c48fb90129
BLAKE2b-256 77ffa2434ffe999ac55961abe002a245c7a8a208c0932dcb48c3b8feda79a172

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e11838e9b08389f6b0f6d92322fb4f9dda4d435b8ab2eda85c405dbb2f7d1116
MD5 20fc8884a82d4b58d3babb10ab6b8343
BLAKE2b-256 93bd751ccfed8975bb94313dca5c5978fb921788ae44c975d6877f68daaf5e01

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bb14794fe60e3a2bfecb99d8109a46ffd744fb7a00765e1f69dc1a73b04f525
MD5 eca9c8afbf34bedc3c48fe4f02c6ac0e
BLAKE2b-256 bcfdc2bf9aa50004f0e69e39086708aeedd7cbb4e89533b5e6ba5313553c1dcd

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 deb143933e86a2a2c5eb88717382c761300fe8098b47b07c3320c3c6b5ab1549
MD5 8515e4028535684cbecb97232c5f7631
BLAKE2b-256 ae089c26104e6511ca13d8a56d9ec414b843a068f2074af335366d4bbf4763a2

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b14710edf56d95951b9a5922e02b05bb34cd499e484883dc17912109b19916b5
MD5 975a142028a65f524d084d030e6fff84
BLAKE2b-256 10541791e660d46302166a8b30494021c680a5eb2c6a2d36005f8a3b57ae1af2

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3fb68b24c443ae06dcaed7db09306e1ccf790ef8854d65806b09e3fcbbb77253
MD5 e28002dd75f7b7ea6264dc9456abdfc0
BLAKE2b-256 0fe71dd85310a694160bb65a1be9c6493dc032d3dbbcef0a66b5894535b1ae82

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9998285ec2ca8ca9bb7d6e8cb492c9c61244a43c33af74a08e82bd3577a69fa2
MD5 b3af20c75da224051149bc15a550ce27
BLAKE2b-256 b77fc4dea66c1a03267a8a8d250594606c5dca5cac26e28bc14d491d5c5a4992

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b7d118213ba84c484154262e70496937323a631853d53446e1e17408662fe09
MD5 51386aed8c0c481ce12735a382f92886
BLAKE2b-256 a57efc9dbe456fb277f2b3621943931f3ba6507c44b66daa72e6a0c2072ac815

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 701ae3d00769f968b95276152d12b5e886213e0cf28fbe84d1291d82dc092950
MD5 5d2b1e2019162bd087b990aabfeb44d2
BLAKE2b-256 571438d0c8d4ae53d7f9f0f69e237b77111d5c2454bcd7cf2eb16461cfe82017

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad81a9738b7b13b7e1ec676182feca57162774cc411239d3a32db561261905e7
MD5 24aed23cd556f9890f680b39a3b4a9f1
BLAKE2b-256 75691148cbccb00d6346221bba402bce9505a8e8de988eb45c137fec3b08495b

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7f7708161ce80eb91ff640c1ef66e1f0356a23b25a8a0b20d91e3774b75ade8
MD5 2d64654e3370988dda1b2c898133696a
BLAKE2b-256 003e4bb22a22edf0fad5439eb3f9dc0128133d506f6af2b2c6fe1d1338a1d33c

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85487db95690a79f6b7e9479cdb81059f61fc9234cc06ea67a70fff315a2b130
MD5 89753ce6492fbe64e963cab1d4b9a0f1
BLAKE2b-256 61806de629320c06080ac5f8ca8f60890001ee2ea23723a11b47bfebba9baec4

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91a26f341e2b8e22d1bf4213710ed5e8f63562c0a87d2be18be520faa18526d5
MD5 5bce76b48f7f1ce5d4605d35f9a5a746
BLAKE2b-256 955e643cb657bd00ea9d1ae1b67bd057ac683cdcc9ccc4ef5b9f5fa943cb1917

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 38a64182c08a38b8cb04238a8bdda7a31f935e9e0868ce555b37e0e875f96d99
MD5 4ce0a777d09536323134211ac359835c
BLAKE2b-256 64b59c37e091db3053535c93208bc99070742289d5fbbb23f7d0c84758e4297b

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75dcd804be57d7ff9c4ce93ba282a8f89cef00c4d5a79ef14b3fd2d0d68b88e4
MD5 ae3497bb497e3bfb4b153ee447d13f34
BLAKE2b-256 bd7382d04027f76e7daee5325e15d1db6563a91247e54dc6b10dec687ea6a7f5

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12aa41eb6654c50c41c34ef6d0c49708a661ed898e3f26d087f3697e68c193a8
MD5 269c34a82ce3992ffad48f46a7765f56
BLAKE2b-256 d38ee6b0b8fa6698217032ea5704f56bf11ef13afcd59606d94510bf9019384a

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5965315eed76727a02d93e1a8d35b0bb2c238327643961841f434f33e18bdb7
MD5 2a3ce8c9bb9e2b96005fc7b8dd7e86c1
BLAKE2b-256 266dd0f6d90b7e20466ca779daa3c3931ae98cd4543f118ead62a5daada15cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f462895d50c4a8e65a4acd0b217d54a71ca25b046e7a542bb23e4075c63c7196
MD5 f4be57e488b4cc543a21039b7fa896d0
BLAKE2b-256 c7c1155b616edf3b9e40edbf57fdcff8b7da75132f2fdefb0fea1aeec18ee8d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3cb01596ecbda7b187682b518faadb6ade898063c70b1bb03cd68355fa030a5
MD5 401841ea7bb098da1e6d19e9690e9dbb
BLAKE2b-256 e6e556b46cbbcf39dbb4742ecc9a4fd93c7264bc653469477bf5eef8f5e49b68

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3325136353d9f4665edcb34cd78c5874f24998cfdb84b8df331a6d52b2c6c516
MD5 ef28fa22c7396abe46cc1212f6f11c8e
BLAKE2b-256 6ca345a11f68ed3af475b4b1de31a7be2283ead376c0d39948fbb1b6e4a21b32

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3bcb3b2eca92a073aa76c53e15684b753e6f15fc3a7c5b352140abd89a1b2c74
MD5 71b72cf4ea918a2e0de2a296155c4e02
BLAKE2b-256 872905c82a1d2a0273ccb30087ce92e7daa70e827eb045ca6073d8239f2b7e56

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8d8f8bdc1bb7120f0ea8c9fd9682de46c5e16691556212b19b4d694838fdcf1
MD5 2c1979e84bc28497e73faebcf33ff9b7
BLAKE2b-256 d5f402028584c30f47adb98e152c8b109432f5733219e81b580b11540afa484d

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad92dcb056ef4e5349e8cb84d892aa9763ac47f93fde44bbc78f9beff3554446
MD5 91c59e4530f2ec2132f46c7612fb0411
BLAKE2b-256 eb241c3207dfe79c0ffe6ee0f2da08def4f033168c06d4d97ce8db079e23c70f

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2fb56154b52973e5c3e9d1310336f6025db01f6c465ce3d10a32f7b0e6a2dc7
MD5 f88d6673426d9c7beb42e8643c56e1c7
BLAKE2b-256 2197cb64fcebdd99667cfc23cb5e63b21e61a7ee857a220ac66241882eaf4341

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3f1b8cff4c50f143abc11d15596b6ee3dd731518664f741a36d0fa9f554d34d
MD5 d7e8ecbf7b026085e168175faac18998
BLAKE2b-256 e2455f70fab629897b53afdfc407f50fe2afac59c8f594db5708fca288eea54c

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71e078364aab176182856aa6ea8dd42602f38ed0a9570c7b83ab4421eeecc480
MD5 b8f40381c1f6bec4ef43ab52b4827506
BLAKE2b-256 eeb33d4c496377acb5d425ba52d48f77833c590755b5334d528648639fca599b

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6ba5ce3126ae9e259a9e7859cba6890fe8933dbb28250138de00280d21c2575
MD5 76a11ffa47a6277be673b3853bd69639
BLAKE2b-256 0c8492e59b651f0627d7926408a726fcc21c4aa68292a8c73fb19644d41198c2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b3b72f04a773cb6fd69be601e33d37ae5f13234fb9fa114f99ffa0a781fbd886
MD5 1334adb3396ddee1a5c79918cc641d75
BLAKE2b-256 61a57e5d9f25e905bf95bb94deffb9c73d4453f399df410f0b26bec0480da283

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: gitpure-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.4

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e7e625c8b180af738ebc9701508d56d69bda74a59047f01ebb620f0b3c40e953
MD5 3ee4fcc88ab33b2a512035b5cc95f254
BLAKE2b-256 aef1a9b9cca63455bff06970b9fa136a4d7b482afbce1a8782b0c1a4ecb1fbc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c517d14ba75b3a689fb8df64cede45ae06977836a9d8a293d457b823e36167e
MD5 d05199159fa0d3c007dfacd4b793a7ea
BLAKE2b-256 b333feb814d066dc4d4c90e216fb4ec67489cd5a1da6a5c67a4a33442d45b89b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3af180b1e29d083087b025c2cef8d2a5a2307c8f9207c08de07592280d2f4788
MD5 552bb1cecc462b663e22b672a12c5f38
BLAKE2b-256 156b2289b539ec21c38e29ca7384fa0a1606baf0271adf593bc2c77a74504cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf3d2cc5152be936ee223453a97cd4f9640759cd08a7add5535f2ef0806e5e79
MD5 a79a3d5ed24a78de37d1b47292ef527f
BLAKE2b-256 93ef3419f6c32e9033d56234bf0f2952f4bfeca2a90863218fa7b124bae66f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ef4945f84e00a89a93006ca97b4a48ece53cb4de8a74e459f75227876923ec3
MD5 3747e320077df24e2d9f7f85e7d9778a
BLAKE2b-256 2d35e86ed3583dfdbf0f6b66a65ca8f7fee649e940cc16725861337de1bd54ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 409998c470535bbe5f8490346e9f36762412605f92307df93677262e5081df21
MD5 fe570df045ceb4742110706aad0a70de
BLAKE2b-256 01e64af610133be18477d50bdd4a3f0fc981a5dae38c776149606f475ddd90fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1886f5442fc6eda03c6e1008c63f1219ba042ec9156abc5c03ba9b9d65334be4
MD5 1f965537e7938c20b7e8c2f6298b49cf
BLAKE2b-256 f3a25fe33c77cd8ef5e0af4098593bf70e1753d752fff4bdf923086fe7e272c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c05592d4200efa82889c7cc594ba8e8c90892579904d6a146232bc3495458081
MD5 a8a9cdc465ed3fe2ad2e8803858addc1
BLAKE2b-256 c7da493cefb1ede71a0252e20b821b44a1da6a5f17d76262e7e678d40b15bbb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32661b2781962315edd660356b0b3d9ffd2d7ce3c775974268c158f0a22d5a8c
MD5 f61234cfa689a5a0563a11691760d4d4
BLAKE2b-256 48374e30a2b7018d1cc1abb8d0a894d14af167224f404f0a74408711da45dc1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91c9b285e59b699b71371021af071ce17383856308a5444b785d6bcee656c77d
MD5 ff6248bfbc064f0d28293ce4250811bc
BLAKE2b-256 5c026ffc9731a04bbfd367d8a7bc56edb9a558541f3e2f6202667f74910fe350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2722f1f5c1cb998c422e266a92bac16237b013041c341c22f1004e6afb7d7d4d
MD5 a683acf866e8446964bac36c2d4f8548
BLAKE2b-256 9030328920c5e4359960c7bea4b0d2d57e50628add902ac8caace94a39f68c75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4249c29d6edc0eae27e54262911b9aef08c23a54c0f587f606b4dd0dbc416e01
MD5 25a57a586ce64191b712e3d0434cd380
BLAKE2b-256 9f43576442c3d5c76af14f8fe05987d24d7bcab6d37e02f753425f8e7bba1d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b81da177c8274ae9bd56a17f64b3ce2cc2009cd5ea6b15b8593a6f9639e49b63
MD5 4d83fb861707b00c4d50a20a2e60a6cf
BLAKE2b-256 5dc9988a3d6bcb5f3864bc7e5da2c3f1184424144e1fdcfb8a7472421d060ec8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d0fef488a55d1e940ad31cb3123cc8cc5232ce0e5248d478d23247026588799d
MD5 a40db0b30f2af4b8acd1d150a81cc2e7
BLAKE2b-256 f36fbab939bdeb42cc731a705e7cf4e3b5a4532136bb73b678aa9dd870c0f784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ae63db1713e6c34d90abd5160827768b71018eba2f0242c062992035a758fc5
MD5 a16be84cae441711db697665b14aa2ad
BLAKE2b-256 b4fa5ff7b7db25914116a9fb6471e425e2d5b6f229d5c271efb19da3899467af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4034392716877bdde39b93f3f6004666b8b23923006f47fe9d3328c66bfb0b2e
MD5 22d29c736b5852a625a504161aa20cd7
BLAKE2b-256 7a947d5e98fdb4261f7f3ccebd280c4134ce3228b8a33bc89915e3b07e91dbad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d10878ba61d7fc51f3549316949d1b1a56d7852efc65851c8d6611990151228
MD5 aa4d84fd75d00492fac54ec11c698503
BLAKE2b-256 c9f0b2de5a17d32e63e58e1585ffb2aa9c15400f21a5693777a5b3951a07d10b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b25288e2c119d56fcacd2d58adef3fdc9126cad8ebc297c7712d29ce35efc3bb
MD5 46e0f38d557ac1fec6e3f06511566b40
BLAKE2b-256 740853667373fbb3844991bda3632cd029a04445b3d4bb8bf0beea30e4df5f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 589fc91952eca3c6119b13a7cf0dbbefc379c06a5f9c34935516185e2f590552
MD5 969528745694d09f3fa8d14db3821071
BLAKE2b-256 301b1c7bdee6143e2b87eba955b494e247235cab401b81bc2a21dea29a9c3a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86d313304c65175a0fa1fefa6337206243bef4698545b6ee96934e4b86bf73bc
MD5 c92cf3753579ba38cf1091e251f96999
BLAKE2b-256 5e5c68793b442e86ce0be180e4090e60cece04f62059ac2a09b17f1fe6c96e9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b73286ef9d2d282c60c8020bbdfb87bdb6468b4808ffbf4e14f1002b6af8f469
MD5 9ed53b3e2c1852576eafdb2defb0775d
BLAKE2b-256 c44fe0020772a3e27651a3dbc3ad551d33bf21342faa00da1e5772c3c509c030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2224e6f119033b9c36744673fdfd6b576ab1f35f86ca7f080f89ca339a6b13a8
MD5 3c6c5f2cf15991309409f713ebe3a645
BLAKE2b-256 bf7279c8a3c43658d9e14c93262c401d81875c395eb2f2d65d5a27b815e47661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29d3308a48503bef6c65fdaab1bfbc478f95765fde30a5f97a0c4506852b1d6c
MD5 d5bbd86420ee9c29f000ab8e53cb5cce
BLAKE2b-256 930ac99ada23ba52cc1eb79251cb61169615467f1e1b48b7a1b9d23e69a5b578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4325b07f38245ef66ba34aa5c9e4d0cd2bc8a48f557c64957018c723d9d8f3ce
MD5 1906e595b288510f80290ade97a52a5c
BLAKE2b-256 0ff8d2f3eb8383dcab1fb38e9acb58b0c531ace468eae62f12d2f8bd22dc17b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43658b10c1cbd3cd7868917d3b26278daf441715f6cb0d66af72f1ca2348ba68
MD5 c560e357dfe9bdaea2aa38711ee2288f
BLAKE2b-256 458f3687a54462dfea3012bcbf4837de3aa50f5ef38be5e6d5ce4efa63ee1ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38acadb4aa8ca5f39b453763e5993f367ab73e512db1339e9385a82746803d05
MD5 7b62fecb46401446c5998d867757b376
BLAKE2b-256 565f7fb46b03932dced9219b27e34f182fc256e6203be6da14cb128db58f8ba7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 454ea325492d7e3bcbf77c9ebe8ff2f54eade29624882885d65534a340140ac8
MD5 8afd03be20be64871cb170da5d4e1a46
BLAKE2b-256 867724aeceb9af61e9d27af722914579a30f4dd9dc063f12d50eb010ec69ffc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2c2f1b46c1550414b93e1d86dcec5459b16bb33d40dd77f1a77e76df73fea3a
MD5 8dff7a39c4d9878a8bd7deba78fec297
BLAKE2b-256 b8ef9b3e4fc5adab36e791a50e917d0bacedca2b3f1891656fa2b16ec6bef33d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bdd6722c943e197fad0ff8fe94972ca1eaa7221ed22652a794c1b2525aeabc4
MD5 081637504dfecbd11569c6eeb820a098
BLAKE2b-256 7ef5630d94dde293b0d367832caaa4fe2abea6a5671692b8a936dfa114b395cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f6d4048733d15bbff2fafd11745bcb33b1f4e689d3ff4bfac7066d98d100e54
MD5 b7405c0e93a1ae7f20b87b0fd97cd3bf
BLAKE2b-256 e8aacf4f6d926d8bab53a0bbc0a7c34609e2307e80045c16c389ef2edbbeea4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95cab85f3c294871da339ffd6a66fb455809dddf5fc15973e873d1631246e933
MD5 4352e8f5918cb9b3d37b1ba11d8b5d15
BLAKE2b-256 0c5a3de257c37c066fab5e4c770ebe7d89c1a0f51ef08c09daeede1e5277fe81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29d48792cf10652935f4cceb3d59bc5d2082a1e256b3baff5414853108e924dc
MD5 303169f4004a66844eb867c02ef44f65
BLAKE2b-256 3261b6c2f34aad672a65af07cf3bc0448fcb1da1d8ba33e764983ddef22b7e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ab98f070a6d7e4f9e370c5a975ae25e4d397b333d8c45a3885ed98448a3c675
MD5 cce8ffd7c225ec31420170e3c47b0d28
BLAKE2b-256 851d5bf31f7765ed13ede2f747f1a2c4bccb0fab58dabaa8c9baf195fbe67095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17a0054e0c7e44ca6efa754a7b4d101f020cffd9934167738a53f00436831e18
MD5 6223cac73603cf7afd587dea63bd8cd4
BLAKE2b-256 b30e6bd94905a5a538fd8d4c062c874cc34b1eb5108edf68b0d0815ebe0efdc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4dcf77ee62c178d6e6614f01d030e039339e77a987c1501a8a7efaf03158d98
MD5 d74dc702e2a3b67de75d74925597764e
BLAKE2b-256 9876343365d2c77819f91ccdb9e80e9081975ba93bc46d909bde3863fa39f5c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f11db8d267b7e2dca413dc8a9acb3eb8389d4158456e889212da727291987ef
MD5 ea58e57afdfa54d4108a6e95c133907a
BLAKE2b-256 55f65c60410ce4a4ff72b333534aeb27891d71922ef63739ae8c70fa711b9c3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 665821ccd46464b0cc4f0c8c33c0b12438c70818a630cf8e9de37f21f9e04056
MD5 996752958cb01e080db8a141061cfe6d
BLAKE2b-256 f26ab08af15686353168fb992f6358bb9dddfc3757d3626ca5edfe583f57b4fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe04553052cd6366c42cdf54453d19a15c92cd21fda57ce6d029f21827611970
MD5 6ed753ae62da40e181c782dc989d1561
BLAKE2b-256 ccdcb352b615e4f32317ab89937b3d63fccc8aaa6fbe262539461a5083cdf65b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8c83b93a007899ef9b57c52b7187c26211512ce45158848b314617279277f1e
MD5 73e08265cf8bf005d1b4b48f35a30ddb
BLAKE2b-256 bd78003d9d75581bf97b65d8486c3f6fbf961e38244a57865eb0bd5288441012

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2eb84ccce38abece29e4230c7261d5237874c9e6924e9ac2349a89165f09242f
MD5 7819e6c013b3869791609bd457f43591
BLAKE2b-256 73fb77145dab7068fc6e48847fd28db1f4de07c66e35665ddb58dfc620a35241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c616a792cc60565874115cdc601ca457b69803db0805199a19ab8e18ed2ba43b
MD5 e5e30b54db2697f48dde26cb5eff81c5
BLAKE2b-256 a195feb1f3f4703ff2134af3aa000c9cbc3e5897d8f3803127e640e1f3dd296a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7499ed39531004abe6d8b2b1a82f86068a56327cc249bb6f96dd83004c6b1cff
MD5 54cfaf85a89a8ccf17b6c9f8a36ef78d
BLAKE2b-256 637ea16a8b99cb8cb38bda91a3f98869669538885283f8b30969fc16d3ef8019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56407964237b834135c61b3a908e947a89af56f82fc4b351d8bd071987310b95
MD5 58491e4ecfdb417d8cf5d457dee163e7
BLAKE2b-256 db8311c415cf57e2f3ce89c6c8a8a7a1d08af87ded9514c9696e25c94189f8e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5dab5a89cfc01e1430e26f3cd10e3634ef1a85ae3f5b044bc4ee66da57e8b682
MD5 961559e003076a5f8a48a1ede2d57beb
BLAKE2b-256 c6c0f063ba2b858441986d4760fe838eeeacbd17d42bd738d63141f018eb2ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2aebbc0dbb28ebeda98e3c3bc9d7764faccf1f2529b8074dac5ed7e2eb34922
MD5 db1876beb2199873e212331115666066
BLAKE2b-256 af6db9e5d028a28907127db057163d7bf6ed2c947f32a63a9a3fb3114453e168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf955befe34de55d8d0299e0305bd101d3e965fb98ffbc3f4890a1f548ede628
MD5 93780c3e3740d982b0be9b94ff9e12ef
BLAKE2b-256 1d4110f16934246f96363a2f285815f7cfacbf9911a33e651e050ef85fce0b06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 22ddef1c9f5fd3cda15f59c31ca3b662409f19ad530e45589eb1defed27388f2
MD5 deccf3f6190fd4eeb4edb3b14421d030
BLAKE2b-256 0d3402275c65e1f7066d64f8b5177d12ad67783bc391249511f4b243e9d4bc87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2618dd2fce30756d8f2bfa294578d3c428fadb4160284fcef8bc81f10774a142
MD5 3f0f97fe0407459a4e1e54b7f1db0de5
BLAKE2b-256 2792ea2d79c80f51cf0fcf4ebe446c03bc5e4a7b82848b44266ce61b58ccb023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b37d1a1871562e986a8258e4ee7f4a1b0b99ad98bb9206134ff3c52475294601
MD5 70ae7e59b4d9ba3d03d8b01de479779f
BLAKE2b-256 c53e11d7b8cfb53144c0258534cfa2a3a46bb4efd2bd95047645a8d062f0409d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6799c6b777e087124b7beb6838c2a70af3c1d8a62387f07409e266c01b3ff946
MD5 73c687c365f55c923b68b5524f59fc17
BLAKE2b-256 42a21eb200e09e0d37f6471d4d20af830ac36f19ba3057ff13a99f5b9e0c6b8a

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gitpure-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.4

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aac4ffbc97f4e24c5e9321855278fb91028135b936aab2b9a94d1ad7a1ef5e03
MD5 ba5d3200b8377911d7d45a82496d9a0e
BLAKE2b-256 5aa4a2dee4a6cb2b44d95247ac1156598700860e80089b0c9a07c69107a50790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcabdcbd0edd27cb387d1f24785d324c925cafbcd1f1dac016a9e374ffe1942c
MD5 af2adf5273b32b842873d05fe7bcd4f4
BLAKE2b-256 93fbabfc9190166aafa54c374c9e313ecebafcbc359bc55f4d6d2e7c0a80e517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13ac9b1432ff57130d957f5cd3e9641d571df3f3b158c8908225d9fd2b4d4652
MD5 d2b6ec7c4ffd70f060dea1b3dbe9c406
BLAKE2b-256 450f3a2e869e5fcd638a86a7c9dd69e57496d5669ff3ceb241b4f947e93158a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d38748d78f120568b8774ffe7a2fc6914ad749b7d545efc7fb0a81a6c99e497
MD5 b1f2ac865dcc5e9ae7ebddbd4d98d9f7
BLAKE2b-256 796aaa2443c40aea8f36341f7d5b7158edd3874a268972f814cfe1b4159e2fa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ce2494f88ccdc2049eecf09a54b5b4e4ae69d3092f1725d23fe2d890e26cad0
MD5 801e7ee917ca57a3e4f90cee776f7105
BLAKE2b-256 fe8e4769e5cb70f121fca6224e83fcaaa8cbd84d0fbaa82a7aa930147604acdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1359c2d3912b19db0360e77e6a6aea1d496ebbb11eaea84c3b8339cdade2e6e8
MD5 188a4239c16a35246f23be3450a30c6b
BLAKE2b-256 5b5550453df4b5786a7ed2c0991ee5cc9e541bdcb0cc66648b381e29be506abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fb79d9e85b2500c19dfee8794bf90db6dff7d201f10cf3dadceb3b997750ce4
MD5 a3e0cba3eac1814ccce501ff5ab2f9c5
BLAKE2b-256 1f27419d922ddb41e05d7d9444f60fbd109b9256a0d6aaa4d56dda07cc06b492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80f956cc20474abc42f55fe6299b8e3888904c81967d9ae12df55d0fa8ed8dd1
MD5 be7295a722fbbc8ae5e580a0d6b9879a
BLAKE2b-256 e60f1c78e66a9394f7598708d36c93c69ba5b79f191a7bd6d20b0f2f3847df1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f806c19a3433fe3b2a4e7507fe6f712e1271b9f41bd10204d3e8d9ab146b68c2
MD5 fdf51c205696bf93aa51505e508f8e19
BLAKE2b-256 b3bb40ae0ef178455ba5626c3be8a7b6df5874519211c8ab9fceb371a820e3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ad1a29bda58c623b88f0350dcc09436938f3fffc2af7c8ca0acc4c351ee4866
MD5 495a3551fe624c62b469f08cebf721da
BLAKE2b-256 0abd2253d616c47c9264cf90c1be20c3c7c62887837f09609b4dfd2f87155886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14305f11ce312baec524a9d81d78cf853cf8de67b9092dc7980771be13ed92cb
MD5 d91cbf3b8d3956fa7d358dec4608ed3b
BLAKE2b-256 81d60d3c7748d3426fbbb5acaaafc45035e7d952ed3dbd2a8c884dcc9e0f1f07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5184950a97abb00538ead97fde52bc881f1fe756aa30f9f83f9161a331dd8dec
MD5 f7d2ffcabebf8502fa357b8b86ad0af9
BLAKE2b-256 22ab2b57b0662d352947269a54a7bc2f98fb2561766ba4c4ed68f4178ea3a1b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1582560691b2dc80311693073d77cc9ec1195d6c909b76e8d4483bc1add29b16
MD5 b2610f56ca23768d8d6a43736ca76630
BLAKE2b-256 201f3268f7f05c7aa380d30b061210ea2d893886086a4335cb70f266ae6bf937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bde204f58d5b8e8bf2f00a99ec8c26998839d85884addf0f35167bf2c57c819a
MD5 cf21a1856e97bea87d97bd5e1ff33d7e
BLAKE2b-256 183e57af03730dba5a83e4da235957b14641c0a1824fba8767e0c558fd446234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b16739c97ed1de30efb6e0ce7423d4ef0416498a9f10b3433e70853eab2877f
MD5 90e19da9d2a2d773375aeab5d5d5b131
BLAKE2b-256 1689e15045ff5a9c9fd2511de6df8c7685956fc171cbfa9ed4f9e900feeab963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 385da36f3d29062e1efe0e92ebafb3c84856ed00a6763c1a4af053229cb06c14
MD5 55903ecaed66da0f15004de4c9aeca5e
BLAKE2b-256 9867e7bf679ebcff2284943c2311644b864268818900a4a8bb92abc0448c4d87

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e00f3dffc1c6eed6ca7f3189b4606105834024d77f6a2274a91a5493e641f7a
MD5 eec8e43078184f8d14d611dbc5a84a73
BLAKE2b-256 a4cc4e2b05ebb8049a61ddfba77dfbd3121251c380e7dd49f8b931d649342889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99c91c4dc49ace3bb4f25485639fda10d0a9f8043e7f59656059d9177644bfd0
MD5 29d4a0f175e0f8c968c7bf84a10d739b
BLAKE2b-256 e3f6fe3a5b32464e8d1ba6cf1d73d3f44707ec2f613ce75669bf540dec8f0039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e5b4c698f6d252db707bb61d6244e5d53f696cf5306ca3c2d5512ad3279b963
MD5 f16f8371ddf1aa00aece8d8f2f812736
BLAKE2b-256 27911b23f872e806adada05b9cdcd28b2bc930015d895888451de82a0031d5cb

See more details on using hashes here.

File details

Details for the file gitpure-0.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac3672fc0f4f957193bfdc61f01a09ae1bebb46c44b6b30f3ff4370bf02de978
MD5 0a36f09af5c9206756143b050bc6e0a0
BLAKE2b-256 61d9c57227dfee7190eaae413454ba3b2c398be0444f31b1ec7048e78f37be0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49210b423a53ef0e4eb3bdc09a129d527b2d85e5193aca3db9e9e23172760789
MD5 5254862e467d0b891ab5c23c71afcfdb
BLAKE2b-256 e03bd3fe3ac30169acf5f40c4cf0e6a7c04206532edb6143eea314bacaad23c5

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