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 Freenode, and dulwich-announce and dulwich-discuss mailing lists.

Contributing

For a full list of contributors, see the git logs or AUTHORS.

If you’d like to contribute to Dulwich, see the CONTRIBUTING file and list of open issues.

Supported versions of Python

At the moment, Dulwich supports (and is tested on) CPython 3.5 and later and Pypy.

The latest release series to support Python 2.x was the 0.19 series. See the 0.19 branch in the Dulwich git repository.

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

Uploaded Source

Built Distributions

dulwich-0.20.21-cp39-cp39-win_amd64.whl (472.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.20.21-cp39-cp39-manylinux2014_aarch64.whl (515.2 kB view details)

Uploaded CPython 3.9

dulwich-0.20.21-cp39-cp39-manylinux2010_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

dulwich-0.20.21-cp39-cp39-manylinux1_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.9

dulwich-0.20.21-cp39-cp39-macosx_10_14_x86_64.whl (460.2 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

dulwich-0.20.21-cp38-cp38-win_amd64.whl (472.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

dulwich-0.20.21-cp38-cp38-manylinux2014_aarch64.whl (517.0 kB view details)

Uploaded CPython 3.8

dulwich-0.20.21-cp38-cp38-manylinux2010_x86_64.whl (516.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

dulwich-0.20.21-cp38-cp38-manylinux1_x86_64.whl (516.1 kB view details)

Uploaded CPython 3.8

dulwich-0.20.21-cp38-cp38-macosx_10_14_x86_64.whl (460.2 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

dulwich-0.20.21-cp37-cp37m-win_amd64.whl (472.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

dulwich-0.20.21-cp37-cp37m-manylinux2014_aarch64.whl (516.2 kB view details)

Uploaded CPython 3.7m

dulwich-0.20.21-cp37-cp37m-manylinux2010_x86_64.whl (515.1 kB view details)

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

dulwich-0.20.21-cp37-cp37m-manylinux1_x86_64.whl (515.1 kB view details)

Uploaded CPython 3.7m

dulwich-0.20.21-cp37-cp37m-macosx_10_14_x86_64.whl (460.1 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

dulwich-0.20.21-cp36-cp36m-win_amd64.whl (472.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

dulwich-0.20.21-cp36-cp36m-manylinux2014_aarch64.whl (513.4 kB view details)

Uploaded CPython 3.6m

dulwich-0.20.21-cp36-cp36m-manylinux2010_x86_64.whl (512.2 kB view details)

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

dulwich-0.20.21-cp36-cp36m-manylinux1_x86_64.whl (512.2 kB view details)

Uploaded CPython 3.6m

dulwich-0.20.21-cp36-cp36m-macosx_10_14_x86_64.whl (460.1 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: dulwich-0.20.21.tar.gz
  • Upload date:
  • Size: 399.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.4.2 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21.tar.gz
Algorithm Hash digest
SHA256 ac764c9a9b80fa61afe3404d5270c5060aa57f7f087b11a95395d3b76f3b71fd
MD5 969d8445be4f3b4c4881f36ff03ce591
BLAKE2b-256 3102791c17b92e6d04c43f9b318c95a3f3c3e1ea718aa72ad95b9dac147895fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.21-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 472.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1cfba9ccccd9e513afeb0bedca2de34ab674814764102eb430c75a86fba37aaa
MD5 0944b7ec8ebcc36f8b94c2647641888c
BLAKE2b-256 b752d9dfe3c45b95c8118ba9e1eac9db9fbde72c0976a3d022cf0edce6e57f5e

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 515.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18f52e801921665986c51ddd2efe62d961efb97bdcfaf844a5b636997c0777ae
MD5 1ad1971ea0d864127be2546b849b64a9
BLAKE2b-256 413f3c840c9cc938240c6f74f75c1e1de92521eb8371f9490ea8353d953f9c95

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 514.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 71511bc5038efa27614e9112acbda49d26aaec58300166c6979e220257282069
MD5 309f4fffb421e45cb85b9eb8dc95d4a3
BLAKE2b-256 48a951063f9cd9400ee95b782992a5d802e3aa9300c9339e1c4a2e5db5098027

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 514.3 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 91f69ce2ed5ca99441339bb41338692b9b48ee67fd9c82b1837a5c0ce1c04f96
MD5 73f18d9213d088096ede0f9a3cd10be9
BLAKE2b-256 4ad7c94d4c8e9b0d205da903e82a27edb552bcf3f7e8e0b3f2d63533e73ac96e

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 460.2 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8fdcf2e796a978e62753eab13c919abf57337e1c464b9d518d3a30572bbbe8ee
MD5 13340f67eec89ce8b6c19841bda06c52
BLAKE2b-256 422e50e5526f1b8bbf816fe7cb614df14a59fd7f3e64e5bb1c70570ce3c39e79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.21-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 472.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for dulwich-0.20.21-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2fca59c6a0b119942be9796cdb706bd1f7e9509924c63166d437afedc6950ece
MD5 7dd67b4570edcc94d8cb817b9aa9b99e
BLAKE2b-256 2e1b7a02f1422f5931962ff87a28e9026e8d7245b9f096b89dbcd43edd3f910d

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 517.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a748afb97fb0a0cd93bb5c10a4c41ca0c080f1d9473e30e1db045004a1aa585
MD5 61edc01da498cf0a5c4523226023d5b9
BLAKE2b-256 5837e5244f6dbc3286deb749f0316a0f9af89559e3d1a0e8a781671a882f97bd

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 516.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4331ea9d27e8b722c178fa603760c9ba904336b41b513e092ad94c79e99c995a
MD5 699e47f726718ae43efb0132b3a9dc82
BLAKE2b-256 76277b2edc85822c7de0685d6b073cf500182e3138a0442c7a25b4b587cb76b0

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 516.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e14fae058964846d1c4e51b4a56a709075edd308ea7bd946d65dee91b1f323c9
MD5 0c21f2227a77b51444a059e2139ce7a1
BLAKE2b-256 dba6021993cd26c5f595ccc1c7e4c960a7c143b1680b871f05849207f32f77b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.21-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 460.2 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for dulwich-0.20.21-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 be6a954cec473dccc23086d8c5be668ccaedd90c5c7b3939c0fab4fdd8f124cd
MD5 2792cb0402769663c979be383282194d
BLAKE2b-256 dffdc8d3c7aa870c7a62f6c2a3165fc872f4be4ca92301caa0b8c13d0a9f3bf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.21-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 472.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9

File hashes

Hashes for dulwich-0.20.21-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 aef6be3233b1100394b8b94a94277a8292042ab4f9ec2a0d62fa68a41edb1535
MD5 eada870ebf5ce3c3338be0fd6f420afd
BLAKE2b-256 33c502ba086ff40e552e3f2ddf8cd59cbb919d0ca3dd164f8fa7c9db4241589f

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 516.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c287ad8978b698038cdd071bbd68e838bdba935b1d7d011c1f8cc00b8edca13
MD5 21a3aabc84572c6154ee47d546b43fd4
BLAKE2b-256 c0c48c72b7c2b4933a6ff12bf76055c37993a5021a8fefc195b48a63d509154c

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 515.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 45dd6a82416f076b639449bbee84b39b32b5eab7b90540badf4d8b2b0ecee84f
MD5 db9da2da5eee151b46018976bcce3243
BLAKE2b-256 a71692ac656a883902da8636efe1c09f2e46af4d1589aa2c0728a5a4c715aae0

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 515.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7f96647fda9a7b0cf0ab905e14403012cfaff9d459f1e57fafc92ed4870f1c65
MD5 b4d7fdb69020a2f60d932ce15bb00f08
BLAKE2b-256 9c9901627bd33fce0dd617a18c3f92da7d2d796966b2b750bd73d03e6871e166

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.21-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 460.1 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for dulwich-0.20.21-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 df49c6b761d222ca56d5c971736ce88a74485c75674a5d0de8b9b4a3c1869174
MD5 749b795f7b2eb2fa7d063340ce3e48da
BLAKE2b-256 794169e9fa71f028e0e5604ccfd0ddb0f58a6742f2a4cc02f1281509900cf964

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.21-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 472.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.8

File hashes

Hashes for dulwich-0.20.21-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e52520fc5e4381f3de5f06f7f6d21bd5cb0029523b4b61b97e40538a1152d49a
MD5 a05af30bc6630d989fb9d17be29669d9
BLAKE2b-256 73853263c318a4d7636eff43c7c6bf74d5cf40c31eabd36670117f313a4b4c4c

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 513.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be63dc78424f6af8bb27cb62bbf06f6d1d54feb06a432c642e1af6dc90d1a9e9
MD5 4f1c859964a26eb891a22e666b6db9f7
BLAKE2b-256 bbbe334260fdc6cca25743dc944705858b277a757d38cb3122621b75f183f657

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 512.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b8c24d3874a5162343aaaad5fe29dd3cbe1870b670ca639ed825ca14859d56e4
MD5 41421b1dcfcccdbf5df974737c1c97d5
BLAKE2b-256 6f6e1b4022e747d1c5c8912292165e9ea10185cfbc4a4ca71894df77e5c0fe0d

See more details on using hashes here.

File details

Details for the file dulwich-0.20.21-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.21-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 512.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for dulwich-0.20.21-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b34a20eab578f36408ccfcd83c470f08cdc548081a87fbfa0bc869927eccb411
MD5 18b0e11ccc50b1115ccd704a06c83943
BLAKE2b-256 052664ee74f1419a6830b2b35f54358dc78a0bd0d44d9eddb54377812bd3522f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.21-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 460.1 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.13

File hashes

Hashes for dulwich-0.20.21-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 81bc2bbdc6dcd6f7c7dc43e6875914e4816f0c798bb9f89b6934e610ad30746c
MD5 3693fa642bb1f78d8c6a622bd3604142
BLAKE2b-256 a7627a8c93c68154ac1b18d888f2f66d10c08fab7b0eaa577d0c8965d5b65bd3

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