Skip to main content

Python Git Library

Project description

This is the Dulwich project.

It aims to provide an interface to git repos (both local and remote) that doesn’t call out to git directly but instead uses pure Python.

Main website: <https://www.dulwich.io/>

License: Apache License, version 2 or GNU General Public License, version 2 or later.

SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later

The project is named after the part of London that Mr. and Mrs. Git live in the particular Monty Python sketch.

Differences with other Python Git libraries

Unlike other Python Git libraries, Dulwich is available as a standalone package that doesn’t depend on git (like GitPython) being installed or any native code (like pygit2).

This comes at the cost of speed, but makes it easier to deploy in environments where git isn’t available or where it’s important to have a pure Python implementation.

To improve performance, Dulwich includes optional Rust bindings that can be used to speed up low-level operations.

Installation

By default, Dulwich’ setup.py will attempt to build and install the optional Rust extensions. The reason for this is that they significantly improve the performance since some low-level operations that are executed often are much slower in CPython.

If you don’t want to install the Rust bindings, specify the –pure argument to setup.py:

$ python setup.py --pure install

or if you are installing from pip:

$ pip install --no-binary dulwich dulwich --config-settings "--build-option=--pure"

Note that you can also specify –build-option in a requirements.txt file, e.g. like this:

dulwich --config-settings "--build-option=--pure"

Getting started

Dulwich comes with both a lower-level API and higher-level plumbing (“porcelain”).

For example, to use the lower level API to access the commit message of the last commit:

>>> from dulwich.repo import Repo
>>> r = Repo('.')
>>> r.head()
'57fbe010446356833a6ad1600059d80b1e731e15'
>>> c = r[r.head()]
>>> c
<Commit 015fc1267258458901a94d228e39f0a378370466>
>>> c.message
'Add note about encoding.\n'

And to print it using porcelain:

>>> from dulwich import porcelain
>>> porcelain.log('.', max_entries=1)
--------------------------------------------------
commit: 57fbe010446356833a6ad1600059d80b1e731e15
Author: Jelmer Vernooij <jelmer@jelmer.uk>
Date:   Sat Apr 29 2017 23:57:34 +0000

Add note about encoding.

Further documentation

The dulwich documentation can be found in docs/ and built by running make doc. It can also be found on the web.

Help

There is a #dulwich IRC channel on the OFTC, and a dulwich-discuss mailing list.

Contributing

For a full list of contributors, see the git logs or AUTHORS.

If you’d like to contribute to Dulwich, see the CONTRIBUTING file and list of open issues.

Supported versions of Python

At the moment, Dulwich supports (and is tested on) CPython 3.9 and later and Pypy.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dulwich-0.22.8.tar.gz (466.5 kB view details)

Uploaded Source

Built Distributions

dulwich-0.22.8-py3-none-any.whl (273.1 kB view details)

Uploaded Python 3

dulwich-0.22.8-pp311-pypy311_pp73-win_amd64.whl (612.5 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (997.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (947.1 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

dulwich-0.22.8-pp310-pypy310_pp73-win_amd64.whl (612.5 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (998.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (947.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

dulwich-0.22.8-pp39-pypy39_pp73-win_amd64.whl (613.7 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (998.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (948.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

dulwich-0.22.8-cp313-cp313-win_amd64.whl (608.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

dulwich-0.22.8-cp313-cp313-win32.whl (590.5 kB view details)

Uploaded CPython 3.13 Windows x86

dulwich-0.22.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (999.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

dulwich-0.22.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (991.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

dulwich-0.22.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.8-cp313-cp313-macosx_11_0_arm64.whl (915.6 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

dulwich-0.22.8-cp312-cp312-win_amd64.whl (608.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

dulwich-0.22.8-cp312-cp312-win32.whl (591.3 kB view details)

Uploaded CPython 3.12 Windows x86

dulwich-0.22.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

dulwich-0.22.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (992.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

dulwich-0.22.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.8-cp312-cp312-macosx_11_0_arm64.whl (915.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

dulwich-0.22.8-cp311-cp311-win_amd64.whl (609.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

dulwich-0.22.8-cp311-cp311-win32.whl (593.1 kB view details)

Uploaded CPython 3.11 Windows x86

dulwich-0.22.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dulwich-0.22.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (994.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

dulwich-0.22.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.8-cp311-cp311-macosx_11_0_arm64.whl (925.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dulwich-0.22.8-cp310-cp310-win_amd64.whl (609.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.22.8-cp310-cp310-win32.whl (592.8 kB view details)

Uploaded CPython 3.10 Windows x86

dulwich-0.22.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dulwich-0.22.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (995.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dulwich-0.22.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.8-cp310-cp310-macosx_11_0_arm64.whl (925.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dulwich-0.22.8-cp39-cp39-win_amd64.whl (610.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.22.8-cp39-cp39-win32.whl (594.5 kB view details)

Uploaded CPython 3.9 Windows x86

dulwich-0.22.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dulwich-0.22.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (995.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dulwich-0.22.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.8-cp39-cp39-macosx_11_0_arm64.whl (926.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

File details

Details for the file dulwich-0.22.8.tar.gz.

File metadata

  • Download URL: dulwich-0.22.8.tar.gz
  • Upload date:
  • Size: 466.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8.tar.gz
Algorithm Hash digest
SHA256 701547310415de300269331abe29cb5717aa1ea377af826bf513d0adfb1c209b
MD5 13dea8a5ca6f613844d22bedbe5adb0f
BLAKE2b-256 d48b0f2de00c0c0d5881dc39be147ec2918725fb3628deeeb1f27d1c6cf6d9f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8.tar.gz:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-py3-none-any.whl.

File metadata

  • Download URL: dulwich-0.22.8-py3-none-any.whl
  • Upload date:
  • Size: 273.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-py3-none-any.whl
Algorithm Hash digest
SHA256 ffc7a02e62b72884de58baaa3b898b7f6427893e79b1289ffa075092efe59181
MD5 ef5ba89f46ecad0ca5b2bbd006588232
BLAKE2b-256 3756395c6d82d4d9eb7a7ab62939c99db5b746995b0f3ad3b31f43c15e3e07a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-py3-none-any.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6bde2b13a05cc0ec2ecd4597a99896663544c40af1466121f4d046119b874ce3
MD5 54e594b930773d0772bef88e75ec9c72
BLAKE2b-256 927bdf95faaf8746cce65704f1631a6626e5bb4604a499a0f63fc9103669deba

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp311-pypy311_pp73-win_amd64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fc5ce2435fb3abdf76f1acabe48f2e4b3f7428232cadaef9daaf50ea7fa30ee
MD5 2413e40273e5de298f1ee715a28c60ab
BLAKE2b-256 d1cd3c5731784bac200e41b5e66b1440f9f30f92781d3eeefb9f90147c3d392e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e8da9dd8135884975f5be0563ede02179240250e11f11942801ae31ac293f37
MD5 94fde58f8bbbbb813d96c2901a266e9a
BLAKE2b-256 3006390a3a9ce2f4d5b20af0e64f0e9bcefb4a87ad30ef53ee122887f5444076

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 982b21cc3100d959232cadb3da0a478bd549814dd937104ea50f43694ec27153
MD5 87dcc5eaa8768883f7d782364c8ffa0d
BLAKE2b-256 19cf01180599b0028e2175da4c0878fbe050d1f197825529be19718f65c5a475

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f8aa3de93201f9e3e40198725389aa9554a4ee3318a865f96a8e9bc9080f0b25
MD5 47f925eb6280a747b1797b7d33990d28
BLAKE2b-256 e220d855d603ea49ce437d2a015fad9dbb22409e23520340aef3d3dca8b299bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 00e7d9a3d324f9e0a1b27880eec0e8e276ff76519621b66c1a429ca9eb3f5a8d
MD5 9fc937a94dcd368d23fcf8b6b9992e33
BLAKE2b-256 f5dcb9448b82de3e244400dc35813f31db9f4952605c7d4e3041fd94878613c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp310-pypy310_pp73-win_amd64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1748cd573a0aee4d530bc223a23ccb8bb5b319645931a37bd1cfb68933b720c1
MD5 03ba9988198e11954e89a0d3f3f1d38a
BLAKE2b-256 5ee43595a23375b797a8602a2ca8f6b8207b4ebdf2e3a1ccba306f7b90d74c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b2fda8e87907ed304d4a5962aea0338366144df0df60f950b8f7f125871707f
MD5 217b1cf1de2a6d9c87285aa8ab79cb40
BLAKE2b-256 bfd0664a38f03cf4264a4ab9112067eb4998d14ffbf3af4cff9fb2d1447f11bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a631b2309feb9a9631eabd896612ba36532e3ffedccace57f183bb868d7afc06
MD5 89000f71c648346ab5e689439f4cb41e
BLAKE2b-256 20d132d89d37da8e2ae947558db0401940594efdda9fa5bb1c55c2b46c43f244

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7bb18fa09daa1586c1040b3e2777d38d4212a5cdbe47d384ba66a1ac336fcc4c
MD5 9adcc6cb21678da0a11153341602d4fe
BLAKE2b-256 0aa37f88ba8ed56eaed6206a7d9b35244964a32eb08635be33f2af60819e6431

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ae900c8e573f79d714c1d22b02cdadd50b64286dd7203028f0200f82089e4950
MD5 29d20c86523aadee8e08bdd6e30f2c52
BLAKE2b-256 b63a2fdc2e85d9eea6324617a566138f60ffc2b3fdf89cd058aae0c4edb72a22

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp39-pypy39_pp73-win_amd64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e004fc532ea262f2d5f375068101ca4792becb9d4aa663b050f5ac31fda0bb5c
MD5 0fe8dd1db3d476fa0362a21818ab0f44
BLAKE2b-256 f44fa95c197882dd93c5e3997f64d5e53cd70ceec4dcc8ff9eb8fc1eb0cab34f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f6338e6cf95cd76a0191b3637dc3caed1f988ae84d8e75f876d5cd75a8dd81a
MD5 8742d37428e34b493cfdbda44ba19b66
BLAKE2b-256 3b207d7a38b8409514365bd0bc046ced20f011daf363dba55434643a9cfbb484

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6bfdbc6fa477dee00d04e22d43a51571cd820cfaaaa886f0f155b8e29b3e3d45
MD5 fca53d19f26d9db8119a673fc24a7c29
BLAKE2b-256 7945d29a9fca7960d8ef9eb7e2cc8a8049add3a2e831e48a56f07a5ae886ace6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6d446cb7d272a151934ad4b48ba691f32486d5267cf2de04ee3b5e05fc865326
MD5 51a116297f2ea6b8dc7f8e2434a6caf9
BLAKE2b-256 f1a1f9736e4a94f2d13220169c3293167e5d154508a6038613fcda8cc2515c55

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 608.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7a44e5a61a7989aca1e301d39cfb62ad2f8853368682f524d6e878b4115d823d
MD5 8ccd3ecdd72252b10f448afc9386f386
BLAKE2b-256 f31766368fa9d4cffd52663d20354a74aa42d3a6d998f1a462e30aff38c99d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp313-cp313-win_amd64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp313-cp313-win32.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 590.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b2b31913932bb5bd41658dd398b33b1a2d4d34825123ad54e40912cfdfe60003
MD5 d0afb0b0c31d82cf36eb0fbe4b5b453b
BLAKE2b-256 11472bc02dd1c25eb13cb3cd20cd5a55dd9d7b9fa6af95ed574dd913dd67a0fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp313-cp313-win32.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a626adbfac44646a125618266a24133763bdc992bf8bd0702910d67e6b994443
MD5 a16b06c5e838cb0c1e3b9b4e508b20d7
BLAKE2b-256 84a064a0376f79c7fb87ec6e6d9a0e2157f3196d1f5f75618c402645ac5ccf19

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71420ffb6deebc59b2ce875e63d814509f9c1dc89c76db962d547aebf15670c7
MD5 5abe5079671c305dba16e90dd3c5542d
BLAKE2b-256 a1af28c317a83d6ae9ca93a8decfaa50f09b25a73134f5087a98f51fa5a2d784

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f1476c9c4e4ede95714d06c4831883a26680e37b040b8b6230f506e5ba39f51
MD5 85a3d11052f7a405890c3b64b9bd5d94
BLAKE2b-256 63c3260f060ededcdf5f13a7e63a36329c95225bf8e8c3f50aeca6820850b56a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbade3342376be1cd2409539fe1b901d2d57a531106bbae204da921ef4456a74
MD5 a693cd72ea3b33d183ef7d2d2ae57816
BLAKE2b-256 dcb778116bfe8860edca277d00ac243749c8b94714dc3b4608f0c23fa7f4b78e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 608.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dc89c6f14dcdcbfee200b0557c59ae243835e42720be143526d834d0e53ed3af
MD5 71697f974aabf9c78b1ac76a6735d89b
BLAKE2b-256 8120b149f68557d42607b5dcc6f57c1650f2136049be617f3e68092c25861275

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp312-cp312-win_amd64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 591.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ee70e8bb8798b503f81b53f7a103cb869c8e89141db9005909f79ab1506e26e9
MD5 17b1d325763a4d5eddb71d46dac1be36
BLAKE2b-256 8ae36b013b98254d7f508f21456832e757b17a9116752979e8b923f89f8c8989

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp312-cp312-win32.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9969099e15b939d3936f8bee8459eaef7ef5a86cd6173393a17fe28ca3d38aff
MD5 ccdac934a37c86712dd0bdfd19adeb03
BLAKE2b-256 fa7350ddf1f3ad592c2526cb34287f45b07ee6320b850efddda2917cc81ac651

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bff1da8e2e6a607c3cb45f5c2e652739589fe891245e1d5b770330cdecbde41
MD5 f10e29a7fde93ac1b858a9693c2f09bc
BLAKE2b-256 02577163ed06a2d9bf1f34d89dcc7c5881119beeed287022c997b0a706edcfbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 017152c51b9a613f0698db28c67cf3e0a89392d28050dbf4f4ac3f657ea4c0dc
MD5 6dfae3899c704e36f5b1d7b8124817f5
BLAKE2b-256 706b1153b2793bfc34253589badb5fc22ed476cf741dab7854919e6e51cb0441

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d81697f74f50f008bb221ab5045595f8a3b87c0de2c86aa55be42ba97421f3cd
MD5 972bf1a72cdddc26f1c029e46531ee0c
BLAKE2b-256 d5f253c5a22a4a9c0033e10f35c293bc533d64fe3e0c4ff4421128a97d6feda9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 609.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 12b243b7e912011c7225dc67480c313ac8d2990744789b876016fb593f6f3e19
MD5 d745c102b62637d626b0efa4aa971152
BLAKE2b-256 f9a8ed23a435d6922ba7d9601404f473e49acdcb5768a35d89a5bc5fa51d882b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp311-cp311-win_amd64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp311-cp311-win32.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 593.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7757b4a2aad64c6f1920082fc1fccf4da25c3923a0ae7b242c08d06861dae6e1
MD5 2d1e94b4144cbcd076557d06a6ad204f
BLAKE2b-256 d488ea0f473d726e117f9fcd7c7a95d97f9ba0e0ee9d9005d745a38809d33352

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp311-cp311-win32.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7ae726f923057d36cdbb9f4fb7da0d0903751435934648b13f1b851f0e38ea1
MD5 eb97904b63d7a579c5130b83cf44e62c
BLAKE2b-256 13eb07e3974964bfe05888457f7764cfe53b6b95082313c2be06fbbb72116372

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 826aae8b64ac1a12321d6b272fc13934d8f62804fda2bc6ae46f93f4380798eb
MD5 c506e91f4762966ed53125ec36182a81
BLAKE2b-256 eb61b65953b4e9c39268c67038bb8d88516885b720beb25b0f6a0ae95ea3f6b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6987d753227f55cf75ba29a8dab69d1d83308ce483d7a8c6d223086f7a42e125
MD5 02d78e1050fe97421e4e73294c67ddba
BLAKE2b-256 2db369aebfda4dd4b05ae11af803e4df2d8d350356a30b3b6b6fc662fa1ff729

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0852edc51cff4f4f62976bdaa1d82f6ef248356c681c764c0feb699bc17d5782
MD5 928f2e114c876cf4e5063a9cff9b7288
BLAKE2b-256 c36ede1a1c35960d0e399f71725cfcd4dfdb3c391b22c0e5059d991f7ade3488

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 609.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f3a15e58dac8b8a76073ddca34e014f66f3672a5540a99d49ef6a9c09ab21285
MD5 19db7449bf0dc382e9fbde98155184ed
BLAKE2b-256 9495e90a292fb00ffae4f3fbb53b199574eedfaf57b72b67a8ddb835536fc66b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp310-cp310-win_amd64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp310-cp310-win32.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 592.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 432a37b25733202897b8d67cdd641688444d980167c356ef4e4dd15a17a39a24
MD5 ac4408d1dea32c1c48d041c3b8396233
BLAKE2b-256 0cf9d3041cea8cbaaffbd4bf95343c5c16d64608200fc5fa26418bee00ebff23

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp310-cp310-win32.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe8318bc0921d42e3e69f03716f983a301b5ee4c8dc23c7f2c5bbb28581257a9
MD5 32959c88616d5a12282044b95e7f6db4
BLAKE2b-256 db40831bed622eeacfa21f47d1fd75fc0c33a70a2cf1c091ae955be63e94144c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d2434dd72b2ae09b653c9cfe6764a03c25cfbd99fbbb7c426f0478f6fb1100f
MD5 809c8856193d169d64e206b52b43cf15
BLAKE2b-256 99710dd97cf5a7a09aee93f8266421898d705eba737ca904720450584f471bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7a0f96a2a87f3b4f7feae79d2ac6b94107d6b7d827ac08f2f331b88c8f597a1
MD5 c9b08840000f97088fe764eef33ab9f1
BLAKE2b-256 7c9e5255b3927f355c95f6779debf11d551b7bb427a80a11564a1e1b78f0acf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 546176d18b8cc0a492b0f23f07411e38686024cffa7e9d097ae20512a2e57127
MD5 f43ddf6cdb344437a02352b248aa4953
BLAKE2b-256 de4d0bfc8a96456d033428875003b5104da2c32407363b5b829da5e27553b403

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 610.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b6757c6b3ba98212b854a766a4157b9cb79a06f4e1b06b46dec4bd834945b8e
MD5 71c1e04921c826d3e406a4f4f12844f1
BLAKE2b-256 ef9be7f3d9a5b7ceed1c1051237abd48b5fa1c1a3ab716a4f9c56a1a2f5e839a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp39-cp39-win_amd64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp39-cp39-win32.whl.

File metadata

  • Download URL: dulwich-0.22.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 594.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dulwich-0.22.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8bdd9543a77fb01be704377f5e634b71f955fec64caa4a493dc3bfb98e3a986e
MD5 917ca28ee9856f70c1bb3626d3f8ab46
BLAKE2b-256 6cd916fcd2c973aa2c1ec3e880c43c95f5afced1abb3f655f5a3fd1911abf02b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp39-cp39-win32.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16bbe483d663944972e22d64e1f191201123c3b5580fbdaac6a4f66bfaa4fc11
MD5 4d3b560aea24b9d0bc45558380f2d4fc
BLAKE2b-256 96f38f96461752375bc0b81cab941d58824a1359b84d43a49311b5213a9699d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b79b94726c3f4a9e5a830c649376fd0963236e73142a4290bac6bc9fc9cb120
MD5 02750fee28b8e262826414ecf2ad13d4
BLAKE2b-256 3a927bd8fc43b02d6f3f997a5a201af6effed0d026359877092f84d50ac5f327

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e02d403af23d93dc1f96eb2408e25efd50046e38590a88c86fa4002adc9849b0
MD5 e72c14feecd3f879f8a26b7005ba3a4f
BLAKE2b-256 d5345d3b5b1ace0c2ab964f0a724f57523e07cf02eafa45df39328cd4bcf2e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dulwich-0.22.8-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9cd0c67fb44a38358b9fcabee948bf11044ef6ce7a129e50962f54c176d084e
MD5 5e2393de3c4aa076f25dca497035a8d2
BLAKE2b-256 f6c5c67e7742c5fa7d70a01eb8689b3c2014e5151169fc5d19186ec81899001b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.8-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page