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

Uploaded Python 3

dulwich-0.24.0-cp313-cp313-win_amd64.whl (779.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

dulwich-0.24.0-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.0-cp313-cp313-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

dulwich-0.24.0-cp312-cp312-win32.whl (762.8 kB view details)

Uploaded CPython 3.12Windows x86

dulwich-0.24.0-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.0-cp312-cp312-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

dulwich-0.24.0-cp311-cp311-win_amd64.whl (779.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

dulwich-0.24.0-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.0-cp311-cp311-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

dulwich-0.24.0-cp310-cp310-win_amd64.whl (780.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

dulwich-0.24.0-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.0-cp310-cp310-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dulwich-0.24.0-cp39-cp39-win_amd64.whl (781.4 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

dulwich-0.24.0-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.0-cp39-cp39-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

File metadata

  • Download URL: dulwich-0.24.0.tar.gz
  • Upload date:
  • Size: 805.9 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.0.tar.gz
Algorithm Hash digest
SHA256 bf4b7d7549ca2533cc30fe57a4c08dd411d98e5ce2c8aca0785c0079fd3a41ce
MD5 5e77e02b0d462830045e4966893ff02a
BLAKE2b-256 791d33240627e3516fb48ad32235bc3483afe6bf7312a56f2e3d053fdad105b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8de985331f9f8eeeb41ec8365eb7768b22d1f2bede76224a1370f44d6b8ddd61
MD5 e536159a578d44a177bd8034b99ed1fa
BLAKE2b-256 f8d9e0af11604a8302b0cd4b7252ecd673a26bc3bcf39a5ef9358978228afb88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 779.1 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 27e9ee2bc10fe96f01fd09dee5d479569e61c3e51698e4755548029eac20d3b5
MD5 6a3af28c18f6d27500523eb2ea104e50
BLAKE2b-256 c4b36f9001534a93e6c291ecf1d31118e55f5d91e6f0e0aa498eafc952ed53f7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a551c4ed77c10390019a6031d0b680051ac1deaf887ab299e919524f63556633
MD5 3b6ef3ede77421e363b13cd5906cc98c
BLAKE2b-256 ec235b716ac7677f3fbeeb0fdef7e6a3ba28e4a5c78265fa5c1cb515b3a460d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 765e1a47b876344bfd5e097d8660f9a914f7f7243bab1260e5e3d45327319f96
MD5 f70ef38570894b6eb37f02db6cceed9d
BLAKE2b-256 0c6d1447cf45e4161ef4d8cd575e27ef8114f7a86351a9dda4c6583227bac44a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe6766c5a7b232876919d13bee514354e224fc669871b85ad369ff170cbb9fd4
MD5 43bf9b24507e95ae3fb8e0aaca1b1c01
BLAKE2b-256 a583358b98d1241c0769055eef965a22c7a98225c1c32578799cd27d40600073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36f8fc9571c63dbc5d8ec9e76973b65e10e89600385b1c071acaf2be619d7dc3
MD5 17b5749ef2dcf77a9bc82f5d663d99aa
BLAKE2b-256 f82fb4370a7b794dfc274d671449dc26583b44bcc8aa33fc1b00164308619c7f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 70f75c27108bceca47c8ef78e5515589f94cbbb0a459f74b98012a74a3629b1d
MD5 b54b15e5fa67fe98d62ca775bc31ffcd
BLAKE2b-256 7c60360b56e321bcc8196949e0105e486ea869dd3c36c0073eeb52aa757b3fe9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 762.8 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 96f4f213b9d2248bd04ad7915d70947a858ad6479ca164d494dbd1480cb38ad0
MD5 002b584fbdf87d9dbcb19a1f0dc03615
BLAKE2b-256 477dc7452d436d9042e80309cc0104cdf76cc505d37bb68c7965e9d0a4ba2ca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7592be2fc1b1053aa969bd12e4412c55b211275bc167878f343ec8d6e93fc683
MD5 4ff80fef935609a8cf12ae29d218d0f6
BLAKE2b-256 76b2338703e047a342829046575e2ec8fcd59c2d9601addad5e0473033f4c51b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f654a457be5535fef05bfc8e28d882e2d9f3344b1be24265859f3de2b3dcffe
MD5 56687923365c6472320022c699b9f0ce
BLAKE2b-256 2919367fd3273a9d529b4f2d4c2571cfc7b55d5985229cf0669f97b577c3991e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91649062c046449640fa8b691425982613060eb0ed68719f0892742a53f0b1a3
MD5 d9e47853fb8bae911bf4c84cb9a04908
BLAKE2b-256 603fe384ace37306f22aa7b4b2764eaf69ae0863cfc17a61db9a220d34b5cb1b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 779.9 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 faaf38e41cb8c073ee154faaa7b9f8b6efeb83b81553de51d31842f6ce78b5f1
MD5 3492fb5e8118f094c0529d1e052a45bf
BLAKE2b-256 f3279ae1651664e6d7e8a73ab99483297b37dabc97680d0c38b7b9d5f6df9d07

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5fa3d4e9d44f583d2e747cc8b6b97a0dcb27e728846a0e0b88cc64e824e5d0c0
MD5 3baf55bf1c972fcbc426c196e9ad83a8
BLAKE2b-256 581939c583e6b8eb0a93755458102e1bed2ef8391c977e9635248ef43d5c385b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 493f17cd7bdf72479c2daca8dbc59a745c7642fdc7ddd6ce114e3af9a273437e
MD5 3ea95a199da89edebc830292c3798fb9
BLAKE2b-256 9257f00dde2e00769640f5d59d0251dc2bd6e42e63154575112d650d6b358f31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7d073cefe090d78bf446c7da19882aa29b8e6c5a8b0fac950cd46f027304423
MD5 4185dc03f38541e76c12f6f66c9e4e7a
BLAKE2b-256 882639b7a927988a9398d82d1556ffe08b3c5ca65d62e963f216cfa9c8669306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce8a298530845bbeb73e234e76c2ed20605231a78b12a837c956f5fbd52c3f83
MD5 ab5e10cb68811e9e1cd0de6203d52cb0
BLAKE2b-256 63a25c85abb3f21d0cca1fadfb20dd4ef6e0ee1abcc49e7d7fbb1a31651b7ccd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 780.3 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f2da3123fba68b1a2136bb4ab4d17db3a7d675fd8520480953e8cc5d23be6122
MD5 68ca0dd7160d4559b67e151da64cd8a8
BLAKE2b-256 e03431dbac7648c10ad6a4cc14607f77d1b071ae80a23b49fa536fbf8cba0906

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e0783d715537b06daf190bbbc8475cca9bbd11e1db2e88fad4bacc7a0023450c
MD5 bb03e7883ab5d3cf0a974e1aa95bbf06
BLAKE2b-256 7e49ec3d5776d652810b2799bcc895baedfb840fa422e1d218c2e21d4ab37cae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65fce380dd0d8cb72bb883d0d65d807b9e9a120e23274904e2c6d2f086a0a86d
MD5 d08a018d4179a762b6cd05900b26b8c1
BLAKE2b-256 ce66dabee1a6bf8d297f39b205ff1885e77e01fee81f683d06a9ff7335e54d1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddeb10e0851b64f1cad405918ee971656e1c96addabe0b51329755d5792e31af
MD5 580e2b10e3b14d9a162856ed1a0c42b2
BLAKE2b-256 1ac0d0ecdfd46992ae963d0b839a4e51a68e5009e032b5fae729befc083099b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c18530cf952df88edf4556e60faa7d993cc1e3dc52d183ac6ef11ba1f450fb4
MD5 f857240d51cc0e1197328ccb651c8e10
BLAKE2b-256 1287963d9c37fdbcb9fe0a7b0802725c8e2454891fbaef936ed6eddba90c1077

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 781.4 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dc95dffe6e312868fb5f94e4ed718b7cd930a1937e6e31ab32a37c9175bf3dcd
MD5 34da19dc35a0ccfc37031b9eca71f157
BLAKE2b-256 fca80447e62c7bcc9f0287d267c27f7431254159cf3bcc08084820e19d0bd462

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dulwich-0.24.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 50ed4f496cd43e8ab26bc1a9508716f94d487076b4c31e33025567808768a2c1
MD5 a2592c1593e95d712706ffa0f7a1e1e9
BLAKE2b-256 37614bcf60cb38d0aedea28d34d5792fccf32156e4676ec75274cfe72d9a11f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5c32d7fb50267ebdc94b3261c2814b826a68c48d3375781c9e23d8bfe97cc82
MD5 83c31b7d89fad40b113609ff98c904a8
BLAKE2b-256 1374e4b792f73087d3a4f48e25421145d9e963e38eeaaddf40e0e418f87de798

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a109ca1a716f1242b5ebd80a146a1b02800c1d9f846b5eeadcf42119adc65def
MD5 f177db4fa210227c299051d5e8a0045d
BLAKE2b-256 f422e7dddda6fcd5d26de5a6ca7385652a112729fe6cbf32c714a25a58e6a00a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dulwich-0.24.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4be71d52b792c6841da3bcb5672150e14ee08a5295275c3504eb8a0e3b0d0a7f
MD5 9a316dee51f86feea0854f103d63bcc5
BLAKE2b-256 fda7eca02c8c9ac10ca03f4b3330a44d78777af7ae224c9575908b51a652060e

See more details on using hashes here.

Provenance

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