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 or AUTHORS.

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

Supported versions of Python

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

dulwich-0.24.1.tar.gz (806.1 kB view details)

Uploaded Source

Built Distributions

dulwich-0.24.1-py3-none-any.whl (440.8 kB view details)

Uploaded Python 3

dulwich-0.24.1-cp313-cp313-win_amd64.whl (779.2 kB view details)

Uploaded CPython 3.13Windows x86-64

dulwich-0.24.1-cp313-cp313-win32.whl (762.6 kB view details)

Uploaded CPython 3.13Windows x86

dulwich-0.24.1-cp313-cp313-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

dulwich-0.24.1-cp313-cp313-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

dulwich-0.24.1-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dulwich-0.24.1-cp312-cp312-win_amd64.whl (780.0 kB view details)

Uploaded CPython 3.12Windows x86-64

dulwich-0.24.1-cp312-cp312-win32.whl (762.7 kB view details)

Uploaded CPython 3.12Windows x86

dulwich-0.24.1-cp312-cp312-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

dulwich-0.24.1-cp312-cp312-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

dulwich-0.24.1-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dulwich-0.24.1-cp311-cp311-win_amd64.whl (780.0 kB view details)

Uploaded CPython 3.11Windows x86-64

dulwich-0.24.1-cp311-cp311-win32.whl (763.6 kB view details)

Uploaded CPython 3.11Windows x86

dulwich-0.24.1-cp311-cp311-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

dulwich-0.24.1-cp311-cp311-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

dulwich-0.24.1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dulwich-0.24.1-cp310-cp310-win_amd64.whl (780.5 kB view details)

Uploaded CPython 3.10Windows x86-64

dulwich-0.24.1-cp310-cp310-win32.whl (764.1 kB view details)

Uploaded CPython 3.10Windows x86

dulwich-0.24.1-cp310-cp310-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

dulwich-0.24.1-cp310-cp310-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

dulwich-0.24.1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dulwich-0.24.1-cp39-cp39-win_amd64.whl (781.6 kB view details)

Uploaded CPython 3.9Windows x86-64

dulwich-0.24.1-cp39-cp39-win32.whl (765.4 kB view details)

Uploaded CPython 3.9Windows x86

dulwich-0.24.1-cp39-cp39-manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

dulwich-0.24.1-cp39-cp39-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

dulwich-0.24.1-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1.tar.gz
Algorithm Hash digest
SHA256 e19fd864f10f02bb834bb86167d92dcca1c228451b04458761fc13dabd447758
MD5 28e1a649eb4d7f66d6fa7efe59903293
BLAKE2b-256 2bf313a3425ddf04bd31f1caf3f4fa8de2352700c454cb0536ce3f4dbdc57a81

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-py3-none-any.whl
Algorithm Hash digest
SHA256 57cc0dc5a21059698ffa4ed9a7272f1040ec48535193df84b0ee6b16bf615676
MD5 db022f9f5a48c30165ffbcb59c4a9f7f
BLAKE2b-256 c9bca2557d1b0afa5bf1e140f42f8cbca1783e43d7fa17665859c63060957952

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8fca9b863b939b52c5f759d292499f0d21a7bf7f8cbb9fdeb8cdd9511c5bc973
MD5 4fb72423e3f72a76234c8caea9eba724
BLAKE2b-256 477ff79940e0773efda2ed0e666a0ca0ae7c734fdce4f04b5b60bc5ed268b7cb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b39689aa4d143ba1fb0a687a4eb93d2e630d2c8f940aaa6c6911e9c8dca16e6a
MD5 4c90d27017342d01d27e08721a0e90cb
BLAKE2b-256 8dfe850115d6fa7ad03756e20466ad5b72be54d1b59c1ff7d2b3c13bc4de965f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3baab4a01aff890e2e6551ccbd33eb2a44173c897f0f027ad3aeab0fb057ec44
MD5 99acba474518a08d4d5b3128aa1d7895
BLAKE2b-256 905ddf4256fe009c714e0392817df4fdc1748a901523504f58796d675fce755f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9800df7238b586b4c38c00432776781bc889cf02d756dcfb8dc0ecb8fc47a33
MD5 c998884316202ea0b7147754ce6caa63
BLAKE2b-256 71d97aadd6318aed6f0e1242fa63bd61d80142716d13ea4e307c8b19fc61c9ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a11ec69fc6604228804ddfc32c85b22bc627eca4cf4ff3f27dbe822e6f29477
MD5 7a4305d30754b61e40ea430c5438506e
BLAKE2b-256 5ea53f4760169fea1b90df7aea88172699807af6f4f667c878de6a9ee554170f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 83b2fb17bac190cfc6c91e7a94a1d806aa8ce8903aca0e3e54cecb2c3f547a55
MD5 b053b99951901c0803a25744015c26f4
BLAKE2b-256 e0e8c50cb473325d91435be9af61e14d240e67632ff24b83eb2c04e6cd76af33

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bef4dccba44edd6d18015f67c9e0d6216f978840cdbe703930e1679e2872c595
MD5 96deb79510498a189a42f22d90cdf50e
BLAKE2b-256 8e62528e4be601948be340fbd61bed99ccd1dcade38254aae804412d8e016246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee80d8e9199124974b486d2c83a7e2d4db17ae59682909fa198111d8bb416f50
MD5 39184803d3bac1642ce12eb80c19f9c2
BLAKE2b-256 b9c709dc31cf769ca1e67445f530e58df4af9379842b8740b88efcf44448627b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e3c01b8109169aa361842af4987bca672087e3faf38d528ff9f631d1071f523
MD5 3dee60193e0cab9c03f533c3a61fc623
BLAKE2b-256 a0186abaf1973fd71cee2e9cf1e611944936481d7fc63a63c2974f01cc4cd9ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d227cebcb2082801ab429e196d973315dbe3818904b5c13a22d80a16f5692c9
MD5 3b2a850db70adfe411275430a43d53ca
BLAKE2b-256 9083ccefebfc92ab682364ca247ba0e364f2826085ce75a314822d117a1dda49

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 816ec4abd152ebd11d05bf25b5d37a4a88c18af59857067ee85d32e43af12b5f
MD5 e5c24700eb710c2cf885cba89759f5f2
BLAKE2b-256 3b92001fb17046c8d8dffed6b205950d6cb82f3e8b6cd8561a3f9395759d0fd3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 741417a6a029a3230c46ad4725a50440cac852f165706824303d9939cf83770c
MD5 d36f5162fa7498ba0212400fc8898cdb
BLAKE2b-256 01fc961308a475f6a26dc0e9360afd5cade20e164bb08bb3bbf7edabacddcdd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50f981edd5307475f6f862ccdbe39e8dd01afc17f2ed8ee0e452c3878389b48c
MD5 50f74ee1572d0ece6eca053543fd1982
BLAKE2b-256 bd9016f4a0281a35adc7678245d8f47aaf48358e936903af69d2f18aa98b9990

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 358e4b688f6c1fa5346a8394a2c1ab79ff7126be576b20ffd0f38085ead0df54
MD5 3560cb34e29dfa814e2030315cd0530b
BLAKE2b-256 ddec34c93eb4295adccf1395e363cdf7200ecd4ec0a96b6cea43ff19074980c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31ad6637322aaafeecc4c884f396ac2d963aadf201deb6422134fa0f8ac9a87a
MD5 1d6a43fb39549410d5def276ccf36e17
BLAKE2b-256 9346efc7dde236144384277a18f27f584370a796a1c547cc94ff4f208d381a18

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d8226ca444c4347e5820b4a0a3a8f91753c0e39e335eee1eaf59d9672356a9c
MD5 3dc5c23fec37c54719f0d868251f49bc
BLAKE2b-256 aa0c19c815b597e112ea41c67f28bef2715eef230c51d168bf290dcbbad81eaf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d7144febcad9e8510ed870a141073b07071390421691285a81cea5b9fa38d888
MD5 a3330ebed591ceb977ba5a425cce5c00
BLAKE2b-256 5fc01f1ab43fbe41a43ed918641d3111775c983dd0a442a7675c35121f8bd49b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e893b800c72499e21d0160169bac574292626193532c336ffce7617fe02d97db
MD5 1f5698dee2d9760db1cee40d24f9f373
BLAKE2b-256 b9f9c248185bf982f2efbc02f1de5783b0e4aae94975b07d293e2aae1901c4b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d16507ca6d6c2d29d7d942da4cc50fa589d58ab066030992dfa3932de6695062
MD5 eaf9a21bdb75346996eafb63723289b5
BLAKE2b-256 5ea6c13168490a926f84447e9035fb5d10504d7c4d81a68162a900c59b1fc0fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2169c36b7955b40e1ec9b0543301a3dd536718c3b7840959ca70e7ed17397c25
MD5 ffff7990f7ad3e33c218c866d87ca13b
BLAKE2b-256 30906ab0a7667d3e588d6a2808e09fb273565458d53bed0f424ec2a4e238be0c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 38000f553593e183189e06c6ed51377f106d28a2d98942d81eab9a10daef4663
MD5 b680ce79bba32f5ad2832aa69bda1d73
BLAKE2b-256 a9ed05ea00cd9cf6912a2b1d1c690510127984c7e6b43c5b055ecca943d6a1cd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dulwich-0.24.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3df7ed03062e47f50675c83a7a1b73e48a95c9b413c2c8fca329b3e9f2700c04
MD5 e2540c2534c94f8026ad39473d8cd2a0
BLAKE2b-256 a6ceacc758bcaea6ec1a6f501e81da882ca71eff9b06c362090dc91847a542c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.24.1-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.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10882685a8b03d0de321f277f6c8e6672bb849a378ad9823d482c42bb1ee8ee4
MD5 8eec3a2498a89e978df3aafda041c051
BLAKE2b-256 c66b67f41e184e99f5001fb66b1fac524106188301cd238322e5cd1fce4b8a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d87cc4770a69d547ebbbac535c83af8a5b762d9e5b1c886c40cb457a1b5c2c1
MD5 1e33faa9fb1cbca609c28170b5b66623
BLAKE2b-256 50bd3573909945d771b4d1d96bf39a41afc002de52c5f591184f4a5bad5b719a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62e3ed32e48e2a7e37c5a97071beac43040cd700d0cab7867514a91335916c83
MD5 512b2978b43ff1ca401d2eaa67d0c988
BLAKE2b-256 0ded6901aa5d0bd304eb9147e36424e0f7ff10d77be00946872b14c9d54deb49

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.24.1-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page