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 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.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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

dulwich-0.20.47-pp39-pypy39_pp73-win_amd64.whl (472.6 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.20.47-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.20.47-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (467.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.20.47-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (459.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.20.47-pp38-pypy38_pp73-win_amd64.whl (472.6 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.20.47-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.20.47-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (467.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.20.47-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (459.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.20.47-pp37-pypy37_pp73-win_amd64.whl (472.6 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.20.47-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.20.47-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (467.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.20.47-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (459.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.20.47-cp311-cp311-win_amd64.whl (472.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

dulwich-0.20.47-cp311-cp311-win32.whl (470.6 kB view details)

Uploaded CPython 3.11 Windows x86

dulwich-0.20.47-cp311-cp311-musllinux_1_1_x86_64.whl (517.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

dulwich-0.20.47-cp311-cp311-musllinux_1_1_aarch64.whl (517.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

dulwich-0.20.47-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (501.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dulwich-0.20.47-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (503.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

dulwich-0.20.47-cp311-cp311-macosx_11_0_arm64.whl (460.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dulwich-0.20.47-cp311-cp311-macosx_10_9_x86_64.whl (460.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

dulwich-0.20.47-cp311-cp311-macosx_10_9_universal2.whl (460.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

dulwich-0.20.47-cp310-cp310-win_amd64.whl (472.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.20.47-cp310-cp310-win32.whl (470.6 kB view details)

Uploaded CPython 3.10 Windows x86

dulwich-0.20.47-cp310-cp310-musllinux_1_1_x86_64.whl (513.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

dulwich-0.20.47-cp310-cp310-musllinux_1_1_aarch64.whl (513.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

dulwich-0.20.47-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (500.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dulwich-0.20.47-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dulwich-0.20.47-cp310-cp310-macosx_11_0_arm64.whl (460.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dulwich-0.20.47-cp310-cp310-macosx_10_9_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

dulwich-0.20.47-cp310-cp310-macosx_10_9_universal2.whl (460.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

dulwich-0.20.47-cp39-cp39-win_amd64.whl (472.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.20.47-cp39-cp39-win32.whl (470.6 kB view details)

Uploaded CPython 3.9 Windows x86

dulwich-0.20.47-cp39-cp39-musllinux_1_1_x86_64.whl (512.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

dulwich-0.20.47-cp39-cp39-musllinux_1_1_aarch64.whl (513.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

dulwich-0.20.47-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (499.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dulwich-0.20.47-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dulwich-0.20.47-cp39-cp39-macosx_11_0_arm64.whl (460.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

dulwich-0.20.47-cp39-cp39-macosx_10_9_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

dulwich-0.20.47-cp39-cp39-macosx_10_9_universal2.whl (460.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

dulwich-0.20.47-cp38-cp38-win_amd64.whl (472.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

dulwich-0.20.47-cp38-cp38-win32.whl (470.6 kB view details)

Uploaded CPython 3.8 Windows x86

dulwich-0.20.47-cp38-cp38-musllinux_1_1_x86_64.whl (514.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

dulwich-0.20.47-cp38-cp38-musllinux_1_1_aarch64.whl (514.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

dulwich-0.20.47-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (502.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dulwich-0.20.47-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (504.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dulwich-0.20.47-cp38-cp38-macosx_11_0_arm64.whl (460.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

dulwich-0.20.47-cp38-cp38-macosx_10_9_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

dulwich-0.20.47-cp38-cp38-macosx_10_9_universal2.whl (460.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

dulwich-0.20.47-cp37-cp37m-win_amd64.whl (472.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

dulwich-0.20.47-cp37-cp37m-win32.whl (470.5 kB view details)

Uploaded CPython 3.7m Windows x86

dulwich-0.20.47-cp37-cp37m-musllinux_1_1_x86_64.whl (513.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

dulwich-0.20.47-cp37-cp37m-musllinux_1_1_aarch64.whl (514.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

dulwich-0.20.47-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (498.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

dulwich-0.20.47-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

dulwich-0.20.47-cp37-cp37m-macosx_10_9_x86_64.whl (460.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

dulwich-0.20.47-cp36-cp36m-win_amd64.whl (472.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

dulwich-0.20.47-cp36-cp36m-win32.whl (470.8 kB view details)

Uploaded CPython 3.6m Windows x86

dulwich-0.20.47-cp36-cp36m-musllinux_1_1_x86_64.whl (510.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

dulwich-0.20.47-cp36-cp36m-musllinux_1_1_aarch64.whl (511.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

dulwich-0.20.47-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (498.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

dulwich-0.20.47-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (500.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

dulwich-0.20.47-cp36-cp36m-macosx_10_9_x86_64.whl (460.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file dulwich-0.20.47-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 82eb6087a0cb2313d95cd8a2acfd17642f515cfb11ed287fa963fef8b2593f22
MD5 00a2ee9894f1ab9dde7a7ca700de8ca2
BLAKE2b-256 314d7de13f101d2bd07ddd31022c9c9e22ad21bbdd80f474e08099e5e7158c4d

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89b6102292971c17dc99733007750fb19c2b4eb611ec2f44f1da0153d7d8dc5b
MD5 b036aea69107f1a7d3afe58def4a30e8
BLAKE2b-256 f5af992a6d0adedbc8f2a3c2f6f7b29afc349ad117063ce55ce4c45e75fa3ce7

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdade85cad4a73546fa5bdacad679413f93e1c0bd10b8016ead5df01acc9cc36
MD5 991579e6333ee0e3990263f5436b7d8a
BLAKE2b-256 1f599df5035eef942e3b97dd3d55ad943e2bc3ffbc3ebbb2088a16de8d3a9475

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 520a7a7dad0e16c54cd873e179b069746af93e53a40e230e46bb161be47d8783
MD5 8332bb309a0efe103c7a10e61ce1190e
BLAKE2b-256 82e06bd1b364845ebc308e347709751bea7e47436ffab153dfc21862fdd885d9

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5214d81443b669de3ddc436967700d747227ad87c19fe289a54dca6d4c37e2e2
MD5 33dab9f8be97ed62fb386d4b307cb0f5
BLAKE2b-256 c01dbfaf7ac7e523f5004e0c01ce4f90bd89d014221110515be9bad7d7af3c3d

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de6c077a9bc9381baa778633c14de0847fd6b2e5105130bf860168d45046d2ff
MD5 b841c30d1361b62544534dcb1319c2cd
BLAKE2b-256 a2a78895b838c793e95df778091995e19d1885f48b268d49ddaa062f31192c19

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4bea57cc165ebb213fdf11cd0189cce46c6dfa4114f5fdab547df34d6316a6d
MD5 4ecb1bbda2720fb7ba3e9e4285504f79
BLAKE2b-256 d417812e3b5ac2195af275e806eb9261b004876d9c57245e4db07cccebfa2c71

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc7735445a56790cb62d0f1b8bb13179e3319aae420005abd027b3fb6e4cc49c
MD5 02966ecb628351b766d47077ee3de0a2
BLAKE2b-256 42190a07be43d398175787434a2b83da9fab1fe1ac4bb5a9fd0e5333db0aa729

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5f8a36d814c66bcaf39e665e4217a25b3ca43b8e7661c7bcc4d3332b154b2345
MD5 bc06406f93bf0ba8e88654904d7211b3
BLAKE2b-256 84d1d6b26d5de05268f4976823b1d13c15ff71f6da4e1be9bd96188debee0f52

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70fa98efdbaa905ce6757674092bf646f785c12906db092e8abe947f0676228f
MD5 46ee412df4ceb41f7e843b7864f30ecc
BLAKE2b-256 93f7ec3a9b25f3303f4a09421ca08bac3909840ebff64fce24db5b6a7d15b18f

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e33f58dbc87b1369a34f4d084f2b3d5d8778756552fd9bff9d3b798be7578f1b
MD5 659ba0b633bccf12a8e422d59970f4ce
BLAKE2b-256 7ee5a3e351ccb9efee6ad865d0e147528b074e4b99613f1e2d1a10d76f33a82b

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30a82432a9450bb05c55fa92a20e6ab9e840b512a86d62c028ce8b4a8918d147
MD5 b15939d5e2c3cd78211fb5a96464c1ac
BLAKE2b-256 db10a99a24bd0dd633b11b8c229af2c1f9e70ec019c4fac0cf144c329e8f2ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48789dac8863e25ba0fb464ca98f193ae786b34c28fa09b52d280a37ecfa227c
MD5 b7fd0c801be462c1c33337eeab96791e
BLAKE2b-256 505abb2b21262795aab7ef615d0e45f60d19a22b1a8cf2fb5be58c7a8e01c6f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.47-cp311-cp311-win32.whl
  • Upload date:
  • Size: 470.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b4e77d134a1a4efd366386d7199432b6cbf176c10d9467a505e101d32d3c4f5e
MD5 e78d2a61db8a111368ffc5705ba44dfa
BLAKE2b-256 9d6584e32d2227e4574fcd77a310f7d44e935c8d3b966e8811fe18df0f0fd94a

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 61869e309c54d3aecd80490bb0ff4f616a0ec5b515b2f31a9d348ad0e92d9123
MD5 01b266165fd837ffe8714a7eeea9fa0c
BLAKE2b-256 aa493d0c438371cba774556d5757a4c378e1ecc664e3c7f84abf42c6ce85e789

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9b4a3082f358340eb1e803382f4dd8834c8690656e751e28e7600ebcc70c848f
MD5 9594eeb94fd1ed0ac792191c000d1793
BLAKE2b-256 42125a7a9b0bbc2cdc3c70e778f5a488ddabff7ab0a5dbe61777c550c23ad047

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1755baa76c9f9573809d032f2995cfa95160314b9f1cca72061d393799b042ea
MD5 40336db637192afde3ebcbbda471b538
BLAKE2b-256 54d7e0316a91e28d7f9b988cf9e406854954675bf3b750c597b3884b22815c1c

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e26c7020b301ea6bad3224cdfe0efafb804962cc75ab75c00e4ddba589ad3a45
MD5 dc3b8b3db9e68e3c959cbf7f63373d01
BLAKE2b-256 32727bf300fa0435864b6dbd43689dd6c2653d8a91f4fa16905c04ce7b9a972d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1c48f607e84f71a36352d806bb333de5c5f49943f72fe18cdbe098ae2edef82
MD5 37c886735db6492020913dbe07d0ebe7
BLAKE2b-256 c3c8208b07597cf559303185f1996955edd775ddefad5c33b3b5fca834f9fd37

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b9b5f31acead330166898365f989d3dc01c0ce8618035037f53fff730e985ed
MD5 f3af857b3bd9f69759f774d71256ad28
BLAKE2b-256 2e84875937a3f96abdd05b6c45537148b7b40c31de3375b7366454ce7f22c16e

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c0b1d5f4e11860d31a03e3d78559030ef4ce96a85a169f93a380db4abcb372f4
MD5 fc3453684ea2b4e5a51280addbb1ee9b
BLAKE2b-256 1df3d3c7a3b0e3e99deedc98747d7fab3c96cf882ebee06073364061c68b565d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 82dbb8c701f99ead4c96f321881358d21eb7c0f01b6f9e8f002d4bd5d1984fcd
MD5 b97234899d25bc811e610cb6008a2567
BLAKE2b-256 c8bf5a031866e6b6f1c0564986156c1d15453c87bdcc84d597745a4964b2e532

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.47-cp310-cp310-win32.whl
  • Upload date:
  • Size: 470.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 acb7587d25a861360b1df50f1bee5c5e986808899583325fe19eeedecbed9353
MD5 5ea403a36851afe27fb1075659024ed8
BLAKE2b-256 4a176b273e66da1696af529c87b727f619235e5dabe05b0cce2067ed7bf6d5dd

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d1ce4ae55116330a3aa1f46606b59fa4270e064f8c503a2bd1e2697c673f9d8
MD5 ff950b12f254f918afe37117f129e42a
BLAKE2b-256 e195c97f1f32cb645c186200965ee88aa316330d4a970e91b7dbcaf985667818

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 64fe56f381435e97bb27167b14907066a710c51243d191fdc65b32cb031f3c72
MD5 2e7fa184763c810b4c945230412ae272
BLAKE2b-256 4949341583a52ce27e2dd6e159dceecff0a7c06a983224ed593379ac01cecdfb

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c603367afdf58def25125dcafaa04937016cf49f30badc09b3813ca4a1f92594
MD5 e13e20ccac12eee1436fc1a495679d20
BLAKE2b-256 e9a91a61c4600909de4f5568de32247a24c3a2465941fd829525c40ad124992d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f14bb54830130c5fce66fcc76d201ab125d2c0af2035e946f5fda5e7d93c00e5
MD5 c74ce72ee18e29961997cf3a4e23f378
BLAKE2b-256 f2a685d8d6df7bc8fed4a7b29be6562ff378163cb1c1f029ab1efcf54f8f18f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2198a4f0a98101edf8534c894ca92d113b25dc66f3d3410320b659444d496d9e
MD5 9d3195370d9ddef653848d0a3a0ead3b
BLAKE2b-256 e03acf46a687aa6393ed40e2aadca0b242b686709779b7719f7af79112b21bdb

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f410f181a9b4e996836318a6f50074e9e9d9cfe8d7c1ae72cbdd2bee93f027e0
MD5 b63f3bbd02343124c928218b3628018f
BLAKE2b-256 ada4606898dceba5e74e3f606f83a3ad7205b73259c9689e24ad36a225e24ef9

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 51e6833b9b44066b2c12f55b900eef4f71a8aa00b7ff95ede52ffed207a88f4b
MD5 5372fe2bcdb61faa6242fa745ed38e29
BLAKE2b-256 377019601d05694fcf23f14fabb5c3dfb9081ca1deef7bd38950a8379365b68b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.47-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 472.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 07837959550ba8a731650d3269374b62dd1fa01192a073e1b8a5fd166c33639f
MD5 cea01e0add914e394d02a7225973f824
BLAKE2b-256 d4c109496742f53aadd20f2ddf4983e85cb716cd100d0a0e1897899d27e5fb42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.47-cp39-cp39-win32.whl
  • Upload date:
  • Size: 470.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9d4433713eff19c21d38ae5067d61a7298f167fae96ec913391cd012cbdd1d2c
MD5 fa4c7bf2fa4e5505d9f2bab3ed82e077
BLAKE2b-256 d5d7c04b73139231b3064e9b52d066e563378b7c434ffbaa9dec21d8368f444e

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1f57ecf5c0be70480bb1619fed9f506c112b9e1e59c9de903cb97109cd967533
MD5 3275c44f6f20afbbe603b9d1a18734b1
BLAKE2b-256 d17099fb7e7a1a117d13bf28bc849591386614793b00883458ddc91f5959e9a4

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1fc21a38ab412b5985e1b3ce496524e62337d3b1456c39984d873c36e9c50532
MD5 e4716cf38a84206254a66d04a486e34e
BLAKE2b-256 9b3de27812d963989cd59e129de2c88a53060dc0d1813fa727e96d4787148cba

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ff5756929a3e0c750ca909a8ab5216202dc793da2301b4c56fef16250797470
MD5 6eea4bb017ff2a830f85de0cc294f635
BLAKE2b-256 21d8780173539552eae49dc7e47198fd60663054299ac8b915f5bed1e4725322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b037665edea6035951b80f8eae96ee94d0bd98112592340cac10a36ff67964c3
MD5 3a78e6782d622d655025ee5a2b449ad8
BLAKE2b-256 65013c30f6164d25416c1b95b82b8826801d9465072848213f530572a02564cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b00d9810a1ae8026f752731e33fca08774b929f5ba7fa7f5019e3f3038c884a
MD5 84892564e16de3ccce125d9ce75f7d81
BLAKE2b-256 eb719007b71b1a89f895b86edc55c5cdd9b7cd6ff5bb79720195632b22f8b600

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a1d0ec1aea5b00385f71cbc68cbc08d17897ebe4f22f3fce93e8f89f12138df
MD5 630a28bb2a0b7fcf640dd22e0c1a7368
BLAKE2b-256 dee289ff361d085449943378a13e1c4eb921ee7ba8af36d9cf23326f162efb2e

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f000b83f3c7534b6f484acf632c60b409d9551e3115dd33f6d567b429d5dbe3a
MD5 07ddec6567d2c933225de1aa225f9018
BLAKE2b-256 4c7bab9727f45117e7781b5ee455ba5a7f45b8dbb0139a98567bd4ab345735a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.47-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 472.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 914b9de5831136038a8370e5cca93cb4d83a8385a7e954510130e89a8e54f4bb
MD5 507d9c9c75d763801330fd7060f6922d
BLAKE2b-256 8b4560c8e9a0c0c526934b60c959355f0ba1ba4e2576e46c4ada9befa59c95bf

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp38-cp38-win32.whl.

File metadata

  • Download URL: dulwich-0.20.47-cp38-cp38-win32.whl
  • Upload date:
  • Size: 470.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a18826ae0394758fa9baab454a8fdcbb3f5c834b94fd8efc204ffbe0e6459790
MD5 3871fe0ce98c75679624c505c120900a
BLAKE2b-256 f4cb227ddb6dd680b73b0e4350c5304d6a0a140bd57247901c379200c0f7d28f

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6deafce03a5a8c63679c72146adb718de22d5cc6cc40b8c1c78b362e6b563dca
MD5 2870638ceaae88579f4234e64768df70
BLAKE2b-256 22b2cd8eda3a2e69f466ae5a31d4f8da726c64a9d9f07cc16d4b6695f550a80c

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6542fb4e0b93626596d3720fe346c26389280bfba33260929e479996959ab224
MD5 d26d0a8388eb124889b1c9d08ee3926a
BLAKE2b-256 8bf854382913358fafe5f9eaa3bd91df818af333d86d2904973fd79134dfd206

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93535e9ba53b8fd69e58e6087d20869347d540e075011d9cf94f230258f13ae4
MD5 3d9216f7302e1367dfea2a4b079c8bf4
BLAKE2b-256 f7a8f1564b1bf55867e9e0e94b394c9bdc10d7c0b2ec06b08b4392e2acfc30a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19c7e0379a539c75e66ab331797dbf70cbc66381af539b8379ab593d722f92cd
MD5 6d7e4d1686bb626928991bd303fe0ed8
BLAKE2b-256 ce3a5e57e5b25ef0701a67ed2cb8935fb2475f2f1788dabe839d293ac84ffbcd

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d1ed2adfaa81a60a32637228f1ed45d87725ed0d7de5462f5bce628608ffbfe
MD5 6cef051df82698695566ad93e40abb33
BLAKE2b-256 085e7f0137a0b20b8c58668299fe95099c08d9309c75b6bfc3149025d8950a84

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 865ae57fc50738aeafd065b6accf108160c56d6376f801240877d6092ece3683
MD5 edf3d8a6f9833942fd0b51bde2719070
BLAKE2b-256 acc140d2244a8352866067c530d3e13175d859527865869e5fdf591930a1f2fc

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c7fdcf9601d11b43badefd4d34a7738568fed0ff0c4b440e6459a9180b0d7543
MD5 ca2644a7240c56386ddc161f6966e26a
BLAKE2b-256 657d31419a6ac8ac5c73178dc0ee525a62d0863cf70dcf79bfff460131c27d6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.47-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 472.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d68a77aecaa127347579b3a389ef0725dbd1cd4450e5272c67121afa7bca81e1
MD5 bbfd86e0e98e26bc5e0790b77b3b0f33
BLAKE2b-256 806fdc35d94beb6559c3b0ca762113fe299a8090d838771bc0d7159216748655

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp37-cp37m-win32.whl.

File metadata

  • Download URL: dulwich-0.20.47-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 470.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 00be61ddb8d4dc3a8701cea9809775040d005dad24ddbf27af1c0997754636d1
MD5 4019ff8521bd618cf621359d315ba076
BLAKE2b-256 c94a5b08b7511cfb8b7a9c257919d22f7dad8e7bca0524edccdbb3bc36ac09c5

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 05557cbd86d5173de5a33a0831485fb29f3a3cb3db6f23e706a8e48c8b2798c1
MD5 a95a26b763119577f6c89682d0046f77
BLAKE2b-256 e815689d17539115ca4f07d2ba6a4b361c04a67b8bc5c65622d4ec44ea659a08

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1c85dbfc9a4f2c03c0d9cd47f9afd7d1bdf92b9dc886a90d52d52bd9ea7ac26c
MD5 0f249263e08735ceaa13818e12c3d0bc
BLAKE2b-256 41f64ab049919d5182d978896831f8e03713bd38039e95db3e8c61a1c47a1960

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53bbd442f11ca7df0035e8a3a8cefce32f8fa842d0db389f834c6088b6bdc3a7
MD5 b61fb174e54f7fe590676fb2b09b4e9b
BLAKE2b-256 cca87c0de9c2b2a36245ae455c109b2e5abd54e67f8a54f3537e2ac9c7c9a133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35f7f586a73f883ba705914ef9bc6014bb71b95bc2ddf9522e8ac54b16539f07
MD5 abf289bc1655b7242f29d87fc3bd39d9
BLAKE2b-256 3287aef56b65b36a31ae303974f915579209d687e0b8029539a9f341fd4f3b20

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd436c7426eb04b25462330be0d5f638e81366c2eb33c291de410ed10eb4b318
MD5 28848dec7cc1d3e57f903d3b5a322fe8
BLAKE2b-256 573b5501e14b7fce71d17fa5a6b2b8dd846a8c04a41dc68d801b3cac5022908f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.47-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 472.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ef1df0f9836ab59a07f352fbb776eaa547d64ab8950ca58f5fc242d39c41ca58
MD5 c11fc4bc290d450107d4bb41c8bc358b
BLAKE2b-256 87fdde9fecb41e06e5001d39a77897f4187306d6a441f6f685fe9792024f8fb0

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp36-cp36m-win32.whl.

File metadata

  • Download URL: dulwich-0.20.47-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 470.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for dulwich-0.20.47-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 054ec463422372334b018e7ae4c1d53b30a7971383b17e7d050f836f6a2ff78e
MD5 be604031aadf249c0db8cdae9519a403
BLAKE2b-256 cea5a123e4fcc6fcb765b7489f6bd1a652c5fe8f613aebc0cd46102f61fe2781

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 173d7dc3bd577f81411233d0817702c63e03571e5fe7d304cc09fe360f565036
MD5 e960e60c0cc94215f1b67a57929cd833
BLAKE2b-256 a63dd899b68abbc99c3f1384838deeb1827e18cccdf55bc2d61b4f82d7ea90a9

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2eda26aa9c22ad02c0888fdcf9417eda73e201559fecdced60bf61f359a608f9
MD5 15eafcd0e3640cd7f65461924ef0fd08
BLAKE2b-256 70a2bfda21ee05e9c01797110a2b8b4c5ec1056cb85520ceb2cc3bac5b113d40

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b15aef8234f720c783011d82380ec5f88c9cfc01202855a0a505e02f33e6b9d
MD5 4f6b9592d2554ee49af028446a278197
BLAKE2b-256 67bb0bc3c99b582c997ec7df8a9bcbe61778387dbf4738432407bd9aea2e775c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.47-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f498745d21d7d3830697c5b3c0d3fd8ed3f3240be001eac4f234934dd5192557
MD5 2b9856fe4f2760e685efdf34278135d6
BLAKE2b-256 51a5ea686ee7ca6d3b7c269b5fb387cbe02328a7acaed94f95a59c545810dca3

See more details on using hashes here.

File details

Details for the file dulwich-0.20.47-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.47-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 386fc050a55cf6f58d02a93ff6e4bc5f2e2e25fe287a5100e1a70a1c757820a1
MD5 b722b42e39f7f28fcf06d40d7a156265
BLAKE2b-256 71998377db51a55fb8a6be9a49a0c216fa21125baede20500bb8427340c1e6a7

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