Skip to main content

Python Git Library

Reason this release was yanked:

broke python 3.9

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

Uploaded Python 3

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

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

dulwich-0.24.9-cp313-cp313-win_amd64.whl (919.3 kB view details)

Uploaded CPython 3.13Windows x86-64

dulwich-0.24.9-cp313-cp313-win32.whl (902.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded Android API level 21+ x86-64CPython 3.13

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

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

dulwich-0.24.9-cp312-cp312-win_amd64.whl (919.0 kB view details)

Uploaded CPython 3.12Windows x86-64

dulwich-0.24.9-cp312-cp312-win32.whl (901.4 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

dulwich-0.24.9-cp311-cp311-win_amd64.whl (923.5 kB view details)

Uploaded CPython 3.11Windows x86-64

dulwich-0.24.9-cp311-cp311-win32.whl (907.0 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

dulwich-0.24.9-cp310-cp310-win_amd64.whl (923.4 kB view details)

Uploaded CPython 3.10Windows x86-64

dulwich-0.24.9-cp310-cp310-win32.whl (908.5 kB view details)

Uploaded CPython 3.10Windows x86

dulwich-0.24.9-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.9-cp310-cp310-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dulwich-0.24.9-cp39-cp39-win_amd64.whl (924.4 kB view details)

Uploaded CPython 3.9Windows x86-64

dulwich-0.24.9-cp39-cp39-win32.whl (909.8 kB view details)

Uploaded CPython 3.9Windows x86

dulwich-0.24.9-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.9-cp39-cp39-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

File metadata

  • Download URL: dulwich-0.24.9.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.9.tar.gz
Algorithm Hash digest
SHA256 0d04c4ad1023c8326f08414aec1cb411841b437e19b56fb20799126775a35904
MD5 808a0b58210518a19fdf906865d16fb3
BLAKE2b-256 389bd0c5ad41aa8d701a7f0a139c443450a786012ab1b9f69804fbdcce30e074

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-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.9-py3-none-any.whl
Algorithm Hash digest
SHA256 521b7f90c70f657a0427f22ba04f107f20b66e664ca392921a181f0036665c5c
MD5 cf2d28fe53863d4aae03df89e154adce
BLAKE2b-256 2e83a43922a4eb2abf6986215e7136b9f90ba575c1be46c72fa513637df17e8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 40f13b7ad93c0639bc8df12a906d17360cd565acbc9da8b29b16dfb1cc667421
MD5 0d8dc04cb3e5d26ab80aeeac25ac8cad
BLAKE2b-256 6b3592c74789f0f4695c98d754d7920ec2ee9ba3231f1b095d889b8c3a0032d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 16156859442663b6d14d0e3da021f3ba15d3fdf7c17c467dfec9ebd53707b7ac
MD5 37c626c547153e2a76d83b8608992f23
BLAKE2b-256 4addf78943e4d8cb0b1348fc6ce308eb4cefed29a2973076d57f5fad3ff72873

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 919.3 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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 761eb58ce8ae455ddfc800d726b7e9223ed44b82c13f33f315da0dbba4583cb7
MD5 5deeaa8330b62752b591eaefa1094d68
BLAKE2b-256 846db6d3959e4a07e4277c5ac7075ca2c1a1d6a5dcd5a704d6003db3afd6c0b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 902.2 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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7bba1f089d10a31601b80394dd6ad2b3850b6ac41e0df4d31ea173f0ceb7711f
MD5 fad26b83549575319a78f543bebb8bec
BLAKE2b-256 a24f346b9a42131918d0b0caf0797acdc84aa456c177b23901f7ff5651f3c63f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef4e5dc3fbf56145ea4757e48e71e6c766b432c90914f8e88835b5679b7350fd
MD5 f9bea43c9b5ce554fd302da248c929e3
BLAKE2b-256 c028335646370590614aaa6e7c5c211a68dc049ba37784fb6a55933f80ed8e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a88d08cd137f524bc4c3f1c269039c5a250281c379ff4302f606c17330d1dfb
MD5 21908535e7d536f21ff47fbcdf9498e9
BLAKE2b-256 01a7605677b2a00dc9a0902ffed18f46d609e182ad97bd0ff39fe24c3e3e22b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 925b462727c746bf4599a9f672d3409a5c7b8f6733d823ec8d8c396a11885fc3
MD5 6e159a53bdde56530d8674c29343fdab
BLAKE2b-256 49ba5f0aac9ada76eb8723bf8cd31d391a909b3b9dcbec8885cc70022b6b5ba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 7abe2321108ad02082667f4086aae7599b64ac16180a49a6cc52e347e0fc92c7
MD5 c596498e74a77148481ef39640afbbd0
BLAKE2b-256 44854bdbd851426a8b4b5a4116f0e6ffad6e162050432299668fda1ba189829d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 b8c39425be7cdcc11af5fc3153a0c781876cca996735b760e79249a665938976
MD5 0e10e9e6a7be821093b892b374a24f2d
BLAKE2b-256 2f3bb570c41a8bf71b371dc8ba37aa3e795fd91ca41d230d12f9725bab0ac943

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 919.0 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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7666aa4db176d9ce79c64088349325c86a82bfa79d4d6569ba7aa39c5719f6d7
MD5 c1eab49903355142026e22598e307a2a
BLAKE2b-256 43cfe75d0459fe4f4eb62c29a2ae026babe85d119e4f0dac514c2db956a2411c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 901.4 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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 16e7c912ca94d339d862b7826ff141fa5fe1d3f44b193326ba7eea38dc65f768
MD5 ee2f5211f385cb1e4ac33990420f014e
BLAKE2b-256 8cbdab51031c13f3c7469bd14192b103c9146d9cb44b3996781b3300afcd244d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a172e18a8e8315785daec63e7ddc38dcfbcfd26b0c0195ec8d61f9ecd3290cf9
MD5 8d89951f3eafeb15ca6da883960bbae5
BLAKE2b-256 d3502d15a8ee5a9128fce82b2d3a7e7997d9c549a8439cd234c984523e9327c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8b9cb0fdc867b011e343298f6245382a2cf30cc51d92120dae485e1d2eee095
MD5 91ee9f104fb89134590acef8d92be565
BLAKE2b-256 3a68b5f3702e14710a14fcac5df5024e7c000154aa050462c1f1859ebc3f2809

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4c57a67f0aa1ba160204420d3feb3a013d457b4790d396740e9bbbaf25e4c0f
MD5 a0fef2fc2bcb263c24b9e0991b80caf5
BLAKE2b-256 83b52490aeccd7b8b36da36043101d9416707550cbe3abe85f012d9061ff2a1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 923.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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0314dbe3322b286e931a92d8807b5a0192786b5a36cb8b68dc882d4a1d7e0604
MD5 c5c3cdf28b7fdb0e812a47fbbeaac925
BLAKE2b-256 9d84d106f7d848b029dafc05e52fbe621989911d763e98d8fb1a5ce9eeeb778d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 907.0 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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a4d42d38e47d89f341244649fcd1a71d5e9faff9fdaeeaf5dd3097e0ad0f8b0f
MD5 ed504ace39b43266cae72ac766a919fe
BLAKE2b-256 79a02af10afd679b62713d3987714495fc8cc312ab7ac9a8b05482b83e62f7dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d96e1bb431fb2cdd3bfa31405eae4bc09608fbc2e87f91cdaefca475942d252f
MD5 b19527ea2e07c1a6f5c19ecdcd57fc2b
BLAKE2b-256 1a5e3adbb7f4001529743ae68018cfea9bb138ed57fc4a535b56b7d0cfae64f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57844b0499780304e813498447b0ffc62bd23c0cdbb36bc379f79678fed310d9
MD5 fdf9f30e4c5b2ed0c4d76541dd364157
BLAKE2b-256 254c4b6ab4c2f8af6c0c08f4799f2f65691742347208b17862993cc88182c9fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42783e8af670323bc7508e23943d954c533f0cb4a1c0e64c1a57d37b81963ae5
MD5 84dcaa84e8cb28d84fbe9e268e92ec1f
BLAKE2b-256 5742ea10447c79576698b8cb5d0412debaec43d47fabcf6ae605e4316c716fd3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 923.4 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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 640510f6eae98c69c366240771a60278931b0992b32a601e6a0c21c3124a5e64
MD5 aa71e59bdb612126fc22e4f2528ed1a0
BLAKE2b-256 8dcd414d8df9a0c43ee431c7f6e19d49b8a95121fc10c429ee797411ee372d92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 908.5 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.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4324b682303ce420b5e7eb6189260ef59ea6a98a5703f30fd189c2eb47619255
MD5 b5a346ce759aa90b75dbb506b1736e36
BLAKE2b-256 da1faaa4d2fa692897aa7769ff6fcdf7973645586ef47965f457c62ee1248ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e14f80b08498b62df9b1ade95d658856879541ade5485b2b17cd4ab6c26de493
MD5 d3867b3ccf5f314653928bd0fb713f46
BLAKE2b-256 17b69d66d5e70db03216d60e28b998fb487f1138b041aa02f0b73b4bce386081

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3826c633a3208e4605589da3e05425530f5e4f67fe96b43582b79867bbf26f4d
MD5 0810e991549c2f18b6564f334899d2f5
BLAKE2b-256 4721df93b31e29613300bfa1e8b193585e47c5c946f46fd76a46a926af02e0df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6df3c06d3d3e58d1051bcc39d63581e39a88855763db58b39fe70059d33aea5c
MD5 c5c836a35d8793eb8b7512be8c31168b
BLAKE2b-256 ce31ae5a03a0a9955e45280d3602942186937e3dcf274a161a7f6b93842d015d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 924.4 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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 21d9e88019e984b3df0b510323840e23ce6ee2210cbc2559cbc98764e2edc284
MD5 a2fc7ea8b77e12083c9661b1ec4d7c97
BLAKE2b-256 8d392c7013038c8c45983980c515d9814fd5e3bc4205e59fd16bee73db0e0e1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 909.8 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.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4a651c6f608559e15e90978402283510ace4e5ebdbb28da59150b1f7b77d7eec
MD5 1fc010abe92e5b704fe2bec29d78f2ea
BLAKE2b-256 e6b58ebe6c017f32cbc9d5eefee726511ed9e63ae413e0bacf4f5bd19bcbc2f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b91982265d73ddf42d3986965cc2cb36b615466ba849490dab79fb4af721b629
MD5 fe461345f0ef839f2f744f07b8f4d5a2
BLAKE2b-256 fa70010c0155ba031237536be63d0513322c9bef289ff8ee90fc306f6b5fc055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99fad0e6befe6520426a67a0ca6328b0b1723797e7bba00239af7f6d5f9c3879
MD5 f9826693c63892e7a3b31240fc302809
BLAKE2b-256 ff7a288f0b01a92d3c5cd84b276500d7202a8a03b8f32f73f046278263a0d160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3be89eef5547db37ea97e835402df9982052730582a95721ba8c4d3903a4eca9
MD5 65f4a327b52234deb0d4509ddcc20a8b
BLAKE2b-256 dd25d9ea68c46548bfe4e63fc28d0b142fa74c33c55977ca726762eab1d71cf0

See more details on using hashes here.

Provenance

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