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 Rust bindings, specify the –pure argument to setup.py:

$ python setup.py --pure install

or if you are installing from pip:

$ pip install --no-binary dulwich dulwich --config-settings "--build-option=--pure"

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

dulwich --config-settings "--build-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.22.0.tar.gz (390.2 kB view details)

Uploaded Source

Built Distributions

dulwich-0.22.0-pp310-pypy310_pp73-win_amd64.whl (603.5 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.22.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (981.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.22.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (884.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.22.0-pp39-pypy39_pp73-win_amd64.whl (604.7 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.22.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (983.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.22.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (886.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.22.0-pp38-pypy38_pp73-win_amd64.whl (604.8 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.22.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (983.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.22.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (886.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.22.0-pp37-pypy37_pp73-win_amd64.whl (609.7 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.22.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.22.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (892.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.22.0-cp312-cp312-win_amd64.whl (601.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

dulwich-0.22.0-cp312-cp312-win32.whl (592.1 kB view details)

Uploaded CPython 3.12 Windows x86

dulwich-0.22.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (978.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

dulwich-0.22.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-cp312-cp312-macosx_10_9_x86_64.whl (881.4 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

dulwich-0.22.0-cp311-cp311-win_amd64.whl (600.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

dulwich-0.22.0-cp311-cp311-win32.whl (591.2 kB view details)

Uploaded CPython 3.11 Windows x86

dulwich-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (978.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dulwich-0.22.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl (882.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

dulwich-0.22.0-cp310-cp310-win_amd64.whl (600.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.22.0-cp310-cp310-win32.whl (591.4 kB view details)

Uploaded CPython 3.10 Windows x86

dulwich-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (979.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dulwich-0.22.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl (881.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

dulwich-0.22.0-cp39-cp39-win_amd64.whl (601.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.22.0-cp39-cp39-win32.whl (593.0 kB view details)

Uploaded CPython 3.9 Windows x86

dulwich-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (981.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dulwich-0.22.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl (883.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

dulwich-0.22.0-cp38-cp38-win_amd64.whl (600.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

dulwich-0.22.0-cp38-cp38-win32.whl (592.1 kB view details)

Uploaded CPython 3.8 Windows x86

dulwich-0.22.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (980.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dulwich-0.22.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-cp38-cp38-macosx_10_9_x86_64.whl (883.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

dulwich-0.22.0-cp37-cp37m-win_amd64.whl (600.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

dulwich-0.22.0-cp37-cp37m-win32.whl (591.7 kB view details)

Uploaded CPython 3.7m Windows x86

dulwich-0.22.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (980.2 kB view details)

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

dulwich-0.22.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

dulwich-0.22.0-cp37-cp37m-macosx_10_9_x86_64.whl (883.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dulwich-0.22.0.tar.gz
  • Upload date:
  • Size: 390.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0.tar.gz
Algorithm Hash digest
SHA256 e19789842ef6b9d3174db03c3300d9fe63d871f217ac0a8f6ded7b086898907d
MD5 a16dbd79733cd7ca5ed4df23875d90dd
BLAKE2b-256 760f84d09c282c04a6ee7d0a3e0c8fe72ec1eba3129b1a30e82aea18ebdbbd2e

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bb8435daa04abcb35b5fb17cf7dc1ec0122edee42cc22cb755c0cc37f87db60e
MD5 2d9a93153b41c90985d225cc49fb4fb7
BLAKE2b-256 152019995cdb0a2c234001d2cf5dd996b40fca9a274f03e621ac6569423fdbc3

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a330481a8d5c482ad7664c80e776a325c1fefcd488ec070280b2310717a46529
MD5 0c53d2be1d75ba6b66331a0afa9d7eed
BLAKE2b-256 e7984d653c063014a9238177d941b527a5a0653b7317cecca6cb76e6d6356766

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8529692408990f84b5db1cfe672ad1a1eaaf8041083025777f1c7bdae61844fe
MD5 56221d949acc59946b68645b738f472f
BLAKE2b-256 052ae50a71fbba5923be4c964cce1c214a1d1c13254f97b2a0bd84ec12ba21d5

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 841e437c18bce591f65908beab0fef38794a18dccc68dc707734f3db4e4e79df
MD5 84217acf3be2147c2247a1fef91e3cbd
BLAKE2b-256 51a108e083bb495ba5103f595075b58059c13826d5e70868485396540f6172ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ee22db17f9702c1ce6b2f2a33f5906e520a4b3687045e86d9f6e8320ed4c8b64
MD5 46170a59d1c8581d4de6db67a6748657
BLAKE2b-256 9641a7e5b6c4e072e80751be15f539a042d5d79e1d8ae99cbac4898a19082126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aea38fa27fb67b23f7489d05c4d939ead5a7c032d560725ba32a30758bbaf18b
MD5 e701f231b561dc56fc3936bc15fb38e8
BLAKE2b-256 bf24746d85081884b3724c5e6cff8938f38b7dbfe99f17a38a19f9cfdcaeea6c

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3aa31171b07fcd5fc8552f95d2fb6edf05fddb586531e0a6a2100d8f28a54d69
MD5 c639d1712f72bf57cd30b918379447c3
BLAKE2b-256 6ca2bcb5607ca892ef0737d6d9724535dd94765bcc2f042ca33779edc22d5356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25db5beb5297f2f52d00b91d0426c5d3c2d371c31c19bdf87f56d10864a357ab
MD5 7ee755df234d6bfa7344982c246332d0
BLAKE2b-256 6bd5f927ac60cf5474f0019e2f57d64641b8efe11370ad3667d34bfa90ba6b75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 13a931f2a62a6378129855db818593ce66b6926ae34601c46482310caf946ea3
MD5 deff6c6ac2d59c06aee4129af62cdcef
BLAKE2b-256 b4173525592d656bc333d9dac6d7ccf884ef4cbf09bf223b72ec8e517c847119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47372f71f14d2fdfff1588811b6bda14a3dd3c0e1b27b157dce1a33bcaf3af40
MD5 beadb18ede1accb6edd81d3081a44b1f
BLAKE2b-256 b53d21eef8e73059e4a8afabb02a5dba3d358605cfea0622b533aaaa792373fd

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f2acffb858d86ee552fdc2e6ce559b9fd8a1b08491eaddd895d6a7f7338345e
MD5 d5c6445f9facf1b1ea6933f28b9e7e42
BLAKE2b-256 5bbcf46580d69ac97eff840be6df2330b02581b7259fca50bece2575065932ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 697cb0fb697ae80a197aa9cfc20a8ef3620d969d98b6b374bfcf81d2701e63a6
MD5 f46a38e36aa009812c3c62cb3ecc6a43
BLAKE2b-256 9f1e53453c9aec9a73b21922060b97a0748f45542763ab151d54984393d9d555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6daf7859625106cd1f04b52fb413decff4632ce485d0f248161dbafb505aadea
MD5 f26b29bdb5327434c7b5fbe5fbb6a77a
BLAKE2b-256 656eb260dba480003e4111c12b54b2d7efb3a95f664075cac30c024f9ffb2d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef303736705cb2e708f064c999d0cc3974a2f18897f62404838bc17e686df602
MD5 82115eba3b1368b1655ca905c541d1e9
BLAKE2b-256 47567d805d8438aae58adb04223c00f82535dd63f92da165d03783b9c9a8a3b2

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc341f4c062e2c22b6d3e13864dd7aec131b3368f9a2285d1bf058ae0631dead
MD5 0ef4ad88d8c1d7e7979082a246dd3a7c
BLAKE2b-256 6c9cd0eb60b0b18415738be02e33cb7fae9c002de52b25be0d3d0091cddf7985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13c2333431dd614b550e8f49c2d396a0d934d0d2c72991d924601c2d00e7248c
MD5 a81f70243dd48850f4accf91ca52abdd
BLAKE2b-256 54afac6c6a148590eb04e29a812bd009979fe35c3a3c1c9dbeadaa85c8094888

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dulwich-0.22.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 601.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c72b5bda5137fc1f12c9dedd07a0deac3afc34fce12db841be5f6e7df51b0b29
MD5 1224c2a8d203801b7e159794454dbfdf
BLAKE2b-256 93b99506b058191d18f716f940f7f84f7d6b548ab550bd8e078004fe54492307

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: dulwich-0.22.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 592.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 501eca5a66c70f79616e011265b54b8e7314452afbfaeddeada5280c1ee411ed
MD5 356d6088e239e46dd973b3bf2fd58c49
BLAKE2b-256 fe30fc0ecbfd0b449feb15da1a4306ac3858243cd843acda2eda592cf68c1b55

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cd7ed65edd46230a829090d80bef3da1f2321e9210502ac6488bc97ff6f7dca
MD5 f8388e185b13dc141114d82f0b479576
BLAKE2b-256 bb5c8801009a405ce637cfd12a12a5dc8d81c5af853aff0ca5a2258493fb036f

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06eb7023e79e230df6e6c05e87cf13dd01818fcc3094d5afa4e58f0b86cb13df
MD5 be1a094310937740088a8c8c3bb5137b
BLAKE2b-256 6c124976de99b1cf78211fc83f959742639cf353eb7bc82f6dc21ac3f3417e67

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e7ba2a481c72cf96957507551d9278b848571f7e92f3b389f2dd3e016488e2f
MD5 ad7d2ae7cf5f26046c0a46991e99836e
BLAKE2b-256 f7ee5c8b4252e335e49a8191cf59164bc7876f4b68620b9211a9912cbec318e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.22.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 600.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4307c59c4a1cac97dc80c3e08990fac3bd8e6a02b995ea6ef5e85fda62f0ff4
MD5 f741d0a87e7b259bb2f04d9c85087b55
BLAKE2b-256 8c9320881300d53ad6d718577aaac883d4510e220f51740bca26c7bba24646a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.22.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 591.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cc4731003902f6d6aa31fb290d54a88d0e41a9d2cceadaf5d64fcacc6ecc0fe7
MD5 d50176888eaf96d121908250e543b8b7
BLAKE2b-256 a8bd750d47f00c336a30ed628e4b177357ea9eb4409c37411b7863df5fe175c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89788a0e7dc2329e5c06b26bd3922a582ab2431f477812a65876838729fa4ca7
MD5 d6c6cde9128b0628f20bed8ac18c3ea0
BLAKE2b-256 49d55ad5a1140ad9fda45c3cac49b153c73fa79b25148f7c80f136a85d297365

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23592b312cce633ffc22ecd6748686c6b3cda1e7af747f44ef58fff82522fbd4
MD5 37b6ecb0f288845da9a45a8b1831c86c
BLAKE2b-256 654e9c0c7cd4d74fadc7ddaf0faf0ce273d8b62eb7b7612967be6b6e095d657a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59c5d1d47ee4315e18fa5066eee56cef88f88a2ce53c795acdbde5a1cec046d9
MD5 3326eaeb5736df62d9b6d42a61cd4424
BLAKE2b-256 0cdf53fb851ac6be87cda794272204e80fa688c54e6139b5a25aec628c8752fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.22.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 600.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03599f6f8c917a97b407966cf9490dd2462503af9bc846fddee020937b94e598
MD5 e03ef0218769adcf7f2acd07a9d2ef7a
BLAKE2b-256 78c885c9427fdfeef1fa3e4f24ccc4bada56dabc70b53432be66a9e78d08e89d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.22.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 591.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 10d618fe815494594ef273af1d04f7f22fb1005822870bfdbe16c29669523e0f
MD5 88ae3e4fb3d68207dd61df52af359104
BLAKE2b-256 ab5be2beb62c3279f5ec8a67e08d21eecbda0cb331603b2901da65911731bbbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef104e284f7d22e34555c4f7338a1b56a9fd035803293b1ce552b9f30491da47
MD5 3f246edfc179565a0a8ebb816c959b85
BLAKE2b-256 905ae5c91f8da21816a1c5cd17bdb17a6e5968f0f38cb6933741d8507a37c594

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 87beaf5b5df6495a6e9869091fa454aefadf6ee355c579daf87e3856fdd5fbb3
MD5 a77c40a640dc8bad13ea9e2326017325
BLAKE2b-256 ccc1d237a7617b08e98fe2ed5aaaf276437aa6adab4afdeebdfbaf7510dc6e0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b64c69c03eb3d023ad4729f01469d92ea1f84800583664af6135fb0cca571f4
MD5 f541634b1f5e2ceabd0886aa975fa947
BLAKE2b-256 49dce7a6bc21018421e29196d156574436b0a27e14de49d0bb5c0b96ed2c623e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.22.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 601.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 94f2fa8bee24413a42de80311274eccd7ff4b9f9ee5f963626ecc032b0ff0153
MD5 4217c134631298f699d78c1bb941c4ad
BLAKE2b-256 eb9c7452f7f87da01d54f8996e1e0853e8ebc58ba3e05bfb927fb49cef499ece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.22.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 593.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3901a2d30b97aef0723454de3f49ed6b3b218e0e3d0768c6ac787301140836d2
MD5 09a3ffe8d0fc5f644641eabd2ee584d5
BLAKE2b-256 1d1299377bcecd0ded6b418c132c970d8275488d23e55ad60215f3f408407bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f2bde1d5ff815ccf7451b95620b3e87c0a711e0f1eb00c459cb04fa65d972dd
MD5 b9dbd8738cdbec6793eb048d9d3b7eef
BLAKE2b-256 a28cb1a352711334881964309defc5006569213326f1a8ebbf4aa4f059cc10e3

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cfc6593706a94f8a1e17039082ba197bcedf1a9447b875a107b50149c2ff51e8
MD5 f566ccd12f3aefdf98d33c955b946d43
BLAKE2b-256 48f61251c68e9bd116161722e745428b120804ac55fe065574971e82019e6426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 536123949d045d705080734a0d80ee50be89c6d0081b8f55fdfd3f0cc9552f2b
MD5 dd492234b555a444b3848fb02643c1f3
BLAKE2b-256 df6c6b4f43805241f53a742bcf2f6043d55d4fa7f1a6544d0dc1dab3fe7e3125

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.22.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 600.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e143333ad988daef62e2a8ebe0d264e4f8c4fd6dbab1bad0143de0454dad5771
MD5 bb62c3b3745c7aae9e97f8a454506d7e
BLAKE2b-256 a44ab5b1c9eeecf4105f259cacf48c0156f9b1f62221bde711176819700346e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.22.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 592.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9d0337dc52bd6a632f41d857ac47cb848ede848f664a5dfe2821eca637b39edf
MD5 30a14acef47bfab38de86fa4dc6676dd
BLAKE2b-256 d4d9fb3091d7fadb9d6ab57ee5463413d095f42ca94d922a7b0f3641f0742df2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f1576bc1db130db8c1a7b56c13be395de91da0a2a8cea843606587f3f30d9fe
MD5 db99935a13a2f17025a136eeb7121eff
BLAKE2b-256 6b73d90ee95a55bed8fea25fba3081b319e72f9bc0847cca8501df64ae58778c

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df0e1d3d248c946df8092df97463716fa63c9a35d513756ae64e1ad423834f30
MD5 a5cfcc3c43349d3ef98e05aeaed921a7
BLAKE2b-256 ea02d278ec45e5729d0d13818c4a9240f5f4731f600321ece733dbcccea363b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a9ff0c3896858f2c93af023dd2505858ea1b826d0cd62295f2de3690e8ddd9b
MD5 86da4018500f286c4fba30d595446e29
BLAKE2b-256 9d64a80e837bdc2f746a801b8a4b56c3ed0e9b1c5352198625e3d0c9dfbc16cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.22.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b11a787724054187323e568eeee833fe222e493eba039a7905b4ec7fe5553199
MD5 f1d0f679f45e99df4bb38d200fdc00c6
BLAKE2b-256 be8417699e2626a42cdd2165793010f1de61e185dd649073dae401a2275fa91b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.22.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 591.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.9

File hashes

Hashes for dulwich-0.22.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1c4ed67def7f539e2da908d43591d82aa7bc8bf48e06f6b1110d7cfc44c45e76
MD5 25b2857335f42867a34e97ff6256f5c8
BLAKE2b-256 d4d285ec3c8e449336de5116391e35e663b43c357889aa58f792b4a506015584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4e6a6139db6293618c766165f673cc882fe607296127ff5377ac368183cbcdc
MD5 e7da50959040642ea006ae6d2217a969
BLAKE2b-256 96e6895e1fb5411ad428cd84fc8631043fc6208c53c4c0079dbe9c667e355f3c

See more details on using hashes here.

File details

Details for the file dulwich-0.22.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for dulwich-0.22.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd505f0e030e4e553d68133a0a50ae8f692ed03bdae13d7e5bdedd88996414af
MD5 d406fd35a41350dbb3125f886d4d1812
BLAKE2b-256 c263190c793cc4e1b79eb38a230ee6db8918821ebdd948b8247a0e5fb9a7148f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.22.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89cea22ed6cfff4573f9ca73ebb0c4d8d4daba90e7eac39ae9f59e31049375fd
MD5 c026194ba8b943dea0763db29d4922f4
BLAKE2b-256 ef4a8e147000193cfa23a6dae89404d7fd14f4dec27630927ca7b8e8e2a744e3

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