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

Uploaded Python 3

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tWindows x86

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15tmacOS 10.15+ x86-64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15Windows x86

dulwich-1.2.13-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.13-cp315-cp315-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.15+ x86-64

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

Uploaded Android API level 24+ x86-64CPython 3.15

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.15

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

dulwich-1.2.13-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.13-cp314-cp314-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded Android API level 24+ x86-64CPython 3.13

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

dulwich-1.2.13-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.13-cp310-cp310-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dulwich-1.2.13-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.13.tar.gz.

File metadata

  • Download URL: dulwich-1.2.13.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.13.tar.gz
Algorithm Hash digest
SHA256 77f0d7012710da1ba0742a197fce215b0e1a05aeb9bc8a03ce94ccd2644317d8
MD5 e8d1fff7aa3b65fc3322b1a48b9554cb
BLAKE2b-256 ab7d022515919b5ee3175a70a7e52049c4a2637008a4a49024ad15db1531bda9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-py3-none-any.whl
Algorithm Hash digest
SHA256 edadd2f1019d879f80ab107a8587cb7f3b72d077b23facb8564700e7e3ce1758
MD5 2f8fdb5076b715c4e9aef0c2a3c39323
BLAKE2b-256 5e50838d9c3da15f94b8f36c69e7abe3fea5294569a1dbda3812a07fba429f54

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 1f8da2e4db49d11194eb87bc520e3dc2ad3f3fa9ecea5f827716cdaefb08f2b7
MD5 47152ed432aab229131724cdcb0b2a26
BLAKE2b-256 0c55eb9e83dc73435d6d65cd831f4af6190fe85ca10435c0d4f6191bc3629a76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 90f405ff4b8bbf3d45ce339aafd4be2aa6a2689996229817b1decb2196b316a4
MD5 cb28734877eb0a4b18845408f1b9c01a
BLAKE2b-256 87d82b4cea9ebf38ecd6df45c70a92d11b6cdd287ef592bf677c8aac5c0e28a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b832922190662896e057b8d84fd28d07d7c8eb9cbe2519348142bb909cd693b4
MD5 35117f6ed791cc6160777e511ebf9d70
BLAKE2b-256 ee6bdbeece5fa1dd39416ba7b525e6ae8f9f96f34c1bc9de58f6a398d889cba4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c226635fe7dffdc8718b177a11b904a4bd5ff83dc9b5a443109458603f944489
MD5 97004a8aba70566d39e10d19bea9c4a6
BLAKE2b-256 82529c7a9ff65cdd99237220f88018f3b4b2f4cb910d4341b9625c903796ca64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a651d823bdb1762f1e83b817332a74a757f8415f400b4c6e95a19458ac6710f
MD5 736275cbbdd4a558a0b8d66070da7f8e
BLAKE2b-256 18723f29d7f82fd5c5b7f1f9c257db2573225e1b0e1a5fe9c0696c6bd003c7ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f7c85edaa84d345e1284d5db63539629c77f17146feee8debcace2bd90bd0aba
MD5 629e59da9095c4669e9767e37d7846c1
BLAKE2b-256 b63b3fab12e96b6bd3b8c372321c9f9c335c56b6c288eb605308139870fee25d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 57a5ba814066b8573dc61b4e882ddcb5f3f0da24475eab1cc8fd68b760492e0e
MD5 133f287def6fe6b16b28143449f847d7
BLAKE2b-256 00f4dfa33a0e6b10f6930527cede6ec73db9be5afe6551da0cdbcebcb1dcae4c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 f056d3516fd586c9ddd116387521cf7cb2104b3a097823169c606177ffa17089
MD5 9291e836573a61e3d5bb24d73e682b0c
BLAKE2b-256 f0a1720fed6d5f3133ddd86c137b09c797cfdd62c5520f4ad302eacee8c20a27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33ac85b270d2410fa1fc962caeef14a63e04de46dd76c5080f558c5d9752fa04
MD5 1d28f6157f6daf5fe956bada84cc8abf
BLAKE2b-256 e4dee3d9e52ce2bf06c63eb360bd467008cdb030655ccf98100bfc72577dd926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c243c278cb3281c8f6876b3621f2396548041aa316d91f3c78aa2d7a22043ef9
MD5 1701d50f01927c4efd6374bc27138ac5
BLAKE2b-256 cc954a840bf858b3d83087de36f5f768ff20cc464f0495a37d7bd8fd97cf1ac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b7a62485d988b26cda1e5b7999b6e5fa6adae8a8c3ce4f11531bdd91cb86432
MD5 9a11ddaa2a9fe602fab811a2420c5243
BLAKE2b-256 e2a95835c43f27b2f97c622450bb78ce2a86d66a31646f912f560abe3f036607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bcb6e55dce2a086da6073e0eac8ee494254eea1e73b97bc2ca1ee00a93229e42
MD5 a6fe6aaf8245de9fd535ca6a23cfa26c
BLAKE2b-256 fdfb29d205b3c40c6976f70432abe0319368b0f7270929cf43bb83c3c5bbcc95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315-android_24_x86_64.whl
Algorithm Hash digest
SHA256 54cd054af874c921e42b8c02f14441e02e84d8d503026d29568d4f9d04ee4e06
MD5 c21d7b766606efd090066a3ba26df04c
BLAKE2b-256 c7a8c3253d93483736cff7a4e65e2916a3c7735ac413f9894c97603eb3a77584

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp315-cp315-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 3148094eb5f33957d9a9f9a82f9fe820a0c94ae5d21f1dc335c2c3875a6da0de
MD5 324a6f15da9c78f1b99aaf588e2816a0
BLAKE2b-256 ee7c35bb1ef968a121eee58b7ff186d051148f08bf7cdef0b185f4aa36b8aac2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 97b510a5d325795abaaaac7d1fc31475205086e43d5e2e9707aa2d0009d2ec79
MD5 ffc678e0c8e80598727409fbe4fe57ab
BLAKE2b-256 12431d33c0b86a3c093c688984df4060766bd96a6bf44e4edad062c72bc67470

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 827c43a17f16118282da4af5b2df506b1ca65d5193517b58673ad58892be49ba
MD5 0892262e2d917ad928d9bcee32b1cd1b
BLAKE2b-256 a6ccd7010777a1a22c88998a6b5f0d7c0184cc480be55b41813f8c0661aca80a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0a79903a43491804852333f4e85fd484bc5e35ecf4fc836409f8194e3f1fc0b
MD5 e468a330339add487d33db25bdae5e23
BLAKE2b-256 5d0e8b9157e4536e78ab80b2d10759408e026d5f2ea62fc1fe5a386b89f7b4c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63c26d34f53fe972e64fa6a9f6d7b013fa616a8357893e648710799e2e238db7
MD5 2ea0cd0a5e8e1546d365b3add30d9f58
BLAKE2b-256 460f10fadbbc7efbb103f747af24e690393e6f6c29d85acac5febb34e35cb6e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43e772c8dee8938195f305e54972b35a4ba765ab6e4c1b294e40031af54a9408
MD5 b1abc5aba45b8e6c3c9674c4f7413e11
BLAKE2b-256 d17ae21849b1b6343989588829a064956ca87c9b0982edec62db40b458851842

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f1f577849f00deecca1ec04f355082a2857c7336490f57d76d275178e996ff1f
MD5 b65b1a8879dabe1ce55608b8e24ac38d
BLAKE2b-256 3e98092c0f2fdd87996a59644fb1199714b44cb810a605160d73bb964d283c01

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9c264c9a02e686d9d3bce317383245178901c406087759ef5e7284ff97e0c474
MD5 bf0e6237ac7fe4e7150eccf6edcc6f1b
BLAKE2b-256 1869084defeacda78a4daff1409ff189f0f09041ab4a9cd053d8e7f6e716bdf7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5aeb59182d9083434f26a228516a2e9addbf3b043bd0a8a412809f7b4ffe9a26
MD5 ef6c428d1452ee70ef9089a13964fe5d
BLAKE2b-256 e023c7c2afe9e0a812f244b91f282d931e78d99578ab4c178990d56e4989abd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c11ba8725d8808dee69e3aec1aceed3b716b16da3136c31499b271e0a79913c4
MD5 5e44b710932ef2e2fd8e98bb38d584b2
BLAKE2b-256 4575d94f4317f09df37638c81ce90d0988154cb8d537504a9d4c0f5837cf320a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b484a49c166c2e5b2deecdb964d4725a454cfcc87970746f2b2faac252d0bb72
MD5 b86024369f45a7cb12233086f483e3db
BLAKE2b-256 470dab0e5dd1558b15a78fa2d75c03b5af44823b8e1297ffcfef4bb66f24f9d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebe8f53ffc547fa063402b8cb1f306c40a89b559a425d28325c4cf004f926275
MD5 249f22bce18480843de3a38751c891f6
BLAKE2b-256 48ec5a084b29ff31060c9099f1dbbe279b54ac72c9e262e32cb978abeac32199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 411b8f230a1f63fdf4b8ea59c6f898dd0feb7631dca5f18da1f52b29deee0cc0
MD5 e3964c223cf9b84e284a4435bd1bc596
BLAKE2b-256 587eb9cc25afc6aec8d5579ced898096bf68452eadada0c7c85d2e11812f55ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 48ead4bc4fdff2bbe71b1a29c7c1a771eac9f15b46203f73c288e1d387a5a248
MD5 0e8d84806c8a21ebdb5f281d551da95a
BLAKE2b-256 8eec728c766e148f55550d189c2bf5b49189eec11ff8b56f72dccd30f1033f1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 620de3469df7828d8f6a43c75a0b938c1ed3ff01304e749f04fc8c5d817d8fac
MD5 a1c0b466012417919c5f7a1cf8f47b69
BLAKE2b-256 9add9269361ca1eb7ec945c403dbd43adf56b94d40c14f1af48e042c7659fe4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c0ad72783efdcd47b71e33f154672ff78a1c38d2619fb8deecab3621ee56f98e
MD5 9a1886a10f95ff5a1d658fb710e529a8
BLAKE2b-256 f3863908373cbc6e49ae7a153a4b878d59d42e64a31ae95af53f8375fc633803

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 adc631aa81973ca67696383998916a06c691b2cf22aeda7ffce77c683a3b676e
MD5 10036c52b644f7b41a385ca701f5fd8b
BLAKE2b-256 e55d394b7afe52e25357d935cbfe6104879b3c69b4911749de46b3f544835abb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d258d59a7af83147d5c888e5ab3a53f2d37ad4ae41728d70969e0bce1ac7ba83
MD5 521d8a71c7fe103af0ff67096d9d7850
BLAKE2b-256 5c2ef321b0ffd3168d795aad5043bf17190ba8481e293cd09154f0cd3e155134

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7805fbcd07a542502e50f7bd63cb6a2ab1b04fa5803bf2ee163866e8c97c6f94
MD5 b8cf961719e1a5f1f3333276fd1a5d25
BLAKE2b-256 657e52324b023c728e7e0a3397d8388ef85b2980d9f436d34a4b0530f076f5ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65e49ec4804db7ccd8c657b03a77ea10e71b8bcb4ddfff7e7f14755ee4789db4
MD5 85390c6aa3c3a54f459eaaf7928cdb20
BLAKE2b-256 6a3a527441be05d132167122c3cea0899bc024164d30230a05a3131afd111f08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5c9d0d51efe9776d633d385060bd7c8539bc75ce3461bbc398c57e1fea4d44d8
MD5 1de5d7b3d86ef5e981e45365a42c1799
BLAKE2b-256 43ab34f1f603b0a744291f037189a240f90a0c2fab2dfddd7864ad81ee334b18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 9a6ed2000c5f8d0786230f918ebff60d532c3b967d88c86fe420c17c4abe4b73
MD5 25e76ea006691b326d5bd3536627b496
BLAKE2b-256 adc9efe256d366b72bcc736c04ccef35c4dea0d9d026cfafa6fb7435749f7d8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 38b29d4bc58a243e400f5cb66feb39f2bbc4e8713eb50ce49149037cd411ecbb
MD5 602a631c20b5d393d3da5492c5602bf4
BLAKE2b-256 d7174004a70bcc0f40b16a01eac5d7929b01bff3ac8d1b3cfcfecb43a57d0f96

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4c1d31b24a378070c2ec5cb93a1defb651ffe84ad0686cc6e3dfc4ee3e23908e
MD5 ad783cf6ccd1710654c31d55a4b1e832
BLAKE2b-256 d8037141431184756df994caf27aa0063f13f80f47ceddd5c1f5e96d6e5de684

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8c316df5a6131f2649e9173205bf4a055891bdda2f41c590e52b09e9790d3147
MD5 a0f7354c9ccb7c16f017ca1f893d876e
BLAKE2b-256 f19d99aa5d27f8e120c7886cdd851835bf76297d38b348451b55b86d69430bdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c1ff65f48a81fce6fa78edffc289655556082543f34a4024a0eca5161f2fb85
MD5 52de40fc50d9437a8aa2ee19a570884c
BLAKE2b-256 47eed75a0249a21f22c03db2ab1a8ee9f727ca1fafc6bd7da86ddd0564a05b7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8816b7c1e5e527b9c8d8aa322b9b80cb1878c0b4990707ceffa12c2529eb6dc5
MD5 b6cbbcd2f7cd767f846e854a6ea42f7c
BLAKE2b-256 6d422383b8eb8e910d18d4e37156d2e191bb5b3b202648636db266065611835b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1420feaa5e12f20de2ab2a3554f9be4d17791b6cc18034c1fbe2a6365af98e95
MD5 3bdd60322d6b1479043249f38f9de454
BLAKE2b-256 15573d4a563d15d1309747ec536618912fdb02fcf35d987a5a9428b2783f658e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 29976f7aff7c07a61848fe32e84612d4a5640b61d3b1756a089f98006ec5c255
MD5 b61af47fec1d1617231f87fc564116d6
BLAKE2b-256 dad6d15940549d2681913b5ff4550fed3b6b54b21ca81069dd7d3fd7193ef987

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7709fccc098ba746001a0dc1d517be6e39bfa9951b56e945a6c42505e664a7f9
MD5 6c88e5899ef7651b9b73eb8d4bfecfbd
BLAKE2b-256 00c05492164b024b5b96fdfac679683d381d2d424dd5ac3c38605bda3991420b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 284d35f13514a9dec7e84cb3c215d076e15fb210bae24f42059370fc54e41866
MD5 67659c527c9c648da8c6ebe8359a368f
BLAKE2b-256 8e813b8ba6abd7ee14bf102a00bb486d25510310b58f122a71a0afeb49e9e5cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3522551c613931866ca5aa4c3df955962d51de44af14ec6a9d16565e3a63d995
MD5 2b9964382de79757a80d627f5ddc076a
BLAKE2b-256 ee5983c46638fe6a1291eabafa17098a983e4ed7335a28ac2973b0c71957064e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da6cdded524b207f92d1808f9cb871285ab267765f738096be03604cddfabc04
MD5 f295b6e73f05f45d66180b81f3109ac2
BLAKE2b-256 c58f5955163dd25ec9300364aebb57204366a9c3f55754444118017e8a3baaac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44a79105a385ceed9a30835d9251a9a4c8889df0db91bfd79a3ffe105009b4d2
MD5 d2aa6850b0c36ba699a39c0f6721fad5
BLAKE2b-256 051599886a371b96b48f93b6826b8a26afe53a27e7a6e38b51c7f2ebe07596af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cb0f67c53b7047f79e282f9de9a546d6931a6cdb12d48c23debdcc176f5bf50
MD5 0141e706ded9cb3afc92376ade25ab83
BLAKE2b-256 0a66875adcae6ecb5a376ff75b2403956de6712dba2d86f0a4aea733eadf7c1e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6c5bb4d7f71a96b3a32a5e239431c875a626fd6ec756100d519f51c6716aa11a
MD5 dba43fca8122b63e2e8dd291511431e4
BLAKE2b-256 c2436e2f24273af45af79f08c40db20a29db19d1098945e6aa640153c28cce26

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-1.2.13-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.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d63e3645184286a0e78c2279a02eab6d7c97d40028afc1514332f3f44b8603ec
MD5 2a3648d31eaf2b052294fa85f583432f
BLAKE2b-256 0db79fcbf5c33409f4a69820519a8c8869d60e55db229a44ebc6a3ec243f47d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d4e9299a3e2ccfd57b73fc760cdb747277a2d84dbab0ef8a56571e99e9458cd
MD5 ad2d5adfe3c13a73bb0c5a4f61faaa45
BLAKE2b-256 93187893b1bd868f66bf4d11ed446746eff593faeb96259d0b89c2531e0374c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b525fec9571556b476d433af9f5908b024c472b7dbb2977c118e058458d9031
MD5 32534763100cac381b82991f31775578
BLAKE2b-256 ae67a87f2a1fecb9d4dde0e91cec189f3b89866a83bb5f655be18cc37995083f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fcbdf82c0d7b25dafd1b0ddded27bc8c4d05591bf368e77a8e5d84aa354a29c
MD5 6518068353ba95a8f463c157a7b1bd88
BLAKE2b-256 7b1136483318ba795728e349862a9c8bc972ae0d563b1a95cd4757686734ceeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-1.2.13-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d93279c6368ff3147adc7840f1829ea7ccda12a30b1409c581bc38b39496396
MD5 81af60b55138ccaf8148402e1d043873
BLAKE2b-256 1a98bee50fce1431e090fd15ee018b9abd5542a1d2dfed05f17ed1e1fb399ac4

See more details on using hashes here.

Provenance

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

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

Supported by

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