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 Distribution

dulwich-0.20.46.tar.gz (426.5 kB view details)

Uploaded Source

Built Distributions

dulwich-0.20.46-cp311-cp311-win_amd64.whl (470.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

dulwich-0.20.46-cp311-cp311-win32.whl (468.2 kB view details)

Uploaded CPython 3.11 Windows x86

dulwich-0.20.46-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (499.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dulwich-0.20.46-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

dulwich-0.20.46-cp311-cp311-macosx_10_15_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

dulwich-0.20.46-cp310-cp310-win_amd64.whl (470.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.20.46-cp310-cp310-win32.whl (468.2 kB view details)

Uploaded CPython 3.10 Windows x86

dulwich-0.20.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dulwich-0.20.46-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dulwich-0.20.46-cp310-cp310-macosx_10_15_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

dulwich-0.20.46-cp39-cp39-win_amd64.whl (470.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.20.46-cp39-cp39-win32.whl (468.6 kB view details)

Uploaded CPython 3.9 Windows x86

dulwich-0.20.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (497.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dulwich-0.20.46-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dulwich-0.20.46-cp39-cp39-macosx_10_15_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

dulwich-0.20.46-cp38-cp38-win_amd64.whl (470.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

dulwich-0.20.46-cp38-cp38-win32.whl (468.6 kB view details)

Uploaded CPython 3.8 Windows x86

dulwich-0.20.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (499.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dulwich-0.20.46-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (501.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dulwich-0.20.46-cp38-cp38-macosx_10_15_x86_64.whl (458.4 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

dulwich-0.20.46-cp37-cp37m-win_amd64.whl (470.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

dulwich-0.20.46-cp37-cp37m-win32.whl (468.4 kB view details)

Uploaded CPython 3.7m Windows x86

dulwich-0.20.46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.9 kB view details)

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

dulwich-0.20.46-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (498.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

dulwich-0.20.46-cp37-cp37m-macosx_10_15_x86_64.whl (458.3 kB view details)

Uploaded CPython 3.7m macOS 10.15+ x86-64

dulwich-0.20.46-cp36-cp36m-win_amd64.whl (470.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

dulwich-0.20.46-cp36-cp36m-win32.whl (468.4 kB view details)

Uploaded CPython 3.6m Windows x86

dulwich-0.20.46-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (495.9 kB view details)

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

dulwich-0.20.46-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (498.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

dulwich-0.20.46-cp36-cp36m-macosx_10_14_x86_64.whl (458.0 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: dulwich-0.20.46.tar.gz
  • Upload date:
  • Size: 426.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for dulwich-0.20.46.tar.gz
Algorithm Hash digest
SHA256 4f0e88ffff5db1523d93d92f1525fe5fa161318ffbaad502c1b9b3be7a067172
MD5 5268f6eb7bda8487ce4ac3465d373561
BLAKE2b-256 4c6185f17dd9e744e027d23bee2bbafc8438fab26c175a089b1a06b664deae21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1162fdafb2abdfe66649617061f3853cb26384fade1f6884f6fe6e9c570a7552
MD5 59b25c1923adae3501ccae5bf6979995
BLAKE2b-256 cfd682f591f3b2d8081ef80a75bdb8665e26c9b16a48d058f140385af830fdb8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b1339bca70764eb8e780d80c72e7c1cb4651201dc9e43ec5d616bf51eb3bb3a6
MD5 a403588b22f1efda300a388cc3a29963
BLAKE2b-256 80dcc0ed6c17c0a8521ffd30921a1bff193ecc4c54c58b2f0412753c6e54888d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5b68bd815cd2769c75e5a78708eb0440612df19b370a977aa9e01a056baa9ed
MD5 2ec55d7d5e613f6fa67c1ad88f019dbc
BLAKE2b-256 15b6e8a351098a55f6067d8be155d3fd221dcd57a0b5a4dac3909f6f2e066e19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 153c7512587384a290c60fef330f1ab397a59559e19e8b02a0169ff21b4c69fb
MD5 7f648ca7dbcb46ef97c439a10116e321
BLAKE2b-256 cfc2c6828d4fabc386f6f29f4dbd603cb0fed637f4136aa39e0d24ae3527c344

See more details on using hashes here.

File details

Details for the file dulwich-0.20.46-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.46-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3e16376031466848e44aabf3489fafb054482143744b21167dbd168731041c74
MD5 d9d48d1e76ad0c4f5fdbfde371910f38
BLAKE2b-256 93343dccaef7576c8744c3e82bd8d6858e21418c77c8cb593dd66f892e1ca35d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 42fa5a68908556eb6c40f231a67caf6a4660588aad707a9d6b334fa1d8f04bf7
MD5 e00f7a8e0ccbdf8b5aa683422c0d09fb
BLAKE2b-256 7ed07572bb855e8d3db97f2140c002acedb830386b25a24aba734ff8682e0902

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 de22a54f68c6c4e97f9b924abd46da4618536d7934b9849066be9fc5cd31205d
MD5 f6d58c8484cd9f4dee8320412aca5de4
BLAKE2b-256 69a28c1b96f0bd2ebe20cb44d07905d12fe2c22b7480a5cb573defbf5aea58d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 769442c9657b10fc35ac625beeaf440540c9288c96fcfaba3e58adf745c5cafd
MD5 f8342b12e344ce55f6c509534a225f9e
BLAKE2b-256 9b924cac485e83bd4d49d3802d7d3b7e8096d48614b5975452ec6a2e43da3d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a1ca555a3eafe7388d6cb81bb08f34608a1592500f0bd4c26734c91d208a546
MD5 d4580f29139a28aec57f6cd070f1c82d
BLAKE2b-256 c36409a71a454e90798f38ebbcc2ff384beebe324ec05fd472c659f083200b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6676196e9cf377cde62aa2f5d741e93207437343e0c62368bd0d784c322a3c49
MD5 1059d96b2f299719f6118e2755681ea5
BLAKE2b-256 091d82891bf79500e2c083142fee19f07620f7a274a1a407c0082ded0aca8d65

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 73e2585a9fcf1f8cdad8597a0c384c0b365b2e8346463130c96d9ea1478587ae
MD5 316624e80fc97b4d7e85900d51c7d23e
BLAKE2b-256 869b5f595595aff6349a2aa23ab8ad383726cf27fcf54f0f0303b30398ba8304

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 525115c4d1fbf60a5fe98f340b4ca597ba47b2c75d9c5ec750dd0e9115ef8ec6
MD5 b257270380953e09e72eb718f437d993
BLAKE2b-256 1b90fb8ff8fbeb6dd0eec0f745350d4b512f9d2b0e8eecdd209f6ffcd453ea8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fc7a4f633f5468453d5dd84a753cd99d4433f0397437229a0a8b10347935591
MD5 b41d960ba78a64129fcfa8a0d062c7ee
BLAKE2b-256 fbd5e5ebef9be8ccd1d64d35096cdbd24f013625b45f20aded594554a984c59a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b739d759c10e2af7c964dcc97fd4e5dc49e8567d080eed8906fc422c79b7fdcf
MD5 3f7fa3aec6b363cde0bf324f18f4bf39
BLAKE2b-256 5e08812185e3898ebf84eaf793245c99ca62f5f85cb89573b033d0b6bea62f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a5d1b7a3a7d84a5dedbb90092e00097357106b9642ac08a96c2ae89ccd8afd9a
MD5 0eeb4fead88637a7d58090fe2ed74875
BLAKE2b-256 1a092e8f9cf5712779a33e48a69e006ededd460b59075315b2ea4c0b4d2bab4c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d928de1eba0326a2a8a52ed94c9bf7c315ff4db606a1aa3ae688d39574f93267
MD5 e511aa2fc09ae3379b2529dfd8835831
BLAKE2b-256 b6fa4494936372abf8badc10fe3dbbdcb99f19c663e15ade57b1fd5a5c64d4c9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 92024f572d32680e021219f77015c8b443c38022e502b7f51ad7cf51a6285a36
MD5 7759706fe894d0cc3ae8b9c20031f50c
BLAKE2b-256 683195f6bac1b95f18d770e61ebafc06536041debb367bc6ca306c4f099c17f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd3eac228117487a959ac8f49ea2787eac34acc69999fe7adae70b23e3c3571c
MD5 45cab9065c1187ae24ce64a963e0fe05
BLAKE2b-256 4e3d41045a2f23dd3538f7bf5c65d3fe40e7f3f6e2d80dd0f453c235259d4f47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 669c6b3d82996518a7fec4604771bd285e23f0860f41f565fef5987265d431d9
MD5 b98f6fbe27fd7887a332207a95fe2b18
BLAKE2b-256 1029d76221141eec5e2ef20899397175a8b1727a73b2490d3174323804ccd338

See more details on using hashes here.

File details

Details for the file dulwich-0.20.46-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.46-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d6fee82cedb2362942d9ef94061901f7e07d7d8674e4c7b6fceeef7822ae275
MD5 87d4207bc103b2935104349dd7b8ed2b
BLAKE2b-256 ce27611952ffd4ead7262a3616af6907e8d9ec3db6908cb629521334db3286bd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 90a075aeb0fdbad7e18b9db3af161e3d635e2b7697b7a4b467e6844a13b0b210
MD5 d87e72b3e2f827e63c1b484b46358ef9
BLAKE2b-256 636e3d7a6e9ee6ee3b2ff9a3325ed86386ef962af003c7bd71ba0128e4239dd1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f9552ac246bceab1c5cdd1ec3cfe9446fe76b9853eaf59d3244df03eb27fd3fe
MD5 bf569ca7007e36de62148983c467baaa
BLAKE2b-256 bed4fe294a6ba0bc26f311d2d2e0befab512647e673f1f9b2cb4e325190e1bd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4b7a7feb966a4669c254b18385fe0b3c639f3b1f5ddef0d9e083364cc762847
MD5 a217140d54e7d8e085713b1bd276fa1c
BLAKE2b-256 b42877f32703ec2834450ae247f0c13c7a6f3dee0134ed40797a1a927bb26fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d38be7d3a78d608ecab3348f7920d6b9002e7972dd245206dc8075cfdb91621d
MD5 32d69e1ae3ad6db72cd61adbcfa9aa6a
BLAKE2b-256 e9e08d6182ea93f18362678fe459c8580c64b29c85e0afb078d3d5331995bf0c

See more details on using hashes here.

File details

Details for the file dulwich-0.20.46-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.46-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b9f49de83911eed7adbe83136229837ef9d102e42dbe6aacb1a18be45c997ace
MD5 4db1848c2f6fe3c2d814f04534c236a8
BLAKE2b-256 305874e199130874ce313f509f59f395c41a5c31df0e3c79e44d8c0ea18db6eb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9ca4d73987f5b0e2e843497876f9bb39a47384a2e50597a85542285f5c890293
MD5 9bf28cd602debb601b702b9f395db226
BLAKE2b-256 988f382eb7075ce2ecdec669d417786c0d087a3a7fd6b20fc6fc255b262b40f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.20.46-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6eed5a3194d64112605fc0f638f4fa91771495e8674fa3e6d6b33bf150d297d5
MD5 8332259d1b61a043727c560d66e98648
BLAKE2b-256 5658d54293e60cf9fc5bf2c6a81dc0df152b0d108199d1ff4ed0fa6ab8ae563f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4cd2cd7baa81246bdc8c5272d4e9224e2255da7a0618a220aab5e07b9888e9b
MD5 812f0eccff8c9b183033fa3e22289f52
BLAKE2b-256 af9fb5af1619638cd5caf0279b1330e8942c011bcfb1ad675fb118cce1727f31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 100d39bc18196a07c521fd5f60f78f397493303daa0b8690216864bbc621cd5d
MD5 b0464487173656bf81577e0cc9afda21
BLAKE2b-256 2fc1a8a0fd7d145716b3a29c5c5577ff80e3615c8dfedbd5c3b9102ca1257929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.46-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6826512f778eaa47e2e8c0a46cdc555958f9f5286771490b8642b4b508ea5d25
MD5 77f226dddaa4504284d68d626bc1f527
BLAKE2b-256 d99e811b20c7fb80b2232832f145aae891e83246a5806fcdec1e1a5b0df52e20

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