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

Uploaded Python 3

dulwich-0.24.3-cp313-cp313-win_amd64.whl (855.1 kB view details)

Uploaded CPython 3.13Windows x86-64

dulwich-0.24.3-cp313-cp313-win32.whl (836.9 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

dulwich-0.24.3-cp312-cp312-win_amd64.whl (854.9 kB view details)

Uploaded CPython 3.12Windows x86-64

dulwich-0.24.3-cp312-cp312-win32.whl (836.8 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

dulwich-0.24.3-cp311-cp311-win_amd64.whl (854.3 kB view details)

Uploaded CPython 3.11Windows x86-64

dulwich-0.24.3-cp311-cp311-win32.whl (837.1 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

dulwich-0.24.3-cp310-cp310-win_amd64.whl (854.5 kB view details)

Uploaded CPython 3.10Windows x86-64

dulwich-0.24.3-cp310-cp310-win32.whl (838.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dulwich-0.24.3-cp39-cp39-win_amd64.whl (856.2 kB view details)

Uploaded CPython 3.9Windows x86-64

dulwich-0.24.3-cp39-cp39-win32.whl (839.2 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

File metadata

  • Download URL: dulwich-0.24.3.tar.gz
  • Upload date:
  • Size: 911.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3.tar.gz
Algorithm Hash digest
SHA256 0b3b0da8340d199e73b36e1a2f2214b835278f2388e7efbce40a81a63d81fce4
MD5 790e1ca5468d2bb64b9d69b6e42a8793
BLAKE2b-256 eb1cd60613b909b5c7301753d8339a7b033f15091120f094ae1492c75b50a87e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.24.3-py3-none-any.whl
  • Upload date:
  • Size: 514.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-py3-none-any.whl
Algorithm Hash digest
SHA256 307bda6d5cccfafa7afcf92292c0f92ac76ff55d372416940981ef409d24a5f8
MD5 1503ae0dbad23cbc0b5226603e98e5fc
BLAKE2b-256 ad92b3587ad20374319dbcbe64c10a4beec0db973f666973ab51472396ed3427

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.24.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 855.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 90b6565685adec944b4c142a314e25c64c335b155b9575345bfa7f15b8a577a6
MD5 87a381ad230a92fff60d3ecf95eba00a
BLAKE2b-256 6bc4bbe99b4590f51e6040a8c52c668c4f2ff0be4a6d01a99002183cb351d564

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.24.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 836.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 172c2b092f37becab10f27db262a1765787e8e73edacb89c4e8f379242495bb5
MD5 ae0a8f5b7dccd482a29379326d4e9067
BLAKE2b-256 4fd3d91605965a9ce2f719a6cbc181303323e0e3e16e7ea428a2793ba90ddea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.24.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c16dba3343bd20d85e4590056a9be5d5fb424ea824734be88dbf3ca3f7178b0
MD5 e2d65f17d0ef52c3f02be3223c9cbaf4
BLAKE2b-256 6a661f13be9a9088af5358bab18879b3900b2ba5e361a6de3efae64c30cc5c97

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8893410ca4462e0d08f0457cebed993f3a839622c4641e713ab299b38df455b7
MD5 0f0ddc5e1ad805c6b642378d0830e37d
BLAKE2b-256 6dea192ca72198e1ffd4d34b4dd82c3ad5ac0384417f3c4c79810847b34f8dde

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e75aa07fb8a1f14e6f65867c6734c9b606f6e33bf0b13e7da0f8e0e55643befe
MD5 ad4f0c8d8f6ee2d942a174f3c73d98fe
BLAKE2b-256 f81f43afe49d22647d02913af48dc058cfc6af7e023b8572b0345f9e0b6495be

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.24.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 854.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7658d9040108ba804c3705cc2660eb74281aa637fcb8cc07fa48b2c9be1ade94
MD5 145cb639357d3232542a73f8e559d8a7
BLAKE2b-256 f1f343ce6b7807daa7737caacfbc59c2804cb5a620a2e560bcfccf0b2f35f298

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.24.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 836.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a74c56f044dcd52d43a60b0ee445df076e0dcc2b728f6172922a6a1bf8232b25
MD5 cdc1fd2b2e70dc320c85f402f521c454
BLAKE2b-256 94d602589de8530715c810a3f67990f50ab7b536fc65ac2caad43c84d818466b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.24.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdfd4d4af47c7ef8e6172e95303a71277947517f65fcf9d50416df0c12ff0f63
MD5 34c3b97e76bd4a9e0a48a9f35377a463
BLAKE2b-256 b95d9858510975e2fc19dd7e09a98dfe667e593b0667c0a3ffa57da0a5451ddf

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dea9d390a533ed23ab44fac78eb0a273e4f1df59d5ec548207be0469674208a1
MD5 3ae8c99fba80bfc5f7e03543a02b330b
BLAKE2b-256 7e47013d2c3f6acf0e4dddb540c8dc26bb627a28efb84c4ae5dbc5e9d8bdd30c

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0046c62ebd2c4106339726e9c00b8792bcb2dd5cd239b95253507d593f4790f3
MD5 d5fd8a8da0a996b5cc11b3e8f6eba024
BLAKE2b-256 52182d8e6e5d473c18541b16a50ebe0a4079ded9ffc9252dbe45dd6b55255314

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.24.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 854.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fd92464cdc63109f77591238ada4ce9003e05bfe060665287d89a9f0a1910eae
MD5 cdc4d9b2b3b2c4da00c6b2fefc0fc9bd
BLAKE2b-256 9cae1e819ff32bc0fce2044f57d6cccab5397f96006abc5991dea6ae143096d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.24.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 837.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d451a6430a3969ed5e673f509216f24c2d86cccde44171884d3fddcff3a0d1ec
MD5 cd0cf0503fd6595b4a0bb9e5b0890600
BLAKE2b-256 3608df8dd1e081a87dcc7e93e68d340e3548265a528b9edaf2a819282641a7f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.24.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a075c0c0473c255190712561353df35c3773a204c63c7e58bcc5a5f5a64e9fb
MD5 6b4def0ff96f5a1733f4b869ee0219fb
BLAKE2b-256 f405c9dc526e97240f9c2dcf387070e6644421d3868989ec6a461861cf1826c2

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1844f3fca8a0f0d144f5eb4eb489aaa7dac61c81dc83f96752b2a9a22e1f6554
MD5 95ebdc1c56ce6e2c2460be934920777d
BLAKE2b-256 64d5ca279930839b1104a4886a50d9544b853df0646976f38055ede9485633ae

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0271ed656c4c22b9646933dfb2400a100151e6439bca1affca92ea59b3f04886
MD5 99bfcda574e79a05656d0913a292e1c6
BLAKE2b-256 066fc6a70feb9bfc626fedf9b896412bc0c77f63375591e98b601ddaed251b2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.24.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 854.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b4aefcf381901e222c3bf4adc3b9e9d67be2fda7af3d0de135264c0b668709ee
MD5 f457663c5f6272d5941aa5b5ae63172c
BLAKE2b-256 c701559e2e7dd35bc2d3894746ba58c9fd4c53b8f8646ef1d0d826cd151471a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.24.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 838.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9b24465c472ad4cddccf5e2b0297366c9ed9c4cee54d8dc874fb75953e138ee4
MD5 59dbc99d9363a3c68a36d1cc5acb9364
BLAKE2b-256 3b74a80a625495d3d2579f4c9e90cd28f6cc3a07abe064d45c1bc9f0d7d8a149

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.24.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a0d8cd3a6682889c7b92e1bdd45a5ff1dc5cffc5213c7e954b8f86f5be57c0f
MD5 d0846301d91ec6de645eb077ada9851a
BLAKE2b-256 0f0ca373608c4939922f7c76322702a068b100e6b667f40b22826e78efd32bcc

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 973b91d7e6746a1ad3539e0455deffdd12ac6a5610d2ad880d1183da7d1ec06f
MD5 908b35e65ae602c37764e3b4dc3a4002
BLAKE2b-256 9a11fac48f91622f56eb1166d5558206a617cbb5eb32945a4b586003a6c0e488

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad761f97b2fff6d34bab6277416aafe73c39344dfb9fea48a2ff90473b660554
MD5 151ac7295185f81a1c320f26ff055ee3
BLAKE2b-256 70a931c616b76dad2d368a779eec2974df6c515b6fb6a454e0e453955f71b576

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.24.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 856.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f73cbe09fc027072cc8b53a976edba97594feacc11c285fb6dd73d7473f9f615
MD5 ea1c3a178c17c0a3b0adcfb8df701924
BLAKE2b-256 83ad67f752889392f6c292e38bf8297c77a3cf11a2262b68883129ef552cb77e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.24.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 839.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.8

File hashes

Hashes for dulwich-0.24.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8385a4de26f9f46c55165ebf5f43e6407cd135f1b2b9101edcaa732a4529a354
MD5 51f704365ece0c3eafa33cfc9bd079f9
BLAKE2b-256 c2236143197b7bb2400dc036b3237b0f3bddef3375e2e966ca4059ce4e31f892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.24.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02a7e600c3054eef57914a5895ea713346af17bda3857a343475d0f4eeac4cb7
MD5 31fc8fcf912d3597eac854b9125226d0
BLAKE2b-256 14fc8824290af9889bb235e1110c96fa5d194288991b961c9ff748ac89b55ba8

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2de4a6640e6060656f4dbbcba8c06006ecd2a7bc59e3c4d98028991c450c56db
MD5 da78d6c775b72f4534d27932ff3cff72
BLAKE2b-256 19f84a412bf2ed332cdb99d1bc356c5d0ecb6fdf6766c801f6ff22da67fe3bc3

See more details on using hashes here.

File details

Details for the file dulwich-0.24.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.24.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 142261d3cd226512293dcdfd4399350456f5461585d58d25e7f730fea8236955
MD5 a926169209d9206c12cca9c190b34655
BLAKE2b-256 c4a08f47e3f419431b8bc92bc28a51a337b479f74d9502271b537129ced92670

See more details on using hashes here.

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