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.

The project is named after the part of London that Mr. and Mrs. Git live in in the particular Monty Python sketch.

Installation

By default, Dulwich’ setup.py will attempt to build and install the optional C 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 C bindings, specify the –pure argument to setup.py:

$ python setup.py --pure install

or if you are installing from pip:

$ pip install dulwich --global-option="--pure"

Note that you can also specify –global-option in a requirements.txt file, e.g. like this:

dulwich --global-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 dulwich-announce and dulwich-discuss mailing lists.

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.6 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.20.33.tar.gz (419.9 kB view details)

Uploaded Source

Built Distributions

dulwich-0.20.33-cp310-cp310-win_amd64.whl (493.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.20.33-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (536.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dulwich-0.20.33-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (550.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

dulwich-0.20.33-cp310-cp310-macosx_10_15_x86_64.whl (481.6 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

dulwich-0.20.33-cp39-cp39-win_amd64.whl (493.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.20.33-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (535.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dulwich-0.20.33-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (549.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

dulwich-0.20.33-cp39-cp39-macosx_10_15_x86_64.whl (481.5 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

dulwich-0.20.33-cp38-cp38-win_amd64.whl (493.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

dulwich-0.20.33-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (538.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dulwich-0.20.33-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (551.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

dulwich-0.20.33-cp38-cp38-macosx_10_14_x86_64.whl (481.2 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

dulwich-0.20.33-cp37-cp37m-win_amd64.whl (493.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

dulwich-0.20.33-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (534.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

dulwich-0.20.33-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (550.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

dulwich-0.20.33-cp37-cp37m-macosx_10_14_x86_64.whl (481.1 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

dulwich-0.20.33-cp36-cp36m-win_amd64.whl (493.7 kB view details)

Uploaded CPython 3.6m Windows x86-64

dulwich-0.20.33-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (534.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

dulwich-0.20.33-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (547.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

dulwich-0.20.33-cp36-cp36m-macosx_10_14_x86_64.whl (481.1 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: dulwich-0.20.33.tar.gz
  • Upload date:
  • Size: 419.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/24.0 requests-toolbelt/0.9.1 requests/2.26.0 rfc3986/1.5.0 tqdm/4.62.1 urllib3/1.26.6 CPython/3.9.10

File hashes

Hashes for dulwich-0.20.33.tar.gz
Algorithm Hash digest
SHA256 9537abef8cabee96b0c09af950661b883057879a788d98f1187b79e32fee9650
MD5 a0cf0fe3a3125874f2bc03d834611d44
BLAKE2b-256 de42c4218857c39ebc9b13c4a5c8d684e4d873ea0c680927ad1cc20e79db258a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.33-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 493.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.33-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d28976a43b0b94ca10aef19b066675235ddad223877454ca6e2d5227f269de4
MD5 f34ca778c2cd424beb894a052ddb8c69
BLAKE2b-256 55dc29328d098508157b032298869657d226b696a27999df36c6a2abe138280d

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 536.0 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.33-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9ddb5c0091215855496abe3bb3a78d45844943a781120b018e12e3885f9173a
MD5 aeadc9e24bc0ebb68fa7b223d5116d45
BLAKE2b-256 dd95f52e211e4cb6343e75bf28a62d3820e0cec5c78f66746b5546b7eac12a21

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.33-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4d873fec767477a5e2d4315a6a1e60875297dd4c6548f1ae14f6a1d14344b4cd
MD5 2dc83230c5b063fca4538a01ef996c83
BLAKE2b-256 d2f0fb3b2b2d1508064b56aeed2a20ad26441f37ca102f386eb75ee6deb69449

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 481.6 kB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.33-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef4b8dfcb00f0af012e844cee684dc792c6bd72211bd8209f1aeff7cd18dd701
MD5 b39c61de54f1417c3314e594b52eb7c9
BLAKE2b-256 39a69ba01964517681d1ad27545076543ffecc4a385d241dca1ab1a55a37a13b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.33-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 493.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for dulwich-0.20.33-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c6cac6626b6dc1cb8f1ad40eeb124240dd2359bc253431bf78339272fee37dfe
MD5 16f9c741940826ce8589afaa8be2018d
BLAKE2b-256 f3784276b1e1cc6d60c366f84c1584efd6f15b10f043190abcefddeb68686669

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 535.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.33-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f17808a351c993efa4adf66cedcc9bfe9bf686455e92e499aedfcaa1bfb603b
MD5 cb3563b33996c0272dea6d4b6a6d5b5d
BLAKE2b-256 4c37594e30b1abac3977c6b95909ad5b79f1e723b0073d84a7118feeff221055

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.33-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 baf8844d0795d2b8a8c38531c5f8c2a6ea43343a52e5183dfb71b285e3458ea2
MD5 d743f0423b50d577db30c2c1875e447b
BLAKE2b-256 5d7cf68797250ccf0a809410dba36926f3c73d7cbd244b68dba234fca6b56164

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 481.5 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for dulwich-0.20.33-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 69edeab17a899d9cbbab2c615a565fca432a48b4b6630f724c72d5fe735a92c8
MD5 878807edec3ef9bf335e343a5847af14
BLAKE2b-256 4912c37e387dd375361962ddfe1b0dc2d2deb70efa8ce4915256106634245524

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 493.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for dulwich-0.20.33-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 68ffb1af34de98cfbe3965036f480d11c6f8811c09f515c4b2f6184cde2eff44
MD5 2c026d68771b1081b771a6007bfa0d9a
BLAKE2b-256 3da9c085e5249847f276b62bd5d19f321af9a784109ca79ae7e5959c761f6304

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 538.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.33-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f547becd47961d5209bc345f2d649b9e684c1fb6c2212fb4fe9ac330c5d02956
MD5 c530780f2c8834b80d9438ce0034b1e2
BLAKE2b-256 8be22149fa4ca72956a123b2a75f99484fe2441d6ba7ed109b8a2f151210fa0b

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.33-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 892d97cfa7fa4fa581a3a748ca644542c63818ea73b822fdf430879d6556ea89
MD5 c0c255b52f718156d0c0c3bb21b2e953
BLAKE2b-256 29cf76995cff63667b0666c705fa777ea02e524d916fe314638d64ff41e1f8fa

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 481.2 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for dulwich-0.20.33-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 19995a2005d5430faeaa5f87a6706e1bb54a9620aa22fbfdc20da5f51122744e
MD5 f38796805bc47bec016874c6d40ceafc
BLAKE2b-256 e9c99d8cd124fd767826b9edaa2d4eaeee67e46b1619b5305447524fa5537e04

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 493.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for dulwich-0.20.33-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 03100598512c87f1cd13f8f970c85d55d9181a637b7a47abc6ac55672b3da08d
MD5 3c6dac55728fba52fea747e7b139567e
BLAKE2b-256 3fd207dc2285691afd54d95d876eca2f48315402670cb00b3a50d06105aeb811

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 534.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.33-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 033de2e5be1bff47ea3cb6408877286b4424b12880868fa6b5bd2659cc7da4ce
MD5 0ec15da1ef2b8fc86a461684f3d2cbb0
BLAKE2b-256 dc2dc725d4799f6dd3b04c95d36873b2226eaa3c59858663da3c05c144fde928

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.33-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 33e5659eab3fc6721589c19b1f8913716ec37ad6ab19024c4a83e912b1b49589
MD5 a1422b1542475cbba7d34595f23de8e7
BLAKE2b-256 edbbf72ed3d67d7e17d4b0a67d4ba55498e78c4fd80cff09fe8183b6697c0771

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 481.1 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12

File hashes

Hashes for dulwich-0.20.33-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c9b2e9c775a066700d2def367f8addefe2c016f3a3031ef380d8ef7a99c50eb1
MD5 848cf92e6d423396b1e8be24f495f9fc
BLAKE2b-256 64642327d99cde6e9354e52ef60c7e89e0022b4980fc90cdcf4d5a6b053f72e5

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 493.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.8

File hashes

Hashes for dulwich-0.20.33-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 80a3e8137f8bda55c9ee432eb0b7adfbe2d72b99ee86fc7bb0997beec8b98f6d
MD5 32c087d60163525a860ac3e4e8560397
BLAKE2b-256 4b9d9ca8fd9c6633fc75eeadcdbf18810bce287e74fcff81924233c3cafd89f8

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 534.4 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.33-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 930bf11fecb6af51e016672e2c556a2df25d3a6558681e5bb5c94da714d72032
MD5 fa44b2049cc1e4dec1f32a212afba505
BLAKE2b-256 d324fd6364844f006c9f9d78974f7651c5daecf8f3c54239437fd2db94573c68

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.33-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6d1bb48353ad064bd0d1bcd8ec1c32a3c5214babc974f92f2ba00bcebf44b5e8
MD5 329919a90b841fefa651714974345034
BLAKE2b-256 059a660ddd6c5e80f31435ea4cbcf4c6897bfa3b8693dde811dd755ce563bb3f

See more details on using hashes here.

File details

Details for the file dulwich-0.20.33-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.33-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 481.1 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.15

File hashes

Hashes for dulwich-0.20.33-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2b2b46556a6f833311f16c6872bf76b790c9ff0c84110144eda6ced41c13e4cd
MD5 f21593cebdeb3334897945c1064955d5
BLAKE2b-256 3b06d6d1548df587f64aabfdf371a5cbd26dccd5e347a6bc179da290c2f94c8b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page