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

Uploaded Source

Built Distributions

dulwich-0.20.34-cp310-cp310-win_amd64.whl (494.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.20.34-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (536.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dulwich-0.20.34-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (550.6 kB view details)

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

dulwich-0.20.34-cp310-cp310-macosx_10_15_x86_64.whl (482.0 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

dulwich-0.20.34-cp39-cp39-win_amd64.whl (494.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.20.34-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (535.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dulwich-0.20.34-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (550.1 kB view details)

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

dulwich-0.20.34-cp39-cp39-macosx_10_15_x86_64.whl (482.0 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

dulwich-0.20.34-cp38-cp38-win_amd64.whl (494.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

dulwich-0.20.34-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (538.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dulwich-0.20.34-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (551.9 kB view details)

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

dulwich-0.20.34-cp38-cp38-macosx_10_14_x86_64.whl (481.6 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

dulwich-0.20.34-cp37-cp37m-win_amd64.whl (494.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

dulwich-0.20.34-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (534.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

dulwich-0.20.34-cp37-cp37m-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.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

dulwich-0.20.34-cp37-cp37m-macosx_10_14_x86_64.whl (481.6 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

dulwich-0.20.34-cp36-cp36m-win_amd64.whl (494.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

dulwich-0.20.34-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (534.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

dulwich-0.20.34-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (548.1 kB view details)

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

dulwich-0.20.34-cp36-cp36m-macosx_10_14_x86_64.whl (481.6 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: dulwich-0.20.34.tar.gz
  • Upload date:
  • Size: 420.3 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/33.0 requests-toolbelt/0.9.1 requests/2.26.0 rfc3986/1.5.0 tqdm/4.62.1 urllib3/1.26.8 CPython/3.9.10

File hashes

Hashes for dulwich-0.20.34.tar.gz
Algorithm Hash digest
SHA256 ea18c172990f250b266a86861b2bc15a7ba7cff5959643eeeb7f46a8e6f9713a
MD5 12e74e84771a9d135b26ac70db37ee5c
BLAKE2b-256 cebde7752179dafe1773a20cb879f6d73caf2ec5e468bc3eaf7120278f403409

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 494.4 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.8 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.34-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d84f8b1275e9d2789165a4ede65a5ec79d2e2509fdc81139a5a98219ee6436da
MD5 64c81ecd440854f93abcc80c6d04db2f
BLAKE2b-256 bbbca421ba4c274cfcec6734758d02d4414a56b9ebf404f013d03b91a089ecfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 536.4 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.8 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.34-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9606a332ca84cef1011513eb3bcfca300d913da26e0c6d097069ce974053e281
MD5 b861678b1a263b62aae4fe72a1a67345
BLAKE2b-256 b6334acb3f00eafdb1c68b7cf649766ebc981f733e552c42883909030f84322f

See more details on using hashes here.

File details

Details for the file dulwich-0.20.34-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.34-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8238cf05badd8e2c2cfcac4af6e01b0f1d7575737f8d271f1fca32dd4682149a
MD5 8053c014680f6cb25979c570aaf3c6f1
BLAKE2b-256 13fc4eb35cca13b1c6ce0343c202ede16aabcf9627431d3800c4ccba1fa68847

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 482.0 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.8 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.34-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 78d47b17eca496a3a969b92751a05c8d56ab7e681e85d1c9b0affab719eb08f4
MD5 618681190aa8c742e290d9a40bfdd2cd
BLAKE2b-256 918fb9682e41b2a515d669c5e7e15e52cf580b551572c7981306e29e35405eb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 494.4 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.8 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.34-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0e300ee68985bdfce23ab4f02e8750adbb2f79b75c8728eead363b55c4765ce8
MD5 d5fc3ba2c3ad54bdc849f04a8630b6b3
BLAKE2b-256 3da899ec4f0424c53276fac4152ee271530d6a593117b912449b611bb7c8b54d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 535.8 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.8 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.34-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf8186fc7c91b631f694561e256b9437eb6f5d8eab35ae878f0a59a83b3d32f8
MD5 41d0496510a20c39c59c80650f48c0f3
BLAKE2b-256 d49ddf80ababd5d270413462fc95c1c58b2c3492f8d366f66ebbd008ce04f59e

See more details on using hashes here.

File details

Details for the file dulwich-0.20.34-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.34-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4ab7f78fd41a6c09b55b943b06490abf9b542d07484dac274d49ebe4060c7cc5
MD5 119d3c24d80d2b050e3f31b3a1237fa4
BLAKE2b-256 37d307ce51b8a345ab772cbcd931e8a4ccd2351239a32242e24ba6fc8220ceb3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 482.0 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.8 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.34-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f785d07ecd722ee110b5cca96359012efaa8643408a678d2d03a563eab01ff36
MD5 5324682aab4ed1d624c34fc33510b63c
BLAKE2b-256 ed0887dacbadc77794d68299ce12250813d2892efc5dd620251a04c78215e7f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 494.3 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.8 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.34-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1de7ba8200ee518407a6f32099174024a8bce37bbb36a6ccce676d34fc4f0b7e
MD5 470cf7373b419252743d8a1e072270e2
BLAKE2b-256 a1affa68e24425015f4d1172433aee97937f86616eb74fd9927659c265d58b95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 538.7 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.8 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.34-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cc5d226187e0de59bbd6bf94ddb982ff931d97f7d3cdecd9a44e0a3b4f0c333
MD5 991bd945be6b4e8db125806cda1804bd
BLAKE2b-256 a0f6865f1216b0fdc2623078f7937d99affc05af51926969da16efbe58b45a06

See more details on using hashes here.

File details

Details for the file dulwich-0.20.34-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.34-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5f52b55e04f48e9790c75cfd55487c2c709bf97e948363bd3681552aa2850834
MD5 c5ecd5400d16238fe5cdb1c07d755a4a
BLAKE2b-256 b8cd4df1fb52072461f4744bbb42bc8c35835eb5375f55f9692a3f293e69cb7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 481.6 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.8 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.34-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 69b200a29aee712ff0da717b4688b52f6ce25cf2752480797ea1a2f5128775f7
MD5 321c6efc84a3e4b21f8f5f9d2df02888
BLAKE2b-256 998684e9ff6d3476c4ea3221fc77aaefd6ec6d021de6b5c95593ec6b57a5ddf6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 494.1 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.8 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.34-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5ed2f54d206f94576ccc8509e72ce788ce9e73a90a9737d4989188ef982f63a2
MD5 72d6a88ae42229c56b6e874bbe6f4a7f
BLAKE2b-256 ff4d6b25cdacace9617a0534c94bf12cdb572d3877e2e8113499f3330980fa35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 534.9 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.8 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.34-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46e28902b834cd888592c72fb87f0f3529b82c29bc2356f022aea60cc2405c5b
MD5 fdc28624f7e779da62baa8969aa5696a
BLAKE2b-256 f1195eb7062ec4647274ea98f34a312ca010ae72a93f7c7e1f9ad00a6619c456

See more details on using hashes here.

File details

Details for the file dulwich-0.20.34-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.34-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b1d74d8e4ec00647d8f6e50c8bfbd59eedca16092796cbfbbe21fbb6ddffbd34
MD5 6132a09286ea7b56c15962edc61e0006
BLAKE2b-256 6d1dfe70bee6763cb4aabe412c224c1e12d014f2f1b7139c8cf03213c560bd29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 481.6 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.8 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.34-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 87d769982ed1e58cb9d7d85d3017ec23d05092119b1e175c9579491fea9a0492
MD5 851867d117a901c4581ceb00f13b54de
BLAKE2b-256 8692de542c571a2d6af660044a96612516be6d1ea2ea215d8e020366a81b9a7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 494.2 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.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.34-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8caa18a9ea8605327211b30dbe30996d21ddd7bba9452715ba8fc1a7e00dfd29
MD5 56a3bbd49bb77c73a586f9bf71bbfd36
BLAKE2b-256 cd407f50df03c4eea36b28a010a46058b283d2d9df54567b37dfb3f429e9e188

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 534.8 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.8 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.34-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e63f2e545ac305f8e5301d85924e5283fed1b43982a914fcfb063bb28b9129a
MD5 9ed5f66cf4d230cda700fb572fe82c56
BLAKE2b-256 b1a6fb63470345768bf3e09a5a80de18b2e88789677bae47d769d096b5d0f433

See more details on using hashes here.

File details

Details for the file dulwich-0.20.34-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.34-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 eba3c6c303d79cc925a9b7921e08202ab482f4a80d9d8feb43bbb32dfab77ce8
MD5 98899004b990165d87014c1b7941a92d
BLAKE2b-256 0cbb7da71cf5d8caaf097aa163f05226bb3cf618c592ad3e6157f5927a8fde5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.34-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 481.6 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.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.34-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 804c73aac887b4e485b3bc2af600456da6d05cd7b297f3042d8b5d0a4b7bc14b
MD5 34d41522a515c6ad2a38098d8788863a
BLAKE2b-256 d67239eabcdcea73ecbfc140aac16fcb091ee1a69d71f1f721824f7675dac42a

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