Skip to main content

Python Git Library

Project description

This is the Dulwich project.

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

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

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

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

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

Differences with other Python Git libraries

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

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

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

Installation

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

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

$ python setup.py --pure install

or if you are installing from pip:

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

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

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

Getting started

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

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

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

And to print it using porcelain:

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

Add note about encoding.

Further documentation

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

Help

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

Contributing

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

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

Supported versions of Python

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

dulwich-0.24.10.tar.gz (999.8 kB view details)

Uploaded Source

Built Distributions

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

dulwich-0.24.10-py3-none-any.whl (566.7 kB view details)

Uploaded Python 3

dulwich-0.24.10-cp314-cp314-android_24_x86_64.whl (1.3 MB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

dulwich-0.24.10-cp314-cp314-android_24_arm64_v8a.whl (1.3 MB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

dulwich-0.24.10-cp313-cp313-win_amd64.whl (919.4 kB view details)

Uploaded CPython 3.13Windows x86-64

dulwich-0.24.10-cp313-cp313-win32.whl (902.6 kB view details)

Uploaded CPython 3.13Windows x86

dulwich-0.24.10-cp313-cp313-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

dulwich-0.24.10-cp313-cp313-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

dulwich-0.24.10-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dulwich-0.24.10-cp313-cp313-android_21_x86_64.whl (1.3 MB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

dulwich-0.24.10-cp313-cp313-android_21_arm64_v8a.whl (1.3 MB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

dulwich-0.24.10-cp312-cp312-win_amd64.whl (919.1 kB view details)

Uploaded CPython 3.12Windows x86-64

dulwich-0.24.10-cp312-cp312-win32.whl (901.9 kB view details)

Uploaded CPython 3.12Windows x86

dulwich-0.24.10-cp312-cp312-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

dulwich-0.24.10-cp312-cp312-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

dulwich-0.24.10-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dulwich-0.24.10-cp311-cp311-win_amd64.whl (923.3 kB view details)

Uploaded CPython 3.11Windows x86-64

dulwich-0.24.10-cp311-cp311-win32.whl (906.6 kB view details)

Uploaded CPython 3.11Windows x86

dulwich-0.24.10-cp311-cp311-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

dulwich-0.24.10-cp311-cp311-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

dulwich-0.24.10-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dulwich-0.24.10-cp310-cp310-win_amd64.whl (923.3 kB view details)

Uploaded CPython 3.10Windows x86-64

dulwich-0.24.10-cp310-cp310-win32.whl (908.0 kB view details)

Uploaded CPython 3.10Windows x86

dulwich-0.24.10-cp310-cp310-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

dulwich-0.24.10-cp310-cp310-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

dulwich-0.24.10-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dulwich-0.24.10-cp39-cp39-win_amd64.whl (924.3 kB view details)

Uploaded CPython 3.9Windows x86-64

dulwich-0.24.10-cp39-cp39-win32.whl (909.3 kB view details)

Uploaded CPython 3.9Windows x86

dulwich-0.24.10-cp39-cp39-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

dulwich-0.24.10-cp39-cp39-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

dulwich-0.24.10-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10.tar.gz
Algorithm Hash digest
SHA256 30e028979b6fa7220c913da9c786026611c10746c06496149742602b36a11f6b
MD5 30c16c5a76bafed8142aca97e283a3f8
BLAKE2b-256 3e7ccb4a5fb0d3d0f6585894759730ae9052e8dd9d2e5172bff544d369b24243

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-py3-none-any.whl
Algorithm Hash digest
SHA256 15b32f8c3116a1c0a042dde8da96f65a607e263e860ee42b3d4a98ce2c2f4a06
MD5 0dfed3cebae5d56f200b0457e5a30717
BLAKE2b-256 744dca83b98ae966b156fd589a502f757789657a6f6f23926587abd3a3e3dc6f

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

Details for the file dulwich-0.24.10-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.10-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 e2eda4a634d6f1ac4c0d4786f8772495c8840dfc2b3e595507376bf5e5b0f9c5
MD5 48eb8ad7a838d220e54f9c971e4dc966
BLAKE2b-256 6548425e5f5ae4686e5e1f71b1f8dcea3947648e2c36ab4c1223c0a6d9aa422b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 44f62e0244531a8c43ca7771e201ec9e7f6a2fb27f8c3c623939bc03c1f50423
MD5 9fc4f96b3c828292282c6b20b4ba1982
BLAKE2b-256 edeb8fab354b8682a4d22f23ba81efb00cac8cd5fedc58749bb116a06d837e31

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 752c32d517dc608dbb8414061eaaec8ac8a05591b29531f81a83336b018b26c6
MD5 46817b66a23a20e958f9f931a49b8331
BLAKE2b-256 fa7a85c03bdbdfeb760fb08cc028d54cca14e2f6c4fcc3d4b77e58571efa09d8

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4b5c225477a529e1d4a2b5e51272a418177e34803938391ce41b7573b2e5b0d0
MD5 b2aad80e72d84cb70eabd27aa2825675
BLAKE2b-256 102b27695ef0bbfb68e6e1f094ae6f38e8634680881a5d35344dd3d4755aaa3c

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

Details for the file dulwich-0.24.10-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.10-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 019af16c850ae85254289f9633a29dea02f45351c4182ea20b0c1394c074a13b
MD5 8f85a46b1420ac3bfc0b853bfe0b18d0
BLAKE2b-256 689d573c9f510caedcbc9feef3ecf96d8828105f4c8f8202939507a1492991e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3581ae0af33f28e6c0834d2f41ca67ca81cd92a589e6a5f985e6c64373232958
MD5 b0fa11f4b68eaeffbb5c88b0a0c2667c
BLAKE2b-256 8ec58bab5086fe202da11bea12b521d93f97f308c99d9f4ac0790b0144f56691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce6e05ec50f258ccd14d83114eb32cc5bb241ae4a8c7199d014fd7568de285b1
MD5 599e7289d56b5e622f8b1a070fc823fc
BLAKE2b-256 21b4c0af139f10a95851a104b19af845e2dd235cf3eea2c7513d47d38f1165a4

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

Details for the file dulwich-0.24.10-cp313-cp313-android_21_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.10-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 4914abb6408a719b7a1f7d9a182d1efd92c326e178b440faf582df50f9f032db
MD5 8768357931a26926e3f14df4bc7861eb
BLAKE2b-256 0a715ab2bc4ec370a15a88a82341400a58da118129980b2c589484df1097c3a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.24.10-cp313-cp313-android_21_x86_64.whl:

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

Details for the file dulwich-0.24.10-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for dulwich-0.24.10-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 843de5f678436a27b33aea0f2b87fd0453afdd0135f885a3ca44bc3147846dd2
MD5 965f0eb4dc398b3e8bb3365d77ceaf5b
BLAKE2b-256 3cee9213bb19a584b4f41cf20874043d6888e2b6087e0cc605975cd6c38e9807

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f7bfa9f0bfae57685754b163eef6641609047460939d28052e3beeb63efa6795
MD5 be6f7f1cb75076aa34ba1697f65a1169
BLAKE2b-256 9d523a191569e38e046fdd594acc3ca5900e1965311b9d848f45ffa5bef5b462

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1601bfea3906b52c924fae5b6ba32a0b087fb8fae927607e6b5381e6f7559611
MD5 ea78bf9a3fe59faad074d5a82ea13405
BLAKE2b-256 b5b497183eaed35b087c3522c1296c5f79913221a2781b2b572d55b2f02fc11d

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

Details for the file dulwich-0.24.10-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.10-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9793fc1e42149a650a017dc8ce38485368a41729b9937e1dfcfedd0591ebe9d
MD5 91e71541c9e7fd35701083e27be88b30
BLAKE2b-256 a00041ef1ea1bb30559c8c5ddeddda5fd61bee19372bb991c6ba417f8b08df1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a25ca1605a94090514af408f9df64427281aefbb726f542e97d86d3a7c8ec18
MD5 3ba56f3c3acb24d5693a9d6bef20bb82
BLAKE2b-256 3ffba46d524ccdaeba705b1738b258002ed31d3795be15305fa708a05bbf613a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c724e5fc67c45f3c813f2630795ac388e3e6310534212f799a7a6bf230648c8
MD5 92fe91b7fc2013828bbbacd204d5b860
BLAKE2b-256 d035272a60f9e8d490672985d3d8ad708b7d7b81be9bae43f0590cdc9ade1f8a

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 470d6cd8207e1a5ff1fb34c4c6fac2ec9a96d618f7062e5fb96c5260927bb9a7
MD5 4742c2bb9facfd4e6c3e411407273fa5
BLAKE2b-256 83c5c53dd8704f8557798aa7a07a322a34fcc59836c0c6593858396704d7c8c9

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 393e9c3cdd382cff20b5beb66989376d6da69e3b0dfec046a884707ab5d27ac9
MD5 54dbd5ea3e8ee5c090a284f558354a02
BLAKE2b-256 09ad93bcd99957f7c287e63a6f9ccd325ba931d2aff781a9c00fe63200323cb5

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

Details for the file dulwich-0.24.10-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.10-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 858fae0c7121715282a993abb1919385a28e1a9c4f136f568748d283c2ba874f
MD5 9a632983901e5e1c23fb338de0c90b71
BLAKE2b-256 d3941b65ffc7e8794b0391112d365f54c9d7da49d6257ea59dcee01ac29dad8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b715a9f85ed71bef8027275c1bded064e4925071ae8c8a8d9a20c67b31faf3cd
MD5 8370247851c75d1f889c6899ada6f7e4
BLAKE2b-256 eb35b516e3073cab66e0a240acb30e2892b70e636f5512a023edfe28a26e080c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbf94fa73211d2f029751a72e1ca3a2fd35c6f5d9bb434acdf10a4a79ca322dd
MD5 63521c5f2314542b72b2ee16038c15d2
BLAKE2b-256 aebc494b44ed9f6d850f9f4d5772ab0f063b1b4fce7741e1642f95d74f2983e0

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e1601789554e3d15b294356c78a5403521c27d5460e64dbbc44ffd5b10af4c3
MD5 7a365c0805fb158419f0571bd7036764
BLAKE2b-256 0194aa9607cb8fb68358c28619bea0aff2732adc086676049cfc82099b5e0626

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0dfae8c59b97964a907fdf4c5809154a18fd8c55f2eb6d8fd1607464165a9aa2
MD5 5aaed43844298340350bc3f01aee8c0b
BLAKE2b-256 77b87004304c318e6307d2f222918b8ad7c5440559116a830ce5610a5cc19bdb

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

Details for the file dulwich-0.24.10-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.10-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90b24c0827299cfb53c4f4d4fedc811be5c4b10c11172ff6e5a5c52277fe0b3a
MD5 c7229a858558311d6fdab2a99e413416
BLAKE2b-256 077d8f7a2eb39f97009001b30a8cdc2223856e56440f7069d7186d06f94e71a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a56f9838e5d2414a2b57bab370b73b9803fefd98836ef841f0fd489b5cc1349
MD5 c4a9bda9548e0d7fd363441d337e73f5
BLAKE2b-256 9b7197f4f643d29ff4737af36560ba669018868a748b1c8e778fc82038e830b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f511f7afe1f36e37193214e4e069685d7d0378e756cc96a2fcb138bdf9fefca
MD5 c2e1461fcfc4de72dfaae2e2f89ad054
BLAKE2b-256 446e704c92942422fb7f68c1ac197f200a8c62fc61b66e40f709023a0110dfb8

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c262ffc94338999e7808b434dccafaccd572d03b42d4ef140059d4b7cad765a3
MD5 00c9075b16ad357d06788f7c0c3e9aaa
BLAKE2b-256 e01231123919d3a737a99f4f512941e84ba3df7cda16d924406a9c0b42d9c359

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f102c38207540fa485e85e0b763ce3725a2d49d846dbf316ed271e27fd85ff21
MD5 7d27da6c89a8feb20565bafdeea81eaf
BLAKE2b-256 59a772e566a7122e4140c52b3156b5383b2b1551f87b1566e7dc4a90673fafcb

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

File details

Details for the file dulwich-0.24.10-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.10-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8df79c8080471f363e4dfcfc4e0d2e61e6da73af1fd7d31cb6ae0d34af45a6b4
MD5 a0558cfce1a912fa7ff0ebc9a652e818
BLAKE2b-256 40c3800542ec4f8eb8c81bad2dccf8437c1275ff65810c63a44efa6bbce2be29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90028182b9a47ea4efed51c81298f3a98e279d7bf5c1f91c47101927a309ee45
MD5 040ec95515e1d38f2fd932447f5f4e38
BLAKE2b-256 a5b4bbe9310f6c4641ad52c5d8bf7123e4ae81748c32340ef74622d503d7e244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b19af8a3ab051003ba05f15fc5c0d6f0d427e795639490790f34ec0558e99e3
MD5 edf88f7779d2cdcd8088fd179cf43ba1
BLAKE2b-256 6fc95da1568351538a67a2ecabf917330a347ea548a62ad828527fd8ac94530a

See more details on using hashes here.

Provenance

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

Publisher: python-distributions.yml on jelmer/dulwich

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

Supported by

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