Skip to main content

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.

Compatibility with Git

Dulwich aims to provide full wire-format and repository format compatibility with C Git, while maintaining a pure Python implementation that doesn’t depend on git being installed. This means that Dulwich and C Git can be used interchangeably on the same repository.

For a detailed list of which Git commands and features are supported by Dulwich, see docs/c-git-compatibility.txt.

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.

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.10 and later and Pypy.

Download files

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

Source Distribution

dulwich-1.2.14.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dulwich-1.2.14-py3-none-any.whl (730.1 kB view details)

Uploaded Python 3

dulwich-1.2.14-cp315-cp315t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.15tWindows x86-64

dulwich-1.2.14-cp315-cp315t-win32.whl (1.1 MB view details)

Uploaded CPython 3.15tWindows x86

dulwich-1.2.14-cp315-cp315t-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

dulwich-1.2.14-cp315-cp315t-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

dulwich-1.2.14-cp315-cp315t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

dulwich-1.2.14-cp315-cp315t-macosx_10_15_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

dulwich-1.2.14-cp315-cp315-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.15Windows x86-64

dulwich-1.2.14-cp315-cp315-win32.whl (1.1 MB view details)

Uploaded CPython 3.15Windows x86

dulwich-1.2.14-cp315-cp315-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

dulwich-1.2.14-cp315-cp315-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

dulwich-1.2.14-cp315-cp315-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

dulwich-1.2.14-cp315-cp315-macosx_10_15_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

dulwich-1.2.14-cp315-cp315-android_24_x86_64.whl (1.5 MB view details)

Uploaded Android API level 24+ x86-64CPython 3.15

dulwich-1.2.14-cp315-cp315-android_24_arm64_v8a.whl (1.6 MB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

dulwich-1.2.14-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

dulwich-1.2.14-cp314-cp314t-win32.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86

dulwich-1.2.14-cp314-cp314t-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

dulwich-1.2.14-cp314-cp314t-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

dulwich-1.2.14-cp314-cp314t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

dulwich-1.2.14-cp314-cp314t-macosx_10_15_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

dulwich-1.2.14-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

dulwich-1.2.14-cp314-cp314-win32.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86

dulwich-1.2.14-cp314-cp314-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

dulwich-1.2.14-cp314-cp314-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

dulwich-1.2.14-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dulwich-1.2.14-cp314-cp314-macosx_10_15_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

dulwich-1.2.14-cp314-cp314-android_24_x86_64.whl (1.5 MB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

dulwich-1.2.14-cp314-cp314-android_24_arm64_v8a.whl (1.6 MB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

dulwich-1.2.14-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

dulwich-1.2.14-cp313-cp313-win32.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86

dulwich-1.2.14-cp313-cp313-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

dulwich-1.2.14-cp313-cp313-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

dulwich-1.2.14-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dulwich-1.2.14-cp313-cp313-macosx_10_13_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

dulwich-1.2.14-cp313-cp313-android_24_x86_64.whl (1.5 MB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

dulwich-1.2.14-cp313-cp313-android_24_arm64_v8a.whl (1.5 MB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

dulwich-1.2.14-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

dulwich-1.2.14-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86

dulwich-1.2.14-cp312-cp312-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

dulwich-1.2.14-cp312-cp312-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

dulwich-1.2.14-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dulwich-1.2.14-cp312-cp312-macosx_10_13_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

dulwich-1.2.14-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

dulwich-1.2.14-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

dulwich-1.2.14-cp311-cp311-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

dulwich-1.2.14-cp311-cp311-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

dulwich-1.2.14-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dulwich-1.2.14-cp311-cp311-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dulwich-1.2.14-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

dulwich-1.2.14-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

dulwich-1.2.14-cp310-cp310-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

dulwich-1.2.14-cp310-cp310-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

dulwich-1.2.14-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dulwich-1.2.14-cp310-cp310-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: dulwich-1.2.14.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14.tar.gz
Algorithm Hash digest
SHA256 ed8bfcfe1c7e187d1bc5e78f7c128a07d229d7b425433b04cbb89334678bd3b1
MD5 a2a164b07abae75b6bbc657273831c95
BLAKE2b-256 0d7bd03c166f6098314824bdd2e661a32563c0ebe8c5e3344ed212d2ffc96a10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-py3-none-any.whl
  • Upload date:
  • Size: 730.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-py3-none-any.whl
Algorithm Hash digest
SHA256 3e1b6e13e23f9bc633fd249563e4d7a946d7d470f210967853ae0991589edd11
MD5 0d8a0b51d7d26eaf38c4bfc473202427
BLAKE2b-256 c2455c62eeb71c6005fa4f1b5101def14271eb1063720fefcde17bcc95c0fb42

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-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-1.2.14-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: dulwich-1.2.14-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 a13c17d64e018283a4dce77281d54a9efda73c2de739eb0444cbef288b3fcbbf
MD5 86d87e67cfa059fd74c0071c2f22b59f
BLAKE2b-256 b484d372255294bfd4dc31592f163207e12a76cfa876f32511e61baf1e3c68d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315t-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-1.2.14-cp315-cp315t-win32.whl.

File metadata

  • Download URL: dulwich-1.2.14-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 03a54c8878b690a8894f5ec2ce0c8b671c50180412f35dd0c4e833c0001f8d8b
MD5 8f33f94b1ffe6206a45fb3f03c9a808f
BLAKE2b-256 d12d708f306c280f1194819e25d1f30604308290801c0ad7be906212d396c827

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315t-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-1.2.14-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e5b14e5d01b7020a39acad4d7990c5da379ac0cba08d1d7121f3d036dc80983
MD5 933358c53a4be41d51b8a6732ffcc8b3
BLAKE2b-256 8c5f13e07d1a1ab152dcbe0433791f1aed66c8b21790270ee3e7424c3559dc98

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315t-manylinux_2_28_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-1.2.14-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89aa99ae03475f12a7e66c4f649cf4b653e457b63dca1acc7b7579ca3d7aed51
MD5 d9eeb6e7ff2c38ea1b350cc6ecbec3a6
BLAKE2b-256 2e9bf7a5536d8d810c90ad7d337af763e2afd713f4d2237deac34fade3ad1b50

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315t-manylinux_2_28_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-1.2.14-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fed41be710a615f39b935531f9354dee6b69f5c4ccf84d532711f669167e961c
MD5 9910ddf3ca5731f7949730a433920860
BLAKE2b-256 b135ee149973d5757a85e315c4a40a5fb791d9c8852b65312f8b02c71720fa31

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315t-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-1.2.14-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 24caa9f3d16a5d1f90d3e635e1f07035ad5bb23aa909524072eaac7d11810d7b
MD5 02205cef2fbc5c3e15bd681651c554b1
BLAKE2b-256 ae735f6749e77104e66cdf5bfe91f64f01729aaa8c4f2d56df9be0931b01f3ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315t-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-1.2.14-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: dulwich-1.2.14-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 2473ce5a687234458c740c5b2c3ba595cc8fbd3ffb575b3b80deb992b261efe3
MD5 e63e81a861cb7998f5a2bf798aa84c6d
BLAKE2b-256 459c20a14d0b952b7383f6b61b293560a03eb7ac19104c3c684064df8a575c59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp315-cp315-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 544e17060c9b32d16355ac2ee59cb9be5f2407d0c9ea96fad67439cc40c8e572
MD5 aab8a361535ac7873b9b6c6d9699cff7
BLAKE2b-256 10555bc35e5a360be319a43a3140d632d79ea7e00230d936cde7b5418ac8f9d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315-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-1.2.14-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26d36df85e4247427616ad2e4aa7698adba55ee6d8c83fa5dbe93aacc2250f2f
MD5 a21e1959448fecc31b676a0452825992
BLAKE2b-256 45c4e219b9e16452843b54caa98accf42bb8af493706bba292ef06ba1871cfad

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315-manylinux_2_28_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-1.2.14-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca4a6bf4ca6d9a0025523284ce82a89d6b709684c3cb25a896f407c4a55d51bc
MD5 466370c5f39c3aad3c7b64f48e121258
BLAKE2b-256 18eb951fa6624e50b772bbbb15a75bc5669ae954d08170dd7b72f8e51fa33cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315-manylinux_2_28_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-1.2.14-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88e84dc25220f2a78455964bcb3dd8d813e3e442f444ed2a9d26786bca382430
MD5 b381501a25da4ef9b92e61faf429af27
BLAKE2b-256 fd221b31e90f6b9b1f4fcff84cd15a4f4223497966f40234d675e2c0bf6c5363

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315-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-1.2.14-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 04df44a08aa7597f2d4bc4bb1295e99a8d0f59878c1d6de02d5eb528078bc7cb
MD5 7e16419dd7c02c95dc98e46272a38951
BLAKE2b-256 d1a55e7535b17f988b8c7aa07baff63bd555a7d11b9fb5383b8cb589cf263476

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315-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-1.2.14-cp315-cp315-android_24_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 185e7f56a9e59e868905e88a8e8a1ea2f9cbfc14545166c6145317e2b25a9fcf
MD5 3434895b5ced5e819954f53844fe56db
BLAKE2b-256 24e2b976560e999e79bc380fc67899b2dfc4f1f11d86a5bc982c55d8dad498c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315-android_24_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-1.2.14-cp315-cp315-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 2ba0ad8dd5505830795e668859d920d10cb233bacde03861f420d8b2a9cc5038
MD5 cacbcc171e7abe3321aaeec5efa972d7
BLAKE2b-256 23cfdeee74fdf531e771479251b732bd7bd12556d5bac3f231ce38122c66aec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp315-cp315-android_24_arm64_v8a.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-1.2.14-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: dulwich-1.2.14-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7f27b3552ca788bccd271b91c07445acf4815c15c0bc4bec288bdda854145ff5
MD5 c0736bfb5874f4adafbd51d9842ba7a1
BLAKE2b-256 33a13f3c2b421b63031626d3042ae732b46d499a88b68bb0c3e33beb5bd8a3b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314t-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-1.2.14-cp314-cp314t-win32.whl.

File metadata

  • Download URL: dulwich-1.2.14-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cf1f6e0d737c25a1c8826cd38fafceb098690dbe908c2548e939d48961f6b506
MD5 2fb1fa4c3d8cb84b42c5e04c8a4ad2ee
BLAKE2b-256 dfbad09db29726b7f62f61e66c46888b686a5a995b034631b8baa2b9a48ed381

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314t-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-1.2.14-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 404d6b78d2012299eff296f1baa808b03cf1c04dcce0972efe79005bac1861a0
MD5 7ea917b2cd07bf115b11eb76e6bdbbcc
BLAKE2b-256 ecc3627bd8e13bc55476967ac9849b3b040596b4e9b012558abaf960698c55d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314t-manylinux_2_28_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-1.2.14-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ecdde801f145fa4cccf87914b61d34b3ba8e70b3c7e054447c07e119eeb48f43
MD5 2712daeea6907498d3e14e5c41f59659
BLAKE2b-256 7063ca17bbd708b56687093d7e9278944908f1471e72e95b5e97848d96619675

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314t-manylinux_2_28_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-1.2.14-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 036dfff7274e74bb81751f8c3b1ed73eeb8cc37291859c2968cd191a57641e5d
MD5 53f04642a65fabce504b9b19cb1ef8db
BLAKE2b-256 17c93634727e76a59d49cdaeb9605516fbafc599f7188951dd01708399830f98

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314t-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-1.2.14-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 80641cc3a54a0ed50d541aa6e21e3ea80eb7e062b137da1078bdf5a842d50483
MD5 43eeb94df0fa439b34f10a1e3e9c2cdb
BLAKE2b-256 f9aaeee4e39bf9d43e03b25ba3ab82bf72d786a2689d8c6a6f7faebcb729f4dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314t-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-1.2.14-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dulwich-1.2.14-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eeebe931e218311d22ddfebf56c58fcdfc78110cd51a773b56e96a8bda3ef965
MD5 9c260a026afd62b7adafad924b5e7907
BLAKE2b-256 363549b382f3ed6f7ab7be9fb63808a43bd30ee3b8df67c8d7438f0091603212

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 15254f4cb99ccd833cb7837edfad2b5503c13e0f3a672cedebea540b3913b335
MD5 a09b330b32682909b4e7e464c760e986
BLAKE2b-256 b314593d5f8338a4c6bce10e9913ac35f3c02fffa969771fb012ef29882505ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314-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-1.2.14-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26a36829b8590c2c431d86acc6ec4d95d708a5efbc3df0e6cb151fa8baa7b607
MD5 a2073807dad4d1fde1a2ff98a167e5d6
BLAKE2b-256 80b2d56697144814152a6c8c7e94ba9ee28d180acf0c56b22a734004d8a727f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314-manylinux_2_28_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-1.2.14-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a839358029e679c1f18a1fcce847d48ed9b0df7469310c72a3878c4e167447ee
MD5 6150728d6cfbce4d35e278e7608bb3ac
BLAKE2b-256 1bc586e473a7187fae33e3f3d478e72e18166a5a986275c8c6307e7198c96d8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314-manylinux_2_28_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-1.2.14-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2c9299b83392d5634f713b586ff2e179ad79f0e16d7d571f07847b356cbd7ee
MD5 ec49ed5a7b6e7b2246a98683c4faf3d0
BLAKE2b-256 91d061121bff6741b9093dde32aad1d756cfc58ff92c719accba1bc05c08be1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314-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-1.2.14-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2fbc88c17627f59f61ae16046d6043441825d7c64f9decb14e5133504401d35e
MD5 7c42c3675d724274c5d70fa0958660af
BLAKE2b-256 335835b1d76b204de17b35c8456fbb85a4d1d84ee8deee91d2105733b0de0d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314-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-1.2.14-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 3600e3b96b8264bd8c6a0a60ab35456c78f4a0a74f24c22cfbbda9cf490d268c
MD5 da5bc69d37d0e6e906bf40bbe5ed3e8c
BLAKE2b-256 b9ca19b9eea408d5d63eb5b3bee75802c723b8a4e9409514b63923c6ebca7def

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp314-cp314-android_24_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-1.2.14-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 d64e7439e22fa06ca5c34cc4c8604f4bd999a1e9eeac01c38fd07d9c763e6e61
MD5 869d0de8550de0552f1214abae1cec78
BLAKE2b-256 b49fee4094d00287aafde2223d698069c8364a144ae742a6064b8ac32841efff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aca527f393e5fca268bae656353dd21b20916bac5f5ac16b1bf2023e8f908c3f
MD5 59f59dd6802e97b57840a117cc3a9e4f
BLAKE2b-256 2e50323cd70a221a68ff03526010e319e60fa84193657ee35c14156495441752

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7945d09443bf775cc7d6354527077d5084087f8a4cdc25f88bb636c7e2d2185e
MD5 4a392d41bd5a9b8300156bce0d6de571
BLAKE2b-256 78b927f98460338fdd36347cbe6f935b59726a6e81fe3ecf0d4be7bfd812d583

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0f583a85a40a38400ce4374edccc2e6a4a5c5f34d4ab272b1d2d4fd3358944d
MD5 b9217a4fee3bd3b9bda2c6ca56d7d264
BLAKE2b-256 5c543ddaada9e16238a5f0103262ba79904a48cc87fc63300fb93a7417fc2873

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp313-cp313-manylinux_2_28_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-1.2.14-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26440ebc7b8208edf9f251a7820a618bbdb53f1af71f2e5817bdbe3e6d24405d
MD5 f16e1f5bf144c2c0d5b39fd925c691e3
BLAKE2b-256 1701b592e8f3b3de2cf3c3c773f521e3834cb7c8bc1b944c0c6c912e58d62460

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9a944a28dd246fe05f5465384319044cc6e36849f7a880194abed0daa89111b
MD5 c45b8ac9f2d4f289b8a75679289623d1
BLAKE2b-256 3bd7020649b22486a126fc9d6880c364b42562977bb2bd66d4cb4fbf00789ec3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 99054b570b017f03e093eec8d35089fad612655c90d45d2fa32734651746047b
MD5 ce3de1c80b6afafac58179f26fb65cd9
BLAKE2b-256 c5a457061ecbdfa0f3380cf36fcbfe29378d7f6c0437048437b746ea5df2e008

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp313-cp313-macosx_10_13_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-1.2.14-cp313-cp313-android_24_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 cb0b668a33fec5c413dc878ee6c6c84086ab4fff054685f2d466890d4d46ebfe
MD5 9f1f1837d7dcce5946651e8a3be87d21
BLAKE2b-256 c18d8f4bafa0420584f5032c8e324a4a71e7d66032a4751972b6bc828cc0cf27

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp313-cp313-android_24_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-1.2.14-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 56d020eec2fa99ca47914bb635a1c60ca2b8c0a16289ee3c0a2c0c57ad068eff
MD5 6b94af29f72226e2dae9cc7130586ffb
BLAKE2b-256 90a20789fce68d3d2398ee2836e81497fb700f91da13f2df220c107839e3c5ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be612395e0899321732835372e317adf75fe18cbeaf1b51b9df5af478a4c4674
MD5 bef4d5514c7a7dcbcee9810b8683d480
BLAKE2b-256 052c26ab00d1cf50b77407ecafd9117127b38400101a0b73ca1deee90a85bd28

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a9a0925156b9ab9145193b21fbeab71efa9b607725e557bc88dc013c3da4ca54
MD5 a05e695ed913c37ea6b6e00139c96670
BLAKE2b-256 db0dee78b7cf721e941c2931e98f687bd21bc9f0d46ee300b4de0a69e3f3fc02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad8b6c0ec611170af13c0ddac0b3191a20dfcd69360a06df7e60faaae14c5b29
MD5 975c9f8f84cdc92a1017369d32300052
BLAKE2b-256 6cf4583088cbf9333263fffa8c4169e81785deca9b1146d5e38e6625197334b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp312-cp312-manylinux_2_28_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-1.2.14-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63ec5ccc659f5d8dcf6b9948595abb0193a472998dd5ee23f2d4d43b73bbc169
MD5 1207df24fe585a1256bf5eb1e24a8f81
BLAKE2b-256 2c49bca41ab16905963a1efb045f122e69f89e8ead682a3be17a02e0701aa099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8b5cf58e49b3afe5b0d9ccf7eb621b90ff54e1e1f65f6e60de7f0c009498948
MD5 4acf4e4bf65fc94e585d9a8c5d2e8389
BLAKE2b-256 0d356f41b0f97a8a29c352204d44cdde703db5057f7507f03a2c3aaf432c01ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec6aae1f9857609c99f1a7526dc2409a8a8dcf60ae2003b56e8afe0daa2eb909
MD5 ddaa20bbd2951d445692df52e3776b58
BLAKE2b-256 5e36e587b7de0518375404d53a1973d87fbf3b3a6f8c71cfd52149a83b4f725c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 06149db138f27d6078413b329c8f3c52ff06aa9c4be7e23e910d397d696a94b3
MD5 35c88d8ec5003ae93f56306f9e2c7e01
BLAKE2b-256 8c9cd05f012f0c79bb4f183d0d36c5835e2842fee53c62000b4f699f4390b871

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 76e6fed9cfc134eb6dc9f03b5067aafca9a76634b9285d65af3f036f846267e4
MD5 93617a2ee15457e450132664f5722d74
BLAKE2b-256 977e89d9537a63ebd31b07e7bac0cb705a53e95b5266d23fbea620d82d6dd45f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f290be5c7cf99615215b93e436547bc6a2ba9b0f90d31e222ef552d3ea64d959
MD5 55ade6afce2ba1eab4785f39515dd36d
BLAKE2b-256 5ca42b88c763042ca7eb85795e08f0c1fe8c65e42564e4ea773b9728808453dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp311-cp311-manylinux_2_28_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-1.2.14-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d27b56df0102221e21ca2d832390e7cc0566764005a7f3afa7938d4d2b52cabf
MD5 d91b51eea19ba55c944ce3dc8a18c720
BLAKE2b-256 bc2aa98c31e85aaff40ea8650bcd1028575061b2986ee6e4e0cfc1aab0157587

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fb81f1fba57f06037f2d027f107229b2747687ba4b5447f7341817d47a7d749
MD5 e25c7903dd9b3c2a064bd5fe73688d86
BLAKE2b-256 e71a5c16b88b1292733daa78527d65d94521746c6c47a12f55f81cda9e84ca34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d49fd810976c0386167efd9e3f6896e3cf6dad47ba8f64766902d39de04c8673
MD5 60fc08051702317b5bfc53e3c99e82e4
BLAKE2b-256 be694961d0cf497161a9b8e00c2bbac50c61086e1250796430d5155bbfc2d96f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a86ac595192dacaba3e33e488032a5ec9958188c1bc2e24c6cb904b99e3e6ce5
MD5 c2b14138dbf3a907fa0b56903181b8e2
BLAKE2b-256 5d7c8426cf4e901ff609565d729c93d72214335f65f1d31a9b1509979e26b729

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.14-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for dulwich-1.2.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 76682692a3cd02cfa512b152f8ded718f0e4b27e51f450224badf3e2da09055c
MD5 8cdd2449008a291e2b1c7793ef9af233
BLAKE2b-256 e41e2b9de3ec74b8b9c695b8fefa2a5217a867ddbff17cfbc8e958e5dbd70b28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4e5e71ced26bcc1ad4b559d230c5934982a7f1ae71aa1b1d42462e59e2912a9
MD5 6f5ee3d432c5e0b495b576e94a1c8331
BLAKE2b-256 f83889178d23618399e887cd992b0a2112ea4ce7482d64d46b375639b7a6a8ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp310-cp310-manylinux_2_28_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-1.2.14-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-1.2.14-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe8d1f50e0a6f43058811f9c0d8c131f79687d35c3d7991c328aaa4d6732a74c
MD5 c238055033340cda3df6e6b2816472c9
BLAKE2b-256 b801f01e85027df9b0236e36a4351419284d8c9ae01e78175f046b0d9d15c6c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 638e17e328add18cd891d9e9d94bf8bab167379b07ef9bb8ce53cc781290f2ba
MD5 ffb9b1ca2e5f3ec1e544e973cf8bae9a
BLAKE2b-256 e00e4451fca3fa575d7bb3e64b5e009800cd18d316055712704752f0747307bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.14-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe7a54b88b48672776bda2c2d5eb7fcad526e8c516f54306624b8317ca713984
MD5 726f7f6393f611bd5ce1f93fbdebe54c
BLAKE2b-256 d8d9fee9575003f253bdfe6a62ba3533200d226820b63a9d7a47d9fe07b8d4d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.14-cp310-cp310-macosx_10_12_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.

Release history Release notifications | RSS feed

This release

1.2.14 This release

56 files

1.2.13

56 files

1.2.12

42 files

1.2.11

42 files

1.2.10

42 files

1.2.9

42 files

1.2.8

42 files

1.2.7

42 files

1.2.6

42 files

1.2.5

42 files

1.2.4

42 files

1.2.3

42 files

1.2.2

42 files

1.2.1

42 files

1.2.0

42 files

1.1.0

36 files

1.0.0

26 files

0.25.2

26 files

0.25.1

26 files

0.25.0

26 files

0.24.10

31 files

0.24.9

31 files

0.24.8

31 files

0.24.7

31 files

0.24.6

31 files

0.24.5

31 files

0.24.4

31 files

0.24.3

27 files

0.24.2

29 files

0.24.1

27 files

0.24.0

27 files

0.23.2

27 files

0.23.1

27 files

0.23.0

27 files

0.22.8

47 files

0.22.7

42 files

0.22.6

42 files

0.22.5

42 files

0.22.4

53 files

0.22.3

46 files

0.22.1

47 files

0.22.0

47 files

0.21.7

69 files

0.21.6

56 files

0.21.5

56 files

0.21.4.1

1 file

0.21.4

55 files

0.21.3

56 files

0.21.2

56 files

0.21.1

56 files

0.21.0

56 files

0.20.50

63 files

0.20.49

62 files

0.20.48

62 files

0.20.47

62 files

0.20.46

31 files

0.20.45

21 files

0.20.44

21 files

0.20.43

21 files

0.20.42

21 files

0.20.41

21 files

0.20.40

1 file

0.20.39

1 file

0.20.38

1 file

0.20.37

21 files

0.20.36

1 file

0.20.35

21 files

0.20.34

21 files

0.20.33

21 files

0.20.32

21 files

0.20.31

1 file

0.20.30

21 files

0.20.29

21 files

0.20.28

21 files

0.20.27

6 files

0.20.26

21 files

0.20.25

17 files

0.20.24

17 files

0.20.23

17 files

0.20.22

5 files

0.20.21

21 files

0.20.20

17 files

0.20.19

17 files

0.20.18

17 files

0.20.17

17 files

0.20.15

17 files

0.20.14

17 files

0.20.13

17 files

0.20.12

14 files

0.20.11

17 files

0.20.10

16 files

0.20.9

9 files

0.20.8

9 files

0.20.7

7 files

0.20.6

13 files

0.20.5

14 files

0.20.4

13 files

0.20.3

14 files

0.20.2

16 files

0.20.1

16 files

0.20.0

5 files

0.19.16

7 files

0.19.15

9 files

0.19.14

9 files

0.19.13

9 files

0.19.12

8 files

0.19.11

1 file

0.19.10

1 file

0.19.9

1 file

0.19.8

1 file

0.19.7

1 file

0.19.6

1 file

0.19.5

1 file

0.19.4

1 file

0.19.3

1 file

0.19.2

1 file

0.19.1

1 file

0.19.0

1 file

0.18.6

1 file

0.18.5

1 file

0.18.4

1 file

0.18.3

1 file

0.18.2

1 file

0.18.1

1 file

0.18.0

1 file

0.17.3

1 file

0.17.2

1 file

0.17.1

1 file

0.16.3

1 file

0.16.2

1 file

0.16.1

1 file

0.16.0

1 file

0.15.0

1 file

0.14.1

1 file

0.14.0

1 file

0.13.0

1 file

0.12.0

1 file

0.11.2

1 file

0.11.1

1 file

0.11.0

1 file

0.10.0

1 file

0.9.9

1 file

0.9.8

1 file

0.9.7

1 file

0.9.6

1 file

0.9.5

1 file

0.9.4

1 file

0.9.3

1 file

0.9.2

1 file

0.9.1

1 file

0.9.0

0.8.7

0.8.6

0.8.5

0.8.4

0.8.3

0.8.2

0.8.1

0.8.0

0.7.1

0.7.0

0.6.2

0.6.1

0.6.0

0.5.0

0.4.1

0.4.0

0.3.3

0.3.2

0.3.1

0.3.0

0.2.1

0.1.1

0.1.0

0.0.1

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page