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.35.tar.gz (421.0 kB view details)

Uploaded Source

Built Distributions

dulwich-0.20.35-cp310-cp310-win_amd64.whl (494.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.20.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (536.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dulwich-0.20.35-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (550.9 kB view details)

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

dulwich-0.20.35-cp310-cp310-macosx_10_15_x86_64.whl (482.3 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

dulwich-0.20.35-cp39-cp39-win_amd64.whl (494.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.20.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (536.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dulwich-0.20.35-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (550.4 kB view details)

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

dulwich-0.20.35-cp39-cp39-macosx_10_15_x86_64.whl (482.3 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

dulwich-0.20.35-cp38-cp38-win_amd64.whl (494.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

dulwich-0.20.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (539.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dulwich-0.20.35-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (552.2 kB view details)

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

dulwich-0.20.35-cp38-cp38-macosx_10_14_x86_64.whl (481.9 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

dulwich-0.20.35-cp37-cp37m-win_amd64.whl (494.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

dulwich-0.20.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (535.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

dulwich-0.20.35-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (551.2 kB view details)

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

dulwich-0.20.35-cp37-cp37m-macosx_10_14_x86_64.whl (481.8 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

dulwich-0.20.35-cp36-cp36m-win_amd64.whl (494.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

dulwich-0.20.35-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (535.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

dulwich-0.20.35-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (548.4 kB view details)

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

dulwich-0.20.35-cp36-cp36m-macosx_10_14_x86_64.whl (481.8 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: dulwich-0.20.35.tar.gz
  • Upload date:
  • Size: 421.0 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/34.0 requests-toolbelt/0.9.1 requests/2.26.0 rfc3986/1.5.0 tqdm/4.62.1 urllib3/1.26.9 CPython/3.9.11

File hashes

Hashes for dulwich-0.20.35.tar.gz
Algorithm Hash digest
SHA256 953f6301a9df8a091fa88d55eed394a88bf9988cde8be341775354910918c196
MD5 f3fecc94fdabff2ee726916b739b6ae5
BLAKE2b-256 280de89036c08fd49722ca7091cc574c0f133d667a7ec37bbdff763b15ec0913

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 494.6 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.35-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 22c61a24edb699564b49a9701b723a08fa773f5d3322e8a0cabda897ae86816e
MD5 ba8cf29a545c47499aed6f0397433e50
BLAKE2b-256 cb68cc3e3c1041ed81312d01775c5f7d42734c8a3b6e2990e77c00cd5a496569

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 536.7 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.35-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 581c6aa825c9267794747c5cc5ec3831960d96ca7fd9eb0158989e9a4099cbb1
MD5 6123fdcc4499e9c1978636dd3f6eda41
BLAKE2b-256 3a99c8a5a7917387dfea27a9068b883c35ab70742033239ed58f654c2c5b1a40

See more details on using hashes here.

File details

Details for the file dulwich-0.20.35-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.35-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e11cc7a30b42dbbe5a0b6ebbfbfbb07138a5ffd6175bab2ddbabc9882a1c0438
MD5 ec1430f51a7a105b95d44b385d17538a
BLAKE2b-256 f9e36b1656fdfd6850daf794c22d1abf17f3970e5ca1d1cf6c2134de28e5a4dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 482.3 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.35-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 428b5fbb79f8cfba2f5ac6826cc813d1903b44b0780e9ec57e54cbd0f44feb61
MD5 2b9a7ee915edf6c1f473174e3a7082c5
BLAKE2b-256 2b8f89b32ca812631ed116f891eb45f28ac4d3ed0d127e8f9244b4891ab0cfa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 494.6 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for dulwich-0.20.35-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bf228800785754d7a55d52c5f122c26c3ced51f0f3df727fde2c9fefb71d5d76
MD5 4c9c03b5883f5132f2f0a2830627b592
BLAKE2b-256 33fb8d6e20d53df6b56bd87f73da7f1285b96698bfcccec871ce21dae434ffe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 536.1 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.35-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 134a2f586847c2c58569959a784d7a875b551df4226b639267302217799e4234
MD5 c7e382a5be0e40aabad384a59fb3444a
BLAKE2b-256 fd4ffcfe858e844b99045ecb3d1756b1720ee1b8ee30a279acbfcaf4de993619

See more details on using hashes here.

File details

Details for the file dulwich-0.20.35-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.35-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c008b6b562af76cf011d3b5450a0d30edc96feeee7856b081d7400bc7cf42653
MD5 f669c556b34b1c62fcfdbe4b1351f310
BLAKE2b-256 4986498013a9822cb8261de2e1ec8390b5b2727340b7f04823301e1bea2e3a36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 482.3 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for dulwich-0.20.35-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3616a949053eb6bdf34581f57d1f6cb7192a4bb635be1a02c37f6f6dda032277
MD5 8eb3459559e635ee281b3d768607863f
BLAKE2b-256 db534de7e16ef0b66776ed237363dcb0eb4150e7d0ee73f3d729dd92110c2fa8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 494.6 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10

File hashes

Hashes for dulwich-0.20.35-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c4f4c59445dc5c2341e9cb2fe35e51a890e8a5f42178abec0a96044811c558a9
MD5 fe03a93533aa6b85779e625fc252179c
BLAKE2b-256 0cc486924f2705f8281795e01c2869d84fa4d0f41dccdce01856aab99cba3cc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 539.0 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.35-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f563e9f51e83c47a7df2f3cea79919f700e50d1e5556b6b753730b9cd2be1f47
MD5 efd5b1b861dddaf88c07dfd007de91b5
BLAKE2b-256 931c949e10911a30e15cc0c15505b124288359b97ce2d39ab37c474509a651a1

See more details on using hashes here.

File details

Details for the file dulwich-0.20.35-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.35-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 f221c3c2fd10260419905bb673cd00129d491e3ed38c7a8d3ac2c7662682dd9b
MD5 a80aca779e2949505e442ea03979e6e7
BLAKE2b-256 f0a1c8975d842cd18cace7f0eb43ff1031dcd624bafbf61472e11f680418599e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 481.9 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.12

File hashes

Hashes for dulwich-0.20.35-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5d94cd182fb0da4ec2f182be977b27b9cc1d7dbd0ee9bbf991e101a95fdcd3d8
MD5 7261d259e4dcd0fe6a36d568890f8e33
BLAKE2b-256 174eba04ea1b7cbfc2551bd1c110024348f54d08f58a481e7e3dc9f66b326175

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 494.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for dulwich-0.20.35-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3d3d07b5aa51e6b7d08707c62932da86adbbaaa62552a0129b37d413735c7786
MD5 168b661c9a12a1101cfb5c2635ac19aa
BLAKE2b-256 1f55b3e82499cb17282fe343b33a6cd52a569598b96faec1628be71c9336f724

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 535.1 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.35-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 195b21c7a8f85cb2de8938d54fcc6d589d1ccbceaa63bb117796b531065bb68b
MD5 384acae01dea62131d5a65cba6f5de27
BLAKE2b-256 4ffe9f32fe16b31cb2cfea0f1f27acee0eb590bdbea795cc693fda92d5467264

See more details on using hashes here.

File details

Details for the file dulwich-0.20.35-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.35-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9bdea3a4e8e5e3b1dbd513d9ab8a692f8a9a6f4760633e25c006446bce56fc5e
MD5 efa0f46f4792645e176274ee9f0ae78f
BLAKE2b-256 0acd29de45b972e03a54fce282e26b2698064f842a938e9edeb8cedcc98e3695

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 481.8 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.12

File hashes

Hashes for dulwich-0.20.35-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 28ac2374f09487b02a8cb9b2fad083c358fc927bcfe9803d971614bc00e25076
MD5 243afe4f78ab1f61936dcac1da4fe171
BLAKE2b-256 31cb4ecfe1a7f155fdc3f50fad9df08cbc9a78844779ccb280a10fb84c7a34b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 494.4 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 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.35-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6dc9b082f6ace9890de572260a575a09a996d617f5930edd2858c6f8fedfd7fb
MD5 1e41f96e67575a7c9d8725b8b5cbec25
BLAKE2b-256 5f2be7da6662e6399cf60f9af67e489eaf76e70856fe05842696a5d89e6ad1f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 535.1 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for dulwich-0.20.35-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d683b4f30b1dae6b1668336f62f10ff57ebf2a1252c7cc76ad3eeff973879eb
MD5 13b3c530c281e3b9ea381d01eb26e509
BLAKE2b-256 933514f3f92a0c3dddc15a22ee86c02037d26ceaf0d3e5ec15c53526a5dce10a

See more details on using hashes here.

File details

Details for the file dulwich-0.20.35-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.35-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9d85b6b41c4be6df9ecdc4014d3cbe78a5a44a73c97bccbefac3e5de83bb74be
MD5 b188075f8928bc3cdd6b2da9fe73652e
BLAKE2b-256 1905891e46afbefea24182f19aa48eb641db43ccdd1443c8e37fee7c8f822b3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.35-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 481.8 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/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 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.35-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9759cf611503681bcdd2950c9d2db04d1c057ecbb62d6fccd095b13771864f1c
MD5 e757b0fe0c7e5582884335aa40cbe89b
BLAKE2b-256 dea33bd2dc65cdc7bf75b3d76eec9762de1ea04702e063699150e678ba74a69e

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