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.

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.7.tar.gz (452.9 kB view details)

Uploaded Source

Built Distributions

dulwich-0.22.7-py3-none-any.whl (265.7 kB view details)

Uploaded Python 3

dulwich-0.22.7-pp310-pypy310_pp73-win_amd64.whl (602.2 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (983.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (975.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

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

dulwich-0.22.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (922.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

dulwich-0.22.7-pp39-pypy39_pp73-win_amd64.whl (603.5 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (984.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (976.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

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

dulwich-0.22.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (921.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

dulwich-0.22.7-cp313-cp313-win_amd64.whl (598.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

dulwich-0.22.7-cp313-cp313-win32.whl (580.6 kB view details)

Uploaded CPython 3.13 Windows x86

dulwich-0.22.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (977.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

dulwich-0.22.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

dulwich-0.22.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (889.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

dulwich-0.22.7-cp312-cp312-win_amd64.whl (599.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

dulwich-0.22.7-cp312-cp312-win32.whl (581.0 kB view details)

Uploaded CPython 3.12 Windows x86

dulwich-0.22.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (977.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

dulwich-0.22.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

dulwich-0.22.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (889.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

dulwich-0.22.7-cp311-cp311-win_amd64.whl (599.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

dulwich-0.22.7-cp311-cp311-win32.whl (582.2 kB view details)

Uploaded CPython 3.11 Windows x86

dulwich-0.22.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (979.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dulwich-0.22.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

dulwich-0.22.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (896.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dulwich-0.22.7-cp310-cp310-win_amd64.whl (599.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.22.7-cp310-cp310-win32.whl (582.0 kB view details)

Uploaded CPython 3.10 Windows x86

dulwich-0.22.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (980.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dulwich-0.22.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dulwich-0.22.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (897.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dulwich-0.22.7-cp39-cp39-win_amd64.whl (600.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.22.7-cp39-cp39-win32.whl (583.5 kB view details)

Uploaded CPython 3.9 Windows x86

dulwich-0.22.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (982.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dulwich-0.22.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (974.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dulwich-0.22.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (896.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: dulwich-0.22.7.tar.gz
  • Upload date:
  • Size: 452.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7.tar.gz
Algorithm Hash digest
SHA256 d53935832dd182d4c1415042187093efcee988af5cd397fb1f394f5bb27f0707
MD5 02b457c9387d08758b1e06fd5b4a9048
BLAKE2b-256 6757b4962be0410cf15dc7758fcc40337d09515cc74ac15e45d304f8b70c9b40

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7.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.7-py3-none-any.whl.

File metadata

  • Download URL: dulwich-0.22.7-py3-none-any.whl
  • Upload date:
  • Size: 265.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-py3-none-any.whl
Algorithm Hash digest
SHA256 10c5ee20430714ea6a79dde22c1f77078848930d27021aa810204738bc175e95
MD5 1949291487ce188d528a7b3aa0a44fda
BLAKE2b-256 3bd3375c175ffdf4e0adf1cac737f79cbe1abe933862a3e54796cdba41fa4fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8dd5df3919c648887e550e836f87b4b83f1429876adce5ead5b5977e333c874d
MD5 26212ffb149ed82776352bcd3e7bf39a
BLAKE2b-256 964ea18e189e23c1245fec83c1d67bf58b7ebff8ef62d9733bc0dc24a5ee0d92

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c68ab3540809bedcdd9b99e51c12adf11c2ab26554f74d899d8cf55bfa2639a6
MD5 17aac60a5fdd669e9b29b611a57c0936
BLAKE2b-256 5a968bcfc3a6d8cfb9a78a133d4bbb296c64b52d199a7e77fa8ee6018d65407e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71b20bd6a25658e968e813eb69164332d3a2ab6029b51d3c6af8b64f2471847a
MD5 80dd0808dd6df67ba2b4ea9b95ebe908
BLAKE2b-256 823d058047b38f09307a871ca1f901a891c2d3ab28bda0cf71923d9d0c91ae23

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-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.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 257abd49a768a52cf7f508daf2d30fe73f54fd32b7a674abd43817f66b0ca17b
MD5 7b24820e9d72a343c239b0d3f51d91a3
BLAKE2b-256 ac30b3e02da46e5f0cafad3802ad094b2a635f76781a13853b80435753b19925

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b25848041c51d09affafd2708236205cc4483bed8f7f43ecbe63b6a66b447604
MD5 0107a93d4ba484763ab39d9a02c654b6
BLAKE2b-256 3df2dcc0ff758df195ffa1361a788d2f5d72b7c339c35fc7a6acaa6b9cc90630

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7649f0c9b4760d72768805155e66579761f282fdca123e351019c85efce811eb
MD5 fafeef48a1ff020e83ebcd03d8d1c21c
BLAKE2b-256 333f85c6c96c8e1b798aa9997dd049e3dee3c9cbc596fd3552232e045270aede

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40260034a6ecc3141a0d42360e888a73e58b9c0c9363c454cae182957fe602ac
MD5 f76ff6385a8a56bb9ac8de3cfe5b93c8
BLAKE2b-256 08ef74ca64cd83294250a02a6893dfdac0a3f85f487056cd7cc6291afa3da38f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 007d8160b511bb149d31c08548307982f6ce752a46e7088b020517de00c3bd46
MD5 430caeea8dd96d5d8daa6a08c8b3c147
BLAKE2b-256 b273992c1eba4a3f629e21188568f8902afdae2073b72562d5d63cf63c95e23b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-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.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 753eec461434f0ccbe0956ec825250e12230e8f1b365c8be1604386d94c2d8d0
MD5 3847eb349768775b572870718503a2c5
BLAKE2b-256 f5392afc6c2def2b8da2a6c8213975b5900e0c5ad6ec3fc9ccae256c3b6fbc3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5ada6a2fd400a4f51adfedd0267bfb08c61e2d9846c18ea653b0eb88a7b851d0
MD5 51a1e06dd0b2fc062cf17379aaa4a169
BLAKE2b-256 c7c0cc08ef17732f78ff5a23826bc5773dcf17cc503e4353091ab7fd525e6a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 598.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9f5954cd491313743d7bd3623d323b72afceb83d2c2a47921f621bdd9d4c615b
MD5 2fcac35bb72bbad45ff21d070b46da38
BLAKE2b-256 fb5acd0d02c98a3a4c5910eee76d3d3735a61f34341f620d8ae303050283c28a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 580.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a64e61fa6ab60db0f897f1c30f32b26b330d3a9dc264f089ee9c44f5900fb657
MD5 cf43f50d982debd6277ed0d5237b9a87
BLAKE2b-256 468c3e80ce97d60a4c2848b390a36ec0c9abed34cf7920bd157a5c5ee58e957d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f418779837a3249b7dfc4b3dc7266fa40687e5f0249eedfa7185560ba1ee148
MD5 0df6cd9fb7d33f6c6fee626abcc487c0
BLAKE2b-256 daac7b60ccbf6259545ddc387d6c92844cb5f9d3b9a2a257955318c214cc2542

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cbd5ecbc95e18c745965fc7b2b71209443987a99e499c7bb074234d7c6142e2
MD5 84a738770d57954bfaea3e35b3232e39
BLAKE2b-256 3ace046edaba0439646cad017c5e6ad7cdb81dbb98622a2f8f5ff501e8d628fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c01db2ef6d5f5b9192c0011624701b0de328868fe0c32601368cd337e77cd1a
MD5 013d121501c2f576fc84dfbe5c2aa7d0
BLAKE2b-256 fa3e38cb8c9d116258f306c8bc89dda99b61fe004d7e2211d7e71e895216e33e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2220c8b7cac5794e2260a924e81b05baa7836c18ba805d5a6731071a5ff6b860
MD5 5407df5a273ca5d5b18afe2e49b7b998
BLAKE2b-256 299049577568ae5c57476df62622c765d3a3f59abd31a950f806cda677971fc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 599.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe324dc40b93e8be996c9fa9291a439bef835a92a2e4cb5c8cbdb1171c168fd6
MD5 c252e4c1798cb84031838fd9bb161fd1
BLAKE2b-256 5e2df4d333aabba22dac0fa3985c77fcdd982e30b1fe255c79770a426d38ffd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 581.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1782854c10878b5cb8423e74b0ef4256c3667f7b0266513af028ac28dbab1f2d
MD5 9937f13317168664487dcd4731ef4315
BLAKE2b-256 abdd00db3b53e2099aea4ec8f2aa028d6f80d2645dbd5fd41beb1151e68baf6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bda2eca0847c30a9312a72f219af9e63feb7d2ca89f47fdaa240b0d0cdd6b84
MD5 c0d348533cd04e70c75f000540cd6ffa
BLAKE2b-256 725a73c7e9b9845ff351ceade642b16410e573eaef0647fe917feb5c8457b780

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d72ce1377eac23bd77aa3541ceb91f2d8bd68687659f8625af8301f0b6b0a63
MD5 39f6b97101b2919a42c87e0a01dca0f5
BLAKE2b-256 60e43b5885e0503869c515c9c8c7760f125d8681e7581dbe82321e6ce9916097

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a8886b2c9750ba15193356d9e8608e031cd89a780d0afc53b3101391605b3793
MD5 4145d241742692df04442d6c94d2b233
BLAKE2b-256 f84dc7e43521402d12e6ec3914a117672111b27a00bf9b1a6f2662b9b3c4a3c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b7a3ac4baa49bd988cc0d0891a93aa26307c01f35caeed8729b7928a1f483af
MD5 96eeaa9f18afdb1ed76fe5e8c335571e
BLAKE2b-256 1eba81c17cc324fe60e81edc343b7d818f3b1489060eec1260dcac6284b20984

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 599.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 01544915c4056d0820de8cf126b971f7c180743ff64c4435c89168e44b30df4b
MD5 a637d2119a2294db4ca572e790051175
BLAKE2b-256 2ac933af07981b6d2bcaed941a4f8d5bffc44ed618db92a7ec1146e9ee9f5e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 582.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5b9806a75f4b74fa891926b1d830e21f9cead80ed6dd803ed668369b26fb8b5f
MD5 2d4ca28ef318614a4a022cea94e1c79b
BLAKE2b-256 6afc2d71a0696141af7e23b3bab2d51fcb905651884da88627d707aab6e30b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 052715452b729544c611a107b2eef6111e527f041c1b666f8ed36c04e39c36b5
MD5 ca0502be2b86507067cc2c1c02fe5db0
BLAKE2b-256 2d3fa1d68a681ecefc7e152fa43f50b49457aebd9fb2bbf3fcd491bc782a3de7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca7ed207956001e6a8a2e3f319cdc37591e53f7eb04aedafa78f96768048c53e
MD5 1e19817ba53559e7048bb5dd7b2b9304
BLAKE2b-256 b47be9bd9c32f195c816aaecd4e813a85bf7e5076c781a936cd0afaf1cfd11cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74b7cf6f0d46ac777be617dad7c1b992380004de74c0e0652bed174686249f34
MD5 1ee754419a6f2b555a24fe80465f693d
BLAKE2b-256 8e989e60a76c629c2b034d4e6417f34bfc12ab142cdda9b29368a111cac05c7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df5a179e5d95ac0263b5e0ccd53311eac486091979dcac106c5cc9e0ee4f2aa2
MD5 19415e3a66f130ad842b4ef1eddbcc36
BLAKE2b-256 e593f6b50eeff44877622964e9b32daf5610f84b6bbc5f2d62e655ad8b5ef03c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 599.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f73668ecc29e0a20d20970489fffe2ba466e5486eae2f20104bc38bcbe611f64
MD5 66ec063012871c409791f317636d9286
BLAKE2b-256 c86a95f3b483c9ecf79abf19b9a095a731014acf819ecf8ea1bc27b4a4ad637c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 582.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 925cec97aeefda3f950e45e8d4c247e4ce6f83b6ee96e383c82f9bced626151f
MD5 839f33e86bb7fefbef0566ab29976b2d
BLAKE2b-256 a03124850b5f9473d0b4fa8cafc7a1c55305baeeb7c58b8d4c6ef8d42598abc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdbd087e9e99bc809b15864ebc79dbefe869e3038b64c953d7736f6e6b382dc7
MD5 c57ff0ef35f43df7429e990e1878199f
BLAKE2b-256 7647d1f5a3c5f4b8a6ff157757f8ea5fc256a7429b8a4f6b225fcb052b51eb8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb258c62d7fb4cfe03b3fba09f702ebb84a924f2f004833435e32c93fe8a7f13
MD5 cb5f61140bd5828bfe34caa7610026e8
BLAKE2b-256 13614fc028c62740119e7cb8d0d60238a2570b140f22438a08c260c272b585e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c830d63c691b5f979964a2d6b325930b7a53f14836598352690601cd205f04b
MD5 630064203f338adbeb0c90ada28543be
BLAKE2b-256 48af8495a56875f956e2ce24a795a2d110477733c3a0339324e029c63278bbcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01e484d44014fef78cdef3b3adc34564808b4677497a57a0950c90a1d6349be3
MD5 a04c2cef5725a30ae66e2faeb161aa39
BLAKE2b-256 01cdde9e9ccf7becfd45df1fe1b9f280244cd8110a682e2d552841ead301c6a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 600.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 986943e27a5c94c0be42fdcc688be1ae1a1349a3dbaa773fa7f9bdada1232b68
MD5 60466065144ba5f52e6c9f52d07be669
BLAKE2b-256 2adb0cce46bd9e04402e3abfb68f761e9f3c46c3e8bd589836802f0812913fc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp39-cp39-win32.whl.

File metadata

  • Download URL: dulwich-0.22.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 583.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for dulwich-0.22.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 637a9ac27512b8c04e6a29bf92e3f73386cd85dfe8609f523ffbc96e659bde4b
MD5 ac7705867d8b975bcaaea77c701af559
BLAKE2b-256 8bbbe688fc50f145b59fc5a4afb34ded8ff0d91ce9769f7cb22233418aed9f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa0bb9afa799c0301b2760e9af99083a2b08f655c55037945b6a5e227566adc1
MD5 d92f8de25cf3e2fda399799f65fc5498
BLAKE2b-256 d60d39708ddc80b1b4ecbae98cc97682a05471bf04a0a9a1af56e68107d0d8b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdbcf206d4b1e5ba2affc6189948cb292cc647593876b96a0b71db44e79a05a1
MD5 8f429d394ed46019e4bde8cc71c68f7e
BLAKE2b-256 6d9c44499ddedf7a45eeb367d9d2d81227a6801607d86b773e5948ff75b6142c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62027dfccee97268eadf0c54df3d72ce30e4402cf5cf06c021e474b9a9eb3536
MD5 e01263b7374a01051d381c9d8510017b
BLAKE2b-256 97fee8a06129a5ba6fe02e75d6545dfd7a995b4fb7c509dca6f8813c530d854e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bea11b98e854ff2abec390eeac752586b83921a22091dae65470ccbb003fc1b
MD5 2590a7f366ccdb6a6a0a29a4e2ef8b63
BLAKE2b-256 3b8641e2cd951dccaa86c78111dbb3e4b83dde5633818542c4e3e66254ea869a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.22.7-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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page