Skip to main content

Dulwich

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.15.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.15-py3-none-any.whl (733.1 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tWindows x86

dulwich-1.2.15-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.15-cp315-cp315t-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15tmacOS 10.15+ x86-64

dulwich-1.2.15-cp315-cp315-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15Windows x86

dulwich-1.2.15-cp315-cp315-manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

dulwich-1.2.15-cp315-cp315-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

dulwich-1.2.15-cp315-cp315-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

dulwich-1.2.15-cp315-cp315-android_24_x86_64.whl (1.6 MB view details)

Uploaded Android API level 24+ x86-64CPython 3.15

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

dulwich-1.2.15-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.15-cp314-cp314t-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

dulwich-1.2.15-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

dulwich-1.2.15-cp314-cp314-manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

dulwich-1.2.15-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dulwich-1.2.15-cp314-cp314-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

dulwich-1.2.15-cp314-cp314-android_24_x86_64.whl (1.6 MB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

dulwich-1.2.15-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.15-cp313-cp313-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

dulwich-1.2.15-cp313-cp313-android_24_x86_64.whl (1.6 MB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

dulwich-1.2.15-cp313-cp313-android_24_arm64_v8a.whl (1.6 MB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

dulwich-1.2.15-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.15-cp312-cp312-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

dulwich-1.2.15-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.15-cp311-cp311-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

dulwich-1.2.15-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

dulwich-1.2.15-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.15-cp310-cp310-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dulwich-1.2.15-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.15.tar.gz.

File metadata

  • Download URL: dulwich-1.2.15.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.15.tar.gz
Algorithm Hash digest
SHA256 e98f775601846fb4d44a384003e93c53c42b0c9796c8fe0cc3128b8e2e0bbf88
MD5 0c69dd8d6f4dc7fc67f6b27a53a83890
BLAKE2b-256 63b95b68d879282190b0429c815d582dc1f212d4910aa22ac7c1aff39675a719

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-py3-none-any.whl
  • Upload date:
  • Size: 733.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.15-py3-none-any.whl
Algorithm Hash digest
SHA256 5c863992962bab0fc5f75be132399a16f670f2a9283faf9aaeb953fd8891db83
MD5 3326d81ce3dab71af16911b622b34857
BLAKE2b-256 3a96b4c8f1cf6c69811098415903ec299cdea87576c51b0c1f13f21215368c63

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 53fa50546d72a7c8ebda380c80c399bcc3e46509caa9762791f202058303cf2e
MD5 3ed007d0e2b65b25935343191a50fa74
BLAKE2b-256 50902f4ae3ba60feedf7ccb2422c04006b0ccb3823f18eae15f90dabe4e714b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 18dc286482e7c76df4865421385bf98ed93aacedf5947bfe12b3d1e2528dd36c
MD5 9f12bf7b724eeef2a874196b1863bf2e
BLAKE2b-256 dd1b8ae20b8716d15a2ccb8e395a66921728903edf58a4b9e30046ad7fb63839

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c18578b0af944eae2198bd3c81084a2f2cb8eb4b993fb5ce95ec823764d5b2f0
MD5 d86e5fc24f7931e43a6934d78f3aa03d
BLAKE2b-256 5b90bc94d35dcd9caa1819372d4ad7a2693032397687961cd30793648db246c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63074719524d876e0688cd522dbe9c84aaea999a7018507db24a8fc134036d73
MD5 04cd6b31ca0b8c0a23aa8c1eadb57b8f
BLAKE2b-256 42d5059f76895bc1ce8df673b7ba7ffb27655420f46f6709a526e6c3c9073b3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed792ce5c5b21ec209ea7376e2a22b4a2891208b7cc8a88febf539d4c9013c24
MD5 6ee525cf5ff4cb45d7bd544561d0ffbd
BLAKE2b-256 b351b1909717f1b3498627dcf0c37031d4cb25652cb3495954071897c1be0d2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2d87c76063cb29ee334e7f29a74dddf2dae36447208c84d21576451c24a815a0
MD5 60b09ae0773f8415fba979bc2d4bcd1f
BLAKE2b-256 c37bd13e819de2209740be3241cd78899fabb15957e8c2c4d43e3348c4dfcf10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.15-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 0b9f8583e72942233ea79d0f4cf931e963cf8b47255971ae4ab197129824c7e5
MD5 a24278ed4aac1a212c5ee98dc426e8f0
BLAKE2b-256 855fcbfcbe4bfe00a73b3d6958da9eecf70089329d0089eead7b10bdd8982398

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 e57dc844abfc7973baaa8dd7fe248ebc0b4ee1c879d49c041599d4eb7148fa24
MD5 d0034ac793e3f6a9325a5b7f5efae99e
BLAKE2b-256 5e8dacd1dc88be4520afaa5a1eead5933736a10830bcd79835c44701db3681d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b6f10587589f759747d167d1b6750de62961b17b4fb8c2be4ead49557c50ab9
MD5 37756a6448a173b9015c6e391c02fbf6
BLAKE2b-256 53e93f337ba533ce5d953f63f8cd97016f44e3352686d4813b6daec89a7bd3e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f157812ce877d50a93336136a1b9dd2b368395801a96cd8484c257a4f4665c23
MD5 94acb06be3b8e2ed027295d6a53c0b1c
BLAKE2b-256 f90f7401ecc53624bb0f4ee1e055d857402295bc673e0da564ebd4573e013cd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caeec3ce1f713120a33ac48ff11cfc78cd2c148371ecaf5dc7a68d28adcf0ef6
MD5 425119ed61bb9af0aebd9c84698ac5ff
BLAKE2b-256 f9a8ae29ccc30a8998c90a61bc2d41fc32372019624229c45add231869e59e9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9d24079adc550acbc9cf69ca9b33bfc9dd80f00cae779197fbd5535b3e873c6d
MD5 4d0b62e136b01c41d05ecf1c7e0aeb3c
BLAKE2b-256 9639e4a1506bdee10f8b3c4f61556a56b4103ede0bffb28d22ead400980ee56c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 24a8e2705b839b5992d2899a55d5c0a9609a21a8b9a825debf952fd42b748481
MD5 e1992cfbbb31f4ba5b8d43e6b8c7d421
BLAKE2b-256 709476bca4e007222926da1c26aadec0444eaa6d16262451dae142e4755bfa53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 28d21f59e914aff3ace677255d2436a282f3844c95db5f27b9bef2d0e2e7b378
MD5 e3b88644de7d0f067915e26ccbd9a1fa
BLAKE2b-256 db4658d08aff4f4b51b35c1a9c749edc10d92e1bfb7f2f80f4fb6bad55911d04

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 06aa6bad114e3823d4bb380f1369655189cdf5b7b50d7d5a23445946cd3ea9ff
MD5 a8d066bcafb0b2c5e69d121406664f85
BLAKE2b-256 b0d699510d7ab73d5c275965cf91e86d330396f7c855eea2e2f6bd442b65d7dc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 601da25f9d39cc802c3523cc299310c93f50a4de70c529fc0f14c7b15bd7a8c0
MD5 90e8ea16d2def3be306f750715ce6770
BLAKE2b-256 4539bdc0109da0908421d7dfd7d110f5ba402f985caaf2feaf33337073992e73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5fe361c6db07463c32a4c0841abdd7285e3686674e3eb4b9dc5944b531e74489
MD5 58e151d83d513670e606f5b82bb6a301
BLAKE2b-256 da73f12ca680f45d5200df6811f3be139ee9a344ac602ec9e3e28152db29dad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba9412fad4e3548971f0a4c8967341b356771578035876a4f01a762a42f2527b
MD5 780605a838edf04dc4aeb4f9043d9c0e
BLAKE2b-256 d61e928fdbb2d9908471fd24db8cdaa327d95db1880d3de55b39cd3bb6c808e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ab042f02da1e4b19b0777e9a3236f77a43faf043f78ec2b9c8add08db0836a2
MD5 7523601fa97cea3229dd24f4e29b991b
BLAKE2b-256 b6274dc9c43813f5937c38c9dd88ebd9d9ac45ff9d40f712f26dd0f69940b0bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bbb42d5fdc17df2a7fe4f0a8d7439be2b06d97769c4ac1079280e6fa9a28ef05
MD5 1052720769132b79799e01dfccabbdd3
BLAKE2b-256 7440bb83a28e975762ca4a1672faa5f45b241644d66fe018fcfe0964c3941f3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.15-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 60e46a95cd866b01cbc1843541cf11033dd189c8b4767c05bd7b4ee0600cf6ab
MD5 5f3fad6abfb519534921774e77cb6f77
BLAKE2b-256 293cc30f1eea85f2d4486ca0aa85979974137b1d2f271a050345b7cb9c0ec4df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 038850cbb88b6d0f9553f30b31f4aeb59c9497a55077d21da08a1a429f867fb4
MD5 b716ca1d3137a019d5d9bb9400a5acb7
BLAKE2b-256 0e58756b0224cf85f6904b701b214c4870f03582b9b75b6e558ef478b1d1c37e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf77898f405f258a31d597cba179dea05eefb50dae59a3221c50a7f9113cc691
MD5 773056619f80395f1aacb1ddb980855c
BLAKE2b-256 8eb3c88fe72cc1d7213060395ba5757034b3a9154cfdfdd4d886d1f9e43d5004

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d5fa7a5e26ab776311af4534a93b77a2d36d4f1b52ba3ab74a87edd20583996
MD5 d99140891d0008ae6e3c93c55f9cd95f
BLAKE2b-256 a95fd6a2def67402a1503eaa4ceb76d6b9415845d7fea389b79cde51bbf89bcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ff2a7180f6a9f7b9ba50c785b0af03973871fede6aa31ba0ba561750eca8830
MD5 91fa0b36534fe3412cfdf205542a9b24
BLAKE2b-256 4da6a5cba13ca8ad86a872fd756a899abeed6571d01ed77ef63f6524cab78a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0e3f08530f9e4006a6ecb5179f4c3e37f6cf93c93449084e2c15a3c388fc0973
MD5 200d5f89b4d975e662e730d535543aa9
BLAKE2b-256 331749774aa026967e5c56a1081bcd568629ec491700bfead55ca7306eac294e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 390af2baa9b5114258f6770855b70c573cbc16466eb5a1a49d210c1dbadc9dbd
MD5 0f0af70c95f2e1dfc24cad5e35d69004
BLAKE2b-256 24a02f9dfac675e34cdea4146c50baf99f25a7c0a5f6935a6fba9a4844df7ca7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 d833ba0f3ecb34f8743bba7357ec0efaf9b496ba01f24bbe46c7f953b2128ce2
MD5 8af32e26b4ad5adebc92156fae379e97
BLAKE2b-256 ccca17d6be76ca99d49dd90e707db192dd99ca65b04262766af787a7fa63285a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 156673b2486a12ae45a0f3150e329d0907ef6af38b73d034c5c06c8047a49b7f
MD5 7c6b6f5eedbdf74d068c57a024828f73
BLAKE2b-256 c20f4d4efd392285f83faf37c85d35e0ba240da6573dc8dc576dec0a14f02dc1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4a802aa1cca5eef1487a490dc9515714493032b0b972b37accd2d42a3bf7ef70
MD5 3510fff818fa15d9725f31b8b4727523
BLAKE2b-256 d7a763c08b856e1e020f77993bcb04883f93904ec1688dc23bc5cce0c0b21d4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82d4511bec54b72baca40b728f3fcff3b00ab3d2281cfe4fd21c59d7e689406e
MD5 0120f051c8d9a2503cea95e697af31c0
BLAKE2b-256 00c016c7707f832b07f0b625a0f52d4a618e3c7530a81145c18ca746aa6014a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 38b66910c0bc78c59964ef665df657833a4372ab6a4e5ae2969d8c49d9769687
MD5 d317e5f99cbee0c9ea66afb4e4e16674
BLAKE2b-256 c2f71291d8bf56f42ccb391a6a08c07e0f9645d6098031d5389c8a2177fc8582

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff49c76ed843f43c025fa39a4491af360852ca2926111ad1ce91090b5b5c6ff4
MD5 96afe0bad113b96a1b11797a92b5527c
BLAKE2b-256 73cf184ef119caf572d0c416f0ff3c5a821507b56e2da3050c4b766796c23315

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c37e9acc1060cee69187e34c29fb02cc74f859d82d855deb7866dc3011c8131e
MD5 fb2319112c4ce6244cac392150afd6e2
BLAKE2b-256 72729e293c3dad90936050f346d55a6fd4535f57db79b64fd9895b3182838f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 0442ef51c02ed31773b3f279b3d05060f90625a3c8bc14b4adb75c3fe18672f4
MD5 2e95d0b71000cd3b362ffa8ffeedf9b1
BLAKE2b-256 dc6075bc28e8495c910bc0bdf483770470c8888131f0a4780210d32deac87f88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 6364ed238f6957087b3c544b3e0fdae0fcf9c936a50c94dccbf063d4de6470ce
MD5 9231192ea514d556f5753a9bf75c0e53
BLAKE2b-256 ba2fed4b389c2bc16feb0de8c454240b28e35d4f1292234f76ef44dab5e9a309

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea8587514932be2de0315a8c1143408db3ba9cbc07fe118b9125807994d7d40f
MD5 0ae87865740bbb7e5dad6f4c46706d40
BLAKE2b-256 e9cd817327c302255a7f417123e2a3d266d289712b6cd4cc8a4e791b37189c5d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 38104752e93b460d52a6511081902bcd7287999397d55e3e2cde33fe7735163c
MD5 9e2f681e63e909e9f6bbcaa1e932a898
BLAKE2b-256 f8226c8eb2c7193b4f2ff8cb8fbe8768408401e278fd2e02590d35fb3db50c7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d384c3a26fe6f369671b74331aaf25f956c88aeaba50b70bfd3aa6a12d431423
MD5 bed8a2ae08e16e19c56dd2641fe64441
BLAKE2b-256 eccf59abd7286933c61dc1239c9cebb0482282ae9b4ab6dada39c7248b0bc8b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3731e3e2e42326154bdbe67033347d0c7ff2de0db43409a4cc5998e15361f717
MD5 dc0bb632b6e3554d80017b0d61840d04
BLAKE2b-256 724f62f119f6bc561e003aa034cf6e5f3712cdb78a5ff5e49bbace1a98bd07d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd1d7c3261d0ebe8e2b59ab6ab1f68f520d0c062ce179af17dd8e853f2c32660
MD5 860a4a760bbed93b8266ad74d8251957
BLAKE2b-256 37a92e1ead6983ab82e6bd795385fd26a3a54e7688ad5cf33bc6578c490a375e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 58c7498c42b90fe4e2d66d50757826218a1f795a0804c9f317cbe93496f113d7
MD5 5f3500bf40dd826327efb33451b857cf
BLAKE2b-256 fc2c182446163973bba540f7fc6fa43a54d5dcf8b78d7985b2fcb04cc1732c67

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 361c0057fa8818e722d4ada4e6b51cf12d260344542bfe98b87283d9fc0d3ed6
MD5 640820d9bdc87a13ee2ccc04c4b6d512
BLAKE2b-256 44cd83e10468f00f8b3666cc52376463c5512c9a6b3ad88fa1cc022597b8d8f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 744083ff962a30a4ad8cc6704f8f50daaf1b8c5db00208696cefe2cd15376823
MD5 283aa0719b0d2b5ba858ce4b7cae7365
BLAKE2b-256 77c8de1f782168e40254c9686420b2aeae1ba2bf8faf3df8874b1c115bd93cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d191b698e86f3acf75439bfe463553319ad687dfeedc78adf8f2660a07fa8280
MD5 58918213ba88840d8c83737a7de7f1be
BLAKE2b-256 febda2dae3c0cf4f1f19ad61f28586ef5cc84116f9a5062e625b0a2c4eb063f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b83f95cd0ef83ab9c9acd79b51349e955964c8ec8c8f6b011e8a1e839bac2746
MD5 aedbaf8a263a4eb4f51564210c76da48
BLAKE2b-256 27a4a268d4791bf59a5b87ed6a33647a4fbd00148c8167fba42a531071665122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8cb3ed383a79bd485306f9bcdcaeafdaf7f82744f4dfc44ef5167fa4e2e4746
MD5 a8ea5471da0d8d4ca2ba1543eecbdf75
BLAKE2b-256 afc2fe4099897a203ab3857e42ef8584cb90c16d165cac5c0fca86e0922e9fa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efcc1d6553cad7b357822a46a64ad0626fa57870f480c4405450bd9b68190e9f
MD5 0b4fb80a7a0917ca44031bb5d3b19916
BLAKE2b-256 7dfd8c316e0dea37b05f1193e9e26ea68d8c08586834fab740acf6b14f79385f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 292444e3f520cb48020d02aaa15111e776a4ca740e9164780c5ca72ee50a1d06
MD5 dce962aa969d23b599458aadf9bdc6c5
BLAKE2b-256 d0a1fa8a1b9d2eafaa523cf0117ea585b5e5128c9d7dd85710082c9b420dbf5b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.15-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.15-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f115f03bd211020df7ec0cc1fd2faf69fcc92feda747a70db676b31127b9711f
MD5 2785186be3d001947ec60d9f8a1f0002
BLAKE2b-256 d3cb0fb6b703083fa3e1015127708bc6860f2393a6830ad24e7fb3111728d603

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04f50ba0235ec1b3ab9d7dfb5aa4e1dbf139ef9a051448fa511f427457ea13ae
MD5 b7a101dafbfcd386cb0bf80999ddaf35
BLAKE2b-256 ba95dd4802bddcf71bdcb9f64b3bf6708f1d2fb63babb2b4b80a116766c5ba13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7427d25e0c6c91d84e8c45daf4618112fb38c2adc543e2501b3f3d1f2b65bba8
MD5 b14130cb984f5448fe3a431ee83ce9f8
BLAKE2b-256 01d9c24fc46d179d70a45ff9879ed3358b94bdd683b7e91dfb17b77ab043065c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dda0e1a72501c0a573f4bfc5f5b698e1a832008419563f087b63e7b1c8f20b15
MD5 a68f354d8b0d360f905231152af14937
BLAKE2b-256 f163da46287e5803ef0a9b480039dcbea0e3c24ec6ed6aef146fd2c839d8aab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.15-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e5020cf329bac177c93f1f11e34d6064331f2778a5f9c5d0c24a90242e6f55e
MD5 359af66675e59cf544dca362885122ce
BLAKE2b-256 a5f7fb66ea9468511b00a1244cfa3ef9254db98cc495cf4f09586516f2013bd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-1.2.15-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.15 This release

56 files

1.2.14

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