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.7.tar.gz (968.4 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.7-py3-none-any.whl (545.6 kB view details)

Uploaded Python 3

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

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

dulwich-0.24.7-cp313-cp313-win_amd64.whl (884.4 kB view details)

Uploaded CPython 3.13Windows x86-64

dulwich-0.24.7-cp313-cp313-win32.whl (867.7 kB view details)

Uploaded CPython 3.13Windows x86

dulwich-0.24.7-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.7-cp313-cp313-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded Android API level 21+ x86-64CPython 3.13

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

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

dulwich-0.24.7-cp312-cp312-win_amd64.whl (884.4 kB view details)

Uploaded CPython 3.12Windows x86-64

dulwich-0.24.7-cp312-cp312-win32.whl (867.5 kB view details)

Uploaded CPython 3.12Windows x86

dulwich-0.24.7-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.7-cp312-cp312-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

dulwich-0.24.7-cp311-cp311-win_amd64.whl (888.5 kB view details)

Uploaded CPython 3.11Windows x86-64

dulwich-0.24.7-cp311-cp311-win32.whl (872.6 kB view details)

Uploaded CPython 3.11Windows x86

dulwich-0.24.7-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.7-cp311-cp311-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

dulwich-0.24.7-cp310-cp310-win_amd64.whl (888.3 kB view details)

Uploaded CPython 3.10Windows x86-64

dulwich-0.24.7-cp310-cp310-win32.whl (873.8 kB view details)

Uploaded CPython 3.10Windows x86

dulwich-0.24.7-cp310-cp310-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dulwich-0.24.7-cp39-cp39-win_amd64.whl (889.8 kB view details)

Uploaded CPython 3.9Windows x86-64

dulwich-0.24.7-cp39-cp39-win32.whl (875.6 kB view details)

Uploaded CPython 3.9Windows x86

dulwich-0.24.7-cp39-cp39-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

File metadata

  • Download URL: dulwich-0.24.7.tar.gz
  • Upload date:
  • Size: 968.4 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.7.tar.gz
Algorithm Hash digest
SHA256 f10bffa1395a8dedc3d38ac05164f761ae838a6a18f9a09a966f27dd651850d4
MD5 a5aae0c2dfd687489f8118248235a88c
BLAKE2b-256 3a40ac6b7a749395edacd057278ac30cd66f15261581fe20c440327aa6fa9c5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-py3-none-any.whl
  • Upload date:
  • Size: 545.6 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.7-py3-none-any.whl
Algorithm Hash digest
SHA256 c1d6e35d7c41982d4ba375ce8ba9db783f4b4ca1a00c62f3121eb881f5c03c53
MD5 8026e5c5d26db3e166aa86ccc3e7de41
BLAKE2b-256 1430d5c337fcf96e2b159b61053fd5b374b80629d28267f471483a3da5577ce3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 4bb0673480005c7aa331b05af77795f2612e5155fbecaaa0c3fd9da665dad420
MD5 fab2b3c69a40b8ad311355ca7ae79003
BLAKE2b-256 423d68a11ed26d10aeb421f500a3b6e42c959763ef93bb2c5a00d6a75ef73750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 d29784211e7aeb84ddca1265fe7b8356556f8da531432b542084fb70e8341a00
MD5 c5a326aa1eff88ca47e6379809bd4c85
BLAKE2b-256 0a866c55c8ed6458be5eb6bbbf70190ed9dc1d3d6d7999cae1b92f6f595ad5c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 884.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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 265549c96680be1f6322cfeabb41337714c1a128824ab7e06d8c9d8a2640f4fb
MD5 188ba684e8ac433d6bab101659251086
BLAKE2b-256 5ab78d026a8ee3186c3a939ae41248eee47b374427547bd660088f4b8beb5920

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 867.7 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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 32e7e18edfad5dfb978ccf8e575b5776234110b722ea677d4e843058a1df1dd0
MD5 3c68beeac6af88dd0222b52594de8679
BLAKE2b-256 8a523a7d40831ba5ab0701fc3bf67d28cc10c4fcddfc8ae5a600232837e1ffe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8c42e45c217506759170b01b09e194acce1463aafd61f71fb7094b192ad09aa
MD5 61fb048bd7ff9c83b9e11758d9fd2c82
BLAKE2b-256 91c3bfaf8426ebd44d4834f7578e543727543a2ccdda8e7b40be919b857872b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3eb5af24dd2c760701f4b7780b1a9fb5a0da731053fe5d1d0a2f92daa4c62240
MD5 06c57f34940fa9d1ca9bb7eb8d39aa94
BLAKE2b-256 78ecc422e81037a537dac21a18357e1e828e67346c6f3af101821c3a089745b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06219dd38d553f18184dc885fbabe27d3d344ab0327d4ab3f1606617c09d8b32
MD5 1aa209c2dd58f70b204f1d29167a0b8a
BLAKE2b-256 4ae876c642258967a694fb313a3fbc0f0ca3c376292f0de60654f91cd0eefebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 c8f44cb89d85fe40fa91ec34190d70a016be917ee841591fdbe9fd7e0ff61fc2
MD5 a5c4b424b443174eca5817277f226dc2
BLAKE2b-256 58727c122b7e3ea8d98219df58e63abbd55b5b1980bd491ac81a32dfbebf9eec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 461f2a894e1045fc6faad1ca0123aac87554f5dd40cbb5772e35933f1f6f1e32
MD5 ee2a548293eba1cbbfd1ab3768372858
BLAKE2b-256 bf09f24980d91916c5c374b0749071d1d531a072242905c5746787531e3db32c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 884.4 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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 19f7a90377f5814716beaaeec34897d181c200a666baf477650e0cd4c699443f
MD5 901a3dcd07cba9ee7bce3441ad395e4e
BLAKE2b-256 2a165afbd1ef7927f9d0bc230121c94a991b41ed667a9e033603c9919118e7d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 867.5 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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1c154a8f33acd815ad990e85d230497de892dde2476e35370f5762d34a1f70fa
MD5 001951d8cf2035ab20c57cda27968e21
BLAKE2b-256 5c37f229c33be8104703a62364f33d10582a278356f4b6e2c1ab78d85cc73b89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23182ca6bd54b74109c2fb2bb70b6c34e7dc3bbcc08ecb5c6c31a3a4aa1b30c3
MD5 665d8e30773c0d6c506592023ccc2c05
BLAKE2b-256 11092a70e2bbf07ee7be5b7d5c9c4324fb18a54df99d174daca6e84c3c3f1bb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba0a121b148dffa5cc3d5fdceb32a002cb6b75a6b79abd89750584baa5021c0b
MD5 7e2397f6be2aad71cdf3aa9661e37e02
BLAKE2b-256 6fdce3628cc61ecc3ff7193639728f2c2cea8865d4e0e355edd8f941a441639c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cb46d76558147529d8de295f8ca22bce0a4cb62163f708c54fc92f2a8d8728f
MD5 c4321ac8cf01fbe031186a2ee0843275
BLAKE2b-256 f10d70e305ff1a666f157acac2bc3c73c94ce267e9112173fa2fcf852216430f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 888.5 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d328200d3caa20557e0568e8dd6c46714406b45abd4e0b333eeb5436614e4f3c
MD5 0eb7498643da5f1f48f25979ec9c2ab0
BLAKE2b-256 67170bc77b51263b0bca688056afb608645cdd5458f84bb368138b0abf45846f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 872.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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ae60eec025625e65f7caf37a69076b12cdb4b63ddb317990ff0cb817c8132988
MD5 a21ce2bda40206741a822f164e165d71
BLAKE2b-256 62b7c4eb362b5cd3138835519592190f1662055ca1b323c82bc9f2d03ee5c1d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb12ace558b3f4ba37bbd069d0f6bd4add7416693a3bc95e3286c5acff0c05a1
MD5 bb9acefddcbd48f215f8e20bcc9a53a1
BLAKE2b-256 5ee3f94789b688b56e9b8383af7745605cd5b3c6ad1c835e7b0228a1a33e7313

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f88c2e7f6c369f2d988e14b76d2228a48d3aea475e7ff13ceb156edb3a18b2f9
MD5 24fc8c08940a02affdc94f78ec234aa8
BLAKE2b-256 b76ef6c2da48ffbfa94938579efec5fb9071dc345585327ce8d545eb12c97ea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 381baadd6b4af9264586b91fe09260ccf790b08dae5ef688645503c199094c7a
MD5 3c92e657656468d94d5dee35e7ea42d3
BLAKE2b-256 b2259ecbd82016a27cc9599554039adc1ac3b5ab89020b65493d864c685e7183

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 888.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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c9f59c4089667f64e9f6c3711a444067882f1ae3d27e6475acf2c12ec9aeadc
MD5 54722140364d48459250a4aa840d087f
BLAKE2b-256 9c28f32471fe5d72084183651e61b6c64767b2b2b4540312193e88077d6f44b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 873.8 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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e3675065022ec06a9ddc339e317900a1b4e6cc020516704e7c58eb3ba990458a
MD5 d603d94edb391504e41c6d4fcd5a4807
BLAKE2b-256 c76c8e680917c4cc26571ba42672a44f1d22cf570f5c6840abf861730cbded8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1476379539c60a689ccfefbde3ec3b5e584cd6fc8669de89e69c4ea6a404520f
MD5 a7b45fee61f63dee55a0625119bf905d
BLAKE2b-256 d8061d4bf1fca40fb3bb65eaccb6e8ec069ac8f58a11ba4bb179896cd434b1e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03baba91e4c143e8cacf1e55c91061a401a266de4ced5904909825a934b43cbb
MD5 5278b7a3c91a26d64d2d0dbaf63a9baf
BLAKE2b-256 ac9ba54fdcad2d9a756a3e22a834bc8e34515a9b787224256cc655d5f8432915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d55ccb9b89c00334a372bd1a8ac8203669251af0d1747dff36730eca617f941f
MD5 5d00b1044cf2ad298bdd77db27b80387
BLAKE2b-256 b225f576e3415c4434b01dd42eef58f2093babe51a7e9854edd86c03ab7833ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 889.8 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8f86d5da9dd29ee20f3b5e4aa18a088707e5a05413ae29cf67d7d7474b88de99
MD5 fb572c8d7ab03c7e6f307aefce7187e6
BLAKE2b-256 42cf6373eb0635da0832bad5908c5e32ab94417d35d33bbc77c8b28e553fd164

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 875.6 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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c7143322dbbeaf78a8a8a433a13f62b51def640b699426c64643f58bf80dfbee
MD5 efb206a67509893b8182953586d5749c
BLAKE2b-256 0704bb4c01639de80510e0b07a4b96ad392994a765efadba41ebbc1e9e4eae3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fe8e6c075fe9de2532ee176145172fcb52529b9fbe63708392ddca9c185cf91
MD5 163e9d64a68ae0bc0174ef777d292a05
BLAKE2b-256 42a57e9e71a9275f533691487b6d012392dcf7b008d40798a37bd766cfa6937f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f48a06d635b061f1196e63e91046e9b8ba9c9865fa8ac1ec7b21580538c9ef0c
MD5 79aadfdf0e686fb3dc10d77498491f62
BLAKE2b-256 fa6eba3cedac0535e739ca081899e964ff411c2e0ab42363846fd8e5434b4282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ad2b37d65f1f97f9635febf43cf5ecc643900c18463e3dbe43538076c9778bf
MD5 d31f19446a0711f1398024fbddc4a273
BLAKE2b-256 f181a2b6974aad0829e8d091a22202ba5987cde4c2a9f64cc5916e56243b2173

See more details on using hashes here.

Provenance

The following attestation bundles were made for dulwich-0.24.7-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