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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

gitpure-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

gitpure-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

gitpure-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

gitpure-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

gitpure-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

gitpure-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

gitpure-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

gitpure-0.1.2-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.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

gitpure-0.1.2-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.2-cp313-cp313t-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

gitpure-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

gitpure-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

gitpure-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

gitpure-0.1.2-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.2-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.2-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

gitpure-0.1.2-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.2-cp313-cp313-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

gitpure-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

gitpure-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

gitpure-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

gitpure-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

gitpure-0.1.2-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.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

gitpure-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gitpure-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

gitpure-0.1.2-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

gitpure-0.1.2-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.2-cp312-cp312-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

gitpure-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

gitpure-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

gitpure-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

gitpure-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

gitpure-0.1.2-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.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

gitpure-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gitpure-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

gitpure-0.1.2-cp311-cp311-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows x86-64

gitpure-0.1.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

gitpure-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

gitpure-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

gitpure-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gitpure-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

gitpure-0.1.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gitpure-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

gitpure-0.1.2-cp310-cp310-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10Windows x86-64

gitpure-0.1.2-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.2-cp310-cp310-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

gitpure-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

gitpure-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

gitpure-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gitpure-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

gitpure-0.1.2-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.2-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.2-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.2-cp39-cp39-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.9Windows x86-64

gitpure-0.1.2-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.2-cp39-cp39-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

gitpure-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

gitpure-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

gitpure-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

gitpure-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

gitpure-0.1.2-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.2-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.2-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.2-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.2-cp38-cp38-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

gitpure-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (4.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

gitpure-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

gitpure-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

gitpure-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

gitpure-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

gitpure-0.1.2-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.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

gitpure-0.1.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for gitpure-0.1.2.tar.gz
Algorithm Hash digest
SHA256 e1eea086f9476e5c223eadc68445bb439b26a577d54be616f65635d1e8ffb89f
MD5 4667b3430d103fed3b6f32b05e07f7ff
BLAKE2b-256 c9464cdc424af1f1b7195cafcfe5fa9d9bac1b73c16b5043ae44630f861182de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6bcb33d9903286740feb4097827aca164d22e842cee32522d1f780e9c63b30c
MD5 8915797b04f9a3ece53d40ba245c8197
BLAKE2b-256 230851f5696aca1a7067d57f3b7e41a8bb9c716f278e0e244ed4cfcc35273a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 672a21129d55b371c1624544629e1f41c3d3f331437dbe2950026f7475f86ee1
MD5 7c08bdb0a898fe3b73fa1a48b34f5553
BLAKE2b-256 7859cb28711ea4718cd19db60a7ae2c7fef8852310d590ad546c35ef9df0b82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1b22897bb221d23330b8f67a8335d1e748cd85712eb661bdde76c26199c4f85
MD5 a95b5c6c69f3d234fd7033b0e9d06d17
BLAKE2b-256 11305db05907879b48a6b48d406c0e52201a97d1ff17c789e6e694feb969d2b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fb76cf6a60af2e203d10eeab0a490d1640eba9ab355ba4e8ad01bbfbc547940
MD5 22aaa7583738304a7802abc2835fdcf7
BLAKE2b-256 4c27215e7b68d3b89630ebf76f305dc5abeda55de75a32391c328f175768daab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c1922810536d701ec27f0420a5c6403fc31b5e5aba2000bef2cfd65a3118169
MD5 26d0b05e08b2656776fdc6caa6e4af67
BLAKE2b-256 14264a39979c1547cca362c114c9695da056e06d9113809b5058c7ca88220772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa3588682b073857f15b756c8fd3ca3ed0739f6122c6010be2576cf0c9d11626
MD5 1e38a26090075ff33bca094419403465
BLAKE2b-256 8657f441ba8c16af759be27688b7fac2effede9268239459b48ed1395e664a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfbd59f9cd78fe467a127727d596f35b7fe8a44a2efef2d873ae39114347f458
MD5 e3ecb9994643df7219fa7d1a9e35897c
BLAKE2b-256 76a77e5e68de235f44c929129bb819a1aa164225add07b3a03b41a0ac264c46a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0cbfff0984ccdab2e3dfabd08b3d0a46ab60162167f717bcb36c308afcffcb1e
MD5 95e7780b11ccba6928a0c0f5fe99d425
BLAKE2b-256 5d2c8c33f9c8bc4d20435b39579a9ec1b02bde70d683a84549f6d9ad0cfd9bc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4eb67da959d06f0986997f36ab315cb4bf8f6c5177fdc064065d436ad4a2f443
MD5 2b7baba4e77d1291b942f211e97b8338
BLAKE2b-256 e2aeb2fdbda95f4a0dfefa073849fc4b19a186a8479eeb4c44379329e28f7c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d341e126fe72858a9719ab1279781a636159e153f1f78a78d3790da7fc7a556
MD5 f4634b586dd5fa263635807895ba1fa5
BLAKE2b-256 27d6f1bdce911a2cdadc3e9f2ff4e9ad7d0c4e75af6e8a3ffc1033e7f5d248a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2bbe40882cc2d5ead1a14dd34523d51a764bca64da5017b46b2ab3cc0743c73
MD5 a58bff8f8d7dcf042bd363cab0aeeb89
BLAKE2b-256 3e91307910fd1601a3726c4e2f59f63897f3191cfcb0699cb71ec3f38bc3c218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a348c430f8244428e70b36ab2c691b6b20bf2b7370bd3c1bd8184b22e7d6900
MD5 7ac801308b764b63cd7c4af00939cfe2
BLAKE2b-256 a7c6627b3f5d41f097fa927645c4deac3e1c1b03daeeab276ed086e7f981c20c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d7cae496a5ec9d31aed90d59b4b96c41d4c5522a4b4fd105261effdb0440cb1
MD5 f555575257e63634960cf746e0239ba5
BLAKE2b-256 09552ba2dd522dbf15ddcc6ba4e47cd2787ed8cc287719e7981525218a4d092b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 697929efb05f5bf31324e41f68fa4130c478575b2066e5c3b1b3ac2ebbee3ccf
MD5 e207e4d57be9e4ad77d9263b4481435f
BLAKE2b-256 438996c822a088cd3d3d6d28ce394b91470f30385300c73d355fbfa5c03576df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7ca58668f25a055b2dcf74ec2aa0024c4ee2045e1b5c4c14f7e23d7e3691a85
MD5 96907a2d54a722def7e6fbe7a7167e19
BLAKE2b-256 f1da95f0a257152ef722790652b7c0f9f13e87f2db6b78d61460346612e6b185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab40d184f2a2a433a4e44d97ecc064da1ae04db218b61a91636ffff0ca35b2d1
MD5 1147c9991af814fb74fd72a233700e85
BLAKE2b-256 4b405e64a9bdd3efc478255588311fa5211a28d3a4d21c1de0d457bd48053384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96dc3c0870a8b6c2cdc71efd133b645bbd362b19cf29d623ce59962ecd1c195e
MD5 0eb881944c1807acb7a82a3edf732624
BLAKE2b-256 b951f62ceb17fb06bf50b7ebf817f9d3f36b55968eae75ef1197e7451056cc34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ced314b17ef837eae41da44005c334b28a66b8d43a9b349fa6ddef6c878f7250
MD5 ab3b27d33e94137c4654e52a394d0133
BLAKE2b-256 a24db5eae413748ffa54cbfadd9c6cac3c33dd03d7746659481e72d9f8ea3a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd7d9a43dce0909e2af0d8438bb3d5fd859a8694c8711e6cb3db078c0b494727
MD5 907c10e34f8ae90bdb184317cc49d1e7
BLAKE2b-256 7948c607cfd18dc3211b5b7433ebf10d89b559ddcae2b7a3dd19bdc53dc2f853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c31ec046d61e42318d15ac2f4f679edf37675766806eaebb39c71e9df1aa0555
MD5 c692b3bc4f51487cd8f57b347892bb37
BLAKE2b-256 893aec0110e2c91c8e3ace5186dcd5fb1238bc292c259b71e509eacb76f05ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 039d51059b87aa2528931df218f8a9b0fc419a12e301015f4b7060d45e6073da
MD5 2780fe043ba79d785837d659dd170bf5
BLAKE2b-256 01e965363c372a7ebab5864ff695de0f29ba1c64432a9d73b0bdb8b63a71037c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4617e541d8539dd489d64cc26671463e0d21aa4e984724e4a2f8e37a49451e53
MD5 eb9de6bdb38f8b82d49bd0facf676b11
BLAKE2b-256 414c092dd907d6e9d5b1339c139dd7768d7a9bf389131adf3b547070164f2567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47a326df44d63085bfa9352dd769e36ec6c9363897d885232d6a246656c1e658
MD5 a8182e4ac2c7dfec231ece059907f098
BLAKE2b-256 b20dbc9bc6cd26cdfb4efdda066264574efc3a8c3d029dda4ecc92ed093a82b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 14c98b46762710ebde003574e04875aaeadbea8569a3d61f68b1ae15c8cbe26c
MD5 5d32c3443f8db590eb9c1454a3a1fd8e
BLAKE2b-256 a45dd5c7e6c7bb4404f18f05904e331aec01b5c601d3810b2188a330b7f2c5bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bac90a0311a7a689b2c64ef93a3e99e5b1fb5064233d8eda88246e0fd47e34c5
MD5 bad75c1869663c531a1d5b2593eef63f
BLAKE2b-256 5363c562a2b0a3e972b076ae3b8e2eaf2213dc97d1bf43e244e1e3ffa08bc232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 533e4af4517a1e40620099a12aeaff66d44538ba8cc4d1a416d59829aff6b3b9
MD5 5f85f1d5091f67447b1e0bc98236f87e
BLAKE2b-256 20da9a987c6ec4f794a12d545c34fa9b48e7304492405ea9d347672c14ac27f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d00cf6c0930172772e8da45018d023c79b728ff83afd11485bdfe5455f31a21d
MD5 77566d6922faf8c29ceb88d72f94aebd
BLAKE2b-256 6017a89057243c5a89c1961c47203226e40378e681659e6a77e821a1b1d4228e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc55ef010f10df47f2438df51dec758fbaffcd1b8d9393da49296f8fe86ee8a4
MD5 6afd5aad341ba547d72c11d466d61588
BLAKE2b-256 df6f7ae2f44c5461540b9b4de2c7552f1974ef0d57d6331d7340be59b7a8c674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f181a8069da6c78f840ffd8153cf948fe3165367327c8e6cb969f35275617125
MD5 8a948ae562b00b7f26fc5ad1ccc4e61a
BLAKE2b-256 8ebe38ab597deb460bf594b25cf3b53006551d48fc42adc8a9e885eaeea5003b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ad88297c4301225b201e850138fb00da5c0c7d2b83c95ebfacc5e2451de35a9
MD5 8cb99a0da93ae105c87c35d7353a5b08
BLAKE2b-256 43f242d017fb55db08fc4028a3814ed10cb40f365605b409a3b8c461dec721fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c99c337c0766ae563867b7d200ffd5e97a59e32a053039ddf0da51cd687e0bcb
MD5 48703a748ebfd60a93e51140b9a35958
BLAKE2b-256 0cd664290c622d498e7f010b417b5ed4c13a723979c8d9aab7094febe8557598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d12ea96c47cfb8d77dd7333c37aefa64bfbbbe3886763409f408a9f5c1107cae
MD5 366df6dc05c099d409b030a1f5f26a4f
BLAKE2b-256 8840ef7e4c640951bd079ea1b5fb313e9ce1bcfbee815b81498927c53e6ae861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea5063cacdf03f924ae957029d414092aca1f6a2ba7398946f93b2371ca1f1ec
MD5 5b2dc7f6251fc11d873fd71d46757500
BLAKE2b-256 c8d471330f92519468c893e25cf84fd2b6eb89d41761eec32ecd9d5d33fae6b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fafe9e53dc5ead80009c1265fd0b28a831c1984870cd6e9e94d1af9bfc7191fc
MD5 94d1c1b8fcaae4ee0c2e74a1bb422822
BLAKE2b-256 b766d7107c1c08e7479e283729609a2cd4e7f1bddfe0e47936288681b5c1808a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 187b32bc9dd23ed4e984142a259e6f32d418c40a1b6ced20b4a94328282952d9
MD5 91dd53bf92cb4260ef5469bf6b94c9c7
BLAKE2b-256 82bbc74d0c682490ac7f918227d2181e6b2dfadb55d09a040dfb0be1848dc069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1af3aee37f9773c11953c8671b434b62487e2314feae92cdb38317c5d0b6433
MD5 c3e2ee61c19c014b835700ffd8f76a2e
BLAKE2b-256 29d3130d0d7e8d4a42b0c4199629caa6b8626ba3ea4c865b75f114c7dd905894

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05e39d4365633f4a939893ebc2941d10f6eabeb9c754890594dcbd3e0ce68ef4
MD5 350e0bcf7b0f07e953a406246b13ac28
BLAKE2b-256 55954aa7dd9f02ee162fa34f4e0f4f96d79a6072854034bedf43d953beeb924b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-0.1.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bfbc25fcbba39ea27d158cf0ba30dcc3d6634a37806e04e368dc04c8b8276596
MD5 5e5d341d371f5a9cfef1bf4052448d65
BLAKE2b-256 349c92a4c0a79b3af5f0d2c287228dd613182cdc3f27f96ddfdffc8b85f1c78e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61fa50e4409d97df68ef479de17beab8bc1e6ee88f67d78fb1d10c7609f7a8e1
MD5 25687f2b0c3d0092db965d11cb2f963f
BLAKE2b-256 ffd1881d5eb6fce024a907536995228b1abaa6ac01ec45f6a3ad3df06b834ead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9be43494a517662717b4016c929ed9c78bdb226b737677d0cab02e58272f21e3
MD5 a881c2df9ca1b5c776c9891e34f7bd80
BLAKE2b-256 86aba1450ea5eb16f69b9bf267f73861f5e9d0619c2ca6a59785e1231c60971e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7b57aa31526da5f7032ba147be896f83320ac5b4210d702604bc240e1890745
MD5 0bd17d39ed083f84405722111ce8af1c
BLAKE2b-256 ba2e51fadccf776ff7a16dcd0b05bf6b158a1eb1e7df24e3c0a3b5fceb58842b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7a51aa72cd9128c156cda94833602819ffd18a087e2c42c35ea914528bc1fdb
MD5 d26583a61ab58fbcddb0e6e9d3661e54
BLAKE2b-256 ab5b68d153a60b7677fe763e1240a5932bf0e953c7486bc78fa760cc8cd616f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d9fc86ce7a1dc842b575f042c5b9a961b980b6a4f28c16daadd23016cdea552
MD5 22003edbf5cd4978c9071233d93ef45b
BLAKE2b-256 2d4a27887ec7c46c7f9e0bae202c22a180b62eeaef5df5afe563f9734ade87ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c4445444942a360a98581e51330dc45dd5a41266d6a5dca06fb0aee70a9d86d
MD5 a7128b4972646ecabe8888bc09ec9968
BLAKE2b-256 b9328c70e52c92aca4fea6b5830f28ad07a7c6de42e4ceccf5b2246cca7ca992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 339d8a74a7f59c2105c8a161d326221cf3943fb2f1b23159aa8ea170d4c8665d
MD5 2aa945d8f1a82471536b4eccd39ced75
BLAKE2b-256 764be653b1ac30b7a46f6d28a738af52ef4b1f35170646d9ca9b1412056149ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbbc978cb578b825a2ab007feff161c05a15b454c9cfb3a71d246b5b9479689b
MD5 7f742f89c43dab742b006b0996ec630a
BLAKE2b-256 54911b36f646ae573a40829f9fc03031eb18c2bfa717c094d84612a128669a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8912eb5af13fa23e0c9a79a5c6778cf2444f773b5760d24b487f05ac18464dca
MD5 76d25e7d39afb62ef1245a1f10378d76
BLAKE2b-256 d8ebdc577e6527f44c7bb6d8739d8f52f1ddb0c5d4334334c66d5b990e8935b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10ba756b858df57ae0f1ae8518c464e1d577f206fa9b4893c7d73dda5e3b9f42
MD5 c03ddf9d95f3692524b01273eaaa8338
BLAKE2b-256 0782db8d1113235f78498a5c28137719d1700fb9d7c38b8685d7e4bdffef6c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8a39a06bc73f515cf451a1ecd8f159d5d15763cc5799fd4af37b3399437d3b7
MD5 96664ed79a53e7e176ce9c2e7eac3113
BLAKE2b-256 500e140cc9992562dbbc9cddb58ff850e686111752ce74151884422380982c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6957294dfb05ef61c6d387dba09feb5030d9e0d6c6466f1ae0529ceb0806056b
MD5 86c8cadd9018286fa4e9537aff2f7d17
BLAKE2b-256 81a342a2c6ea5737c056238e7e5a05ae417f0250e2f8c923285e4296415871ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9f02f69a703b0718dd6c72794959269fa3f73b55a1d23f82a04293e66873df44
MD5 a886881524541860a16d0d66606f00e4
BLAKE2b-256 55c3ab34cb18b947f5ce0ccb1eb51f9244aed02aee34fec32d0d6b27b3c976d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1958e9f4703212024b8b65c3f75c5b175be3647bd4c0f13753ec8174633b45b
MD5 e7c663c16eaa345174c5b204ad62c8d6
BLAKE2b-256 205a13a63d6c742fb6bdbea967c3aa2bfd71ba9637bc965942947a8ef74b748a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6cf30e4d3106c469edada748daf90af6ca096b9cd961666376f878814cfb058f
MD5 d407e2e799be0d38a91f39d3931da078
BLAKE2b-256 73444bd5fe656273fbd8582526a78e48480b6ab316afbc516b6210c194e2934a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c685f2ad30bda821d69f5b424cc5baa68ac0c8f7a0fa293bc79672b619a4f596
MD5 308b42366aae1c961fa23480c7cb0f2e
BLAKE2b-256 9bdd19001379b2151c9561e877e9bf59793505748db428b5abeb65f2bcec120e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbd2755ed0e697b6108087c5ec602de839388c9ebbe3b17b392979fb757cbbf2
MD5 417b2a27f1d707d6d4cde35ef116b16a
BLAKE2b-256 8808f746831ce190cc6f765594b18ed68b238d020f279159632f0932ef38c672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb8eebfadca2eb60680caad4ba9a1f19aaed1017a60380597b5ff6620c331907
MD5 f6d6d93dd5651bc4f732984948787ad0
BLAKE2b-256 8afbe585dddc7d0f3af8b487ba04bdae279a446b957239ae24ee3188b08c9547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8a1066d8ab30e6d1c81191c3359cd1fdb4a33e95e90808c292c4a7389e29f8a
MD5 541d80c27c26f1e621782df404dc85c2
BLAKE2b-256 e07145224969394892b83f4281f016f7127c363354ea63972bae2eb039381b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9830d8f46adfdf57a20c7259b1e48862a453296b057744409219df0735570921
MD5 4c5e57120fbe87483d3e7c0021115fbc
BLAKE2b-256 6a7ce7838332de3d16ae5500713e12a6c16b3e46cfb6be01aa15cd37164b19c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0194fa134463154ec0fa9a6551fae9dad175a0cbece406bcc21684ca80205e30
MD5 d5da567ee38d2f0ae1851b6812f6df51
BLAKE2b-256 6874b1583b421d798ef0726948c3e7c029318a5545560693d08518e175e4397e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 452496078fef52d0bca1ddfa6651cb74b6aaf2c8ecc5e4e9350f02ccdcbf44a1
MD5 a0f1dd0ac313cb6a71ea22607f9a363b
BLAKE2b-256 e46d3b25a4eb2bbeac797e73f1399b8b5a985948a54a93d0f350262b45562a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5365388de7c4a8213c198931c3491243d5a1ecf62f3c17ad753946e3220a4511
MD5 4084353ea757e52710d500949d9b3189
BLAKE2b-256 3f8c06d3bb882532cf9470728594db53148b462d4f4d01eb00a994e5402ae340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 982ef7dcbcb36f2706e68913dcae42233f82e6a6d0007fb192c0ddbd83a9feb7
MD5 9fd670e4e5579c3f85e2e9a899f909fc
BLAKE2b-256 dccb978805d282399bfc095452563a5f00e08ffe10893f46e0a2d7e4639b9640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35f4452950cf211b95e7927bbfc669603300ef4a1f1a81202d402e189aac8608
MD5 b34521e2065013ce9be7beba4869f4ba
BLAKE2b-256 6fe5bf3c183aa68e095fd241020cb27ba892719ba9603f3707e3f15b11bafd5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1ed55f5c3fc2e15e99049391478852f7ea6fdac058ce1495deb7610133dde839
MD5 67648bb80061e3fbbc340f95b4e73cad
BLAKE2b-256 4cbcfa5ddf8a5d5d5a34e04bdc4953715b76c8710613bc7e016c3cc6962ba7e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db7182c1c90aa5038c054dee23dcb93ea2ba69f862c07de52a127af3808eb3cc
MD5 d26eabc8e7e0eb7d33dbd1cb6ee768fd
BLAKE2b-256 0c82f1bea4f6c9f88df635d90536e175604d162c365c4b162929980efc5078aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7353e4a11f0837d0e752efd1c0babd42a719a6c3adec9a19c960f39611ffc2fb
MD5 7dd626e670504dd0b31743e64c896398
BLAKE2b-256 57de52900fce8f5771d9021c7fef38df78c363b92d16417d1df188c86d4eb294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7f2405af892f5a3b9bfb1bfe0b4acf7894358d3d434f35ed68ecdea3cfce69f
MD5 3944f170d04557073ff3089138444a3f
BLAKE2b-256 2a79e3aaee55a1aa2cc3a61dc2cc3f7c961a99c60a10aea013906e29823fcf98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 787d8928e0c0c150f170ed39ca65b7e63b1d4cbd6c9dfd574c4eaaae0e087e38
MD5 b43528beb012e177f42474bdac0eefc9
BLAKE2b-256 1dc4b06845773560ef524275c50e55f221f0cdce9b9523995d5999f0e1a55a4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce704936d42d143fdfe3eef1de5faeb47dc0277ec615cf7668a878c1d6abba31
MD5 c9def20d6165be8a469e1ca9239a6867
BLAKE2b-256 c880020ec62da0b27e7a5db7d4ba4bd43320af02c9e6b9fe2bdd1266587f57ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fef0304aa0d41947d3690b2f285e0d85be3ee72ad86409952d720c751fe212a3
MD5 e51c62de57459753367c5df29d08bc7d
BLAKE2b-256 927e3ff8aca219fac0644637e5dc7aeb97988e5c1f9f08748f8d6fc9519c2182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11b46ce2e81de3085070ac99ab185e9a7160d0fc7a9b690c51b06a3535c88a33
MD5 72b46632624e59da21adc764c1e7201f
BLAKE2b-256 b87eaf043633300eaa6e987bd40db179fdb90c37c97fca194661ff4dc6537aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c12c9e300c99360f08bdc926dac9d451efc5be71695b403ac82142726f4b65b4
MD5 50c62a0a3d26d5f859caa752c998152d
BLAKE2b-256 43ac3968a301b3851e69bc795c61cd75e9dd5c00734436786765f46172ebb9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e22774dd06a924d9ea842411dc0fdb28b4551f448f75a644606e47329dfd064c
MD5 ab2ea1bbcd11c82d7e787a96d73756f7
BLAKE2b-256 c7f016ac157d639c4a2498d1297927194d4b9d0e83223a89599daec0dd016f9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8c9a50e600188b2eef9fa732052c57c1ab9adeed1a9b116304fa05c56563b1d
MD5 01fcc549d9ce0b36d1427e1c3b32aa93
BLAKE2b-256 f16cfc7ab0d0cb5a3eb54e4453fd7a0eb19b906c5ab036764fbab4aab0702385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7edfe6e11e2cbdf358b940b595dcf8c1df47f4013f09a515f39f1d72f3ecff7c
MD5 12aa3fd3a181afdde6abbf72ce0018d9
BLAKE2b-256 acf11e3fa2a817442692825e7fe597b3305f970436ed3c66485b208c0b187ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf9d2d9836ae510505992223e3a7e0c3a364021c0b3b4574af11757455b11b8e
MD5 5453d9423af6d0da37229fed09f31b46
BLAKE2b-256 898d488e7276e16001315653cdad176f6f053d48292a238bda14babdb591f604

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8afc8e8cb36b22c41c831b43b8c84b0b27f9105156677f9663b38a5b842f8554
MD5 5d5b7afedc8a05a6b2a85f6733fead68
BLAKE2b-256 03fa8d99b059675bc718422130d310d52c0901b41603dcec45b66bb5b5ccabb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f9e6ef79b03b1cd5499413ceb393b8c0189a33f5bab6edf4a87955c2cc7854a
MD5 a9bb235838a9c0a27930955bba920020
BLAKE2b-256 442058f7ec57973cdcdc6b11a6cf6407492a09cb2f220a314cab32f89bdcc225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 199c517720ca1e6f76250c1560690b27f03fdcc90a0b101176c7a81c2734957c
MD5 31dfc3f82f8dea70d5b4c16321eda1cf
BLAKE2b-256 495037d5ecf57e6966b24f9d8b23a17682c302fc5077ab82daa471867f9313a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9bbcc7c06e58f6a7d382582bb1faae650e8f78df2049724742de4e96d331a521
MD5 a6a3d0800453556d8cfdf9e56b6155c5
BLAKE2b-256 85132fc22d87a402bd9e3bda7d09934cae46b8439faa463b25379480963ccf9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2130062fe25d894071a522537d42e80cb221f99dd9d528a82853837ab843985
MD5 54b1a0bbb7082edd4f37d12423c5d112
BLAKE2b-256 1e6c4d5c73ee29c8be8e7f89c0351821686759ed8f10c96d7f73c73a895841f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a26389a13504120a6ed4e886fda713ad49e3cec3aa3c660f4f2a5a6d93397f87
MD5 2f42324ad0a16c8c4b215182edb6db75
BLAKE2b-256 c621b2b83ffc72a4355f5fcab53a7698200342293146850300abaf7f0971f2db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ba264b4648ae245b12a7fbe0557a027372d4c00da2d7057a5e408834760f84c
MD5 e15c30c0b8c4ec8e480d1b8e713545d8
BLAKE2b-256 04d69b3f7753bbc582f957252bb181d0686cad8caf3b8d7bf5d6f5d8407cf3bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3df94bc9cfd061449f88300534c5c1ffcda670566d3059db759852406c147431
MD5 0e8d1e0cd736904b7bc907a3024b75b4
BLAKE2b-256 4f3fd25d86498926b23fd640de12cbda981c2798b4dbff8aafbf26657af1d5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea7e0e9fe695ec1cd6675e46106c07618805f34cea78a7300c13f5d8898d3852
MD5 da39309a0ddaeba7805e2312ed2d2d4a
BLAKE2b-256 99469cfa19ef0f086d3b8f19450011e502629f2cbc02d3224e5a0e9b8d73c1d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ae7f59c12ecf0e6a6cbbd009ebeffb1d988a0ce8ff566dca742e4d9be2b5ce6
MD5 091c5f4a41dbc0d3f90580a7411b986d
BLAKE2b-256 b5737267b08dea0a2bfbe8f5ee8bca6734d0ce8d4b536d1c70f1f61ed426d5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee1ecf9eafb04bdddc00cb719cb7fb006ae01109a14827e1f10c0bb837433140
MD5 e0ffce777a5726ffa19d852203546a0a
BLAKE2b-256 c7a3b54e57b3a8388237f2cefa341b56d0f9719aaa1066b78593d9179ae1e98f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gitpure-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.0 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9119556bdcc47460b1408e3ca811bcaa7ba83dad12ca0de80ee03d4c93e4fa62
MD5 1f999fa7a086f5914ecae6a9e3cbddac
BLAKE2b-256 10d3812b7a231a881e53932940459300d644559dd7b616da82fb7db9f7afd74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8aeee4fb2a8377f9e896f441d1f662bdce447839ea16935634e7b65dce52c97
MD5 95d87156b907005f7a43de1d0b9bf579
BLAKE2b-256 22f8975c8cbe63e007cad6acca20ba51ad09b2ff613188da372f586d03bd7c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e381d9fa89c497c882d5c6bd64982875c1b51382d4c53cbecccdf6d964b51b2f
MD5 851b06ba26f2eb34f7c49456b90ac6cc
BLAKE2b-256 b258685e2507857d92e4ffa1479a8e6340fce8998a8fd2f90c18ed1f43e8826e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1720167f1222a54625871636a05efc237868ca513590d159aababf991a5a05b6
MD5 6edab0b9cb83e18292d873c95631c06b
BLAKE2b-256 86f49e965d8ae938afdecff48a01203cbf8c3ec24ef5cc7595fcc8a63b400763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88385417a30e20758a0a02b7af065ef7692477cbb5f1915667dcb1bdfce81422
MD5 11c8c3fe718c021c4a16240036284e16
BLAKE2b-256 1dc8aad8dcdad24980533bfed6757d6f511012b83a72295953b7e215465904c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 113d56bb2bd05d7f4a1dece36a518005719b1d1f79c464192f0cef9b922b3704
MD5 eefa486913a54c9317255f4be2babec0
BLAKE2b-256 7618c5fa04843f95657ab298ad548a240727f28de9df5f4cf991d59981ad630e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92a996638fe28e633d28d683dd2d3943dd0da807bcc7de92a8b8ee8d21d25520
MD5 2b382f50c612a60646e754c7cbe69cb1
BLAKE2b-256 ae2556875089c8cd55565c9a525633176ecc178f4a1e3c50f2122d99285793aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30c1920aa049ed6449c71b28927c22635447bab869925827989349673281a199
MD5 c6ed3f1fc3f17f395e8e20f8d688ac50
BLAKE2b-256 075a0c63cbaa1c6d65673258bed1827e4cbbfd2925a7fbae0073996c954294d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e402b74f50fb8e3eca5ced2807680d7007e5b00d5afb7aa894b494b0ee707dc1
MD5 4718584202a5f74608923710e193dd13
BLAKE2b-256 89a84aa83f519b6f83f2bf51a140ec58c7134ed2a6e933a7444ea382c7abc3ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c30c749278117cfa88eadcc12da4f17641a6142cb81a46c95a8e339f6773542
MD5 3f403fef2ec1e2b104de6e1cc10d3376
BLAKE2b-256 da2700bea44f6ca1480cd9ad8ddb5929b090a078b42c719e4c825e5424edbf51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8027f8c49b17c065ee142f27fdfadb36d0929ff8fe6797f1d2facf54ca31190a
MD5 a81fd18d8f7d63c359c431b02418b7ce
BLAKE2b-256 f0873006b39f45f2db22c712ed8afb3470aab5d2430c8c1c1ec98e140b201b89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdfd95ab23fa315fa24dbc7b1ad1a9e8e8b7637a4d8e9153ef387fa49065859e
MD5 480d3bd4414521199732336e272e0cce
BLAKE2b-256 6b2f90058f078267d89015848c96b5f976796a3d80ac27ee3ea37047706a5935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2724f269ee2bcbd62d2b26720153d177f3aae73dd40dde3fdf51f782462fcd05
MD5 c2237033fece0f2e11f42dfa97cc4ae1
BLAKE2b-256 ce2c9bf0038bf0d603e8c401e64bce3c5c7c1c821006e6e36a2a33743c2ce303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 23da27b9b2cd9bc5e1654826cbf2b958062f927f1c45805d2f1891f56f29f433
MD5 8f1cd87dd18b063c9fac985a08284f8a
BLAKE2b-256 4a539fb75829e2afd8d5ac057da027172517b104c764b20d639fcb5bc28a40a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb220e2a45bfeca6ce5480413d28561d576794791e404b449db79fd2e3f9e28f
MD5 3b700a38ff4d1c932727e4df4d707209
BLAKE2b-256 04de33e8b5df6ce2e4d33071c8666bd3ef750e912338065e52a3fa74c0f55881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4f5a8c84c22457965987268695f9785efb49f6bbfafa7b35559abca8a94ca5b
MD5 9c5596b5d83f7fe6a1c254a8e84b3352
BLAKE2b-256 39f7275ba64a40d198164aa386d3c2185d26aac6057514f75debcb10eddbe5d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7371a180da9cdf6e92c7a3f857384a073369c0aa668ae1c0ec15ffb96e3a6bd0
MD5 dfa9f934c5e0ae407a3884773cc802a3
BLAKE2b-256 41f8025059962f5d42d1433dd86fadeaedbf2d2856ad2a467d0c3bb9a7b53d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8380bd78b9f1bdb83fd3ab46278075d0c57aecc6fb360dfa62bf6e387e2056b6
MD5 90553292cf6984c810aebb049977200f
BLAKE2b-256 613ba70f6ee284a69088ccfcfe5d2e4616435baa1834e2ffd00e006c82b9e3c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1af7bd1fc2794a78ad57cc27a9a32e461ee7f87c3c22706bcd70aea85db2ca60
MD5 80070697a5eaa5cc4f33940115fa31c5
BLAKE2b-256 8c6b2d656cad0416890b28a6f7ee6f2259642746171a5fabf7a6f3508fa31b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 78172bc89983fe4a2e1b5d8d6c09f4d3a06f359f77bc2848620f155b6f4aea8b
MD5 3475dc47061c9d60982a572cf4fcfd55
BLAKE2b-256 2f33eaae95bab74b14741612991084abb75af459c10084da114b117f670a7540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for gitpure-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83e2cf05db3fe33f3d1b60cfbd64af28558788bb715d471bebd57db0b3595c6e
MD5 6c43363b3987d1fc9fdc9b0e686d9cbc
BLAKE2b-256 0120a04068972dfcc9cbd2205dc5bee921b48005f42d7bdd1eb7a88c689c2fd5

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