Skip to main content

Python Git Library

Project description

This is the Dulwich project.

It aims to provide an interface to git repos (both local and remote) that doesn’t call out to git directly but instead uses pure Python.

Main website: <https://www.dulwich.io/>

License: Apache License, version 2 or GNU General Public License, version 2 or later.

The project is named after the part of London that Mr. and Mrs. Git live in in the particular Monty Python sketch.

Installation

By default, Dulwich’ setup.py will attempt to build and install the optional C extensions. The reason for this is that they significantly improve the performance since some low-level operations that are executed often are much slower in CPython.

If you don’t want to install the C bindings, specify the –pure argument to setup.py:

$ python setup.py --pure install

or if you are installing from pip:

$ pip install dulwich --global-option="--pure"

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

dulwich --global-option=--pure

Getting started

Dulwich comes with both a lower-level API and higher-level plumbing (“porcelain”).

For example, to use the lower level API to access the commit message of the last commit:

>>> from dulwich.repo import Repo
>>> r = Repo('.')
>>> r.head()
'57fbe010446356833a6ad1600059d80b1e731e15'
>>> c = r[r.head()]
>>> c
<Commit 015fc1267258458901a94d228e39f0a378370466>
>>> c.message
'Add note about encoding.\n'

And to print it using porcelain:

>>> from dulwich import porcelain
>>> porcelain.log('.', max_entries=1)
--------------------------------------------------
commit: 57fbe010446356833a6ad1600059d80b1e731e15
Author: Jelmer Vernooij <jelmer@jelmer.uk>
Date:   Sat Apr 29 2017 23:57:34 +0000

Add note about encoding.

Further documentation

The dulwich documentation can be found in docs/ and built by running make doc. It can also be found on the web.

Help

There is a #dulwich IRC channel on the OFTC, and dulwich-announce and dulwich-discuss mailing lists.

Contributing

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

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

Supported versions of Python

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

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dulwich-0.20.29.tar.gz (417.2 kB view details)

Uploaded Source

Built Distributions

dulwich-0.20.29-cp310-cp310-win_amd64.whl (490.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.20.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (533.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dulwich-0.20.29-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (547.2 kB view details)

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

dulwich-0.20.29-cp310-cp310-macosx_10_14_x86_64.whl (478.3 kB view details)

Uploaded CPython 3.10 macOS 10.14+ x86-64

dulwich-0.20.29-cp39-cp39-win_amd64.whl (490.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.20.29-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dulwich-0.20.29-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (546.7 kB view details)

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

dulwich-0.20.29-cp39-cp39-macosx_10_14_x86_64.whl (478.2 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

dulwich-0.20.29-cp38-cp38-win_amd64.whl (490.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

dulwich-0.20.29-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (535.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dulwich-0.20.29-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (548.5 kB view details)

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

dulwich-0.20.29-cp38-cp38-macosx_10_14_x86_64.whl (478.2 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

dulwich-0.20.29-cp37-cp37m-win_amd64.whl (490.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

dulwich-0.20.29-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

dulwich-0.20.29-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (547.5 kB view details)

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

dulwich-0.20.29-cp37-cp37m-macosx_10_14_x86_64.whl (478.1 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

dulwich-0.20.29-cp36-cp36m-win_amd64.whl (490.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

dulwich-0.20.29-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

dulwich-0.20.29-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (544.6 kB view details)

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

dulwich-0.20.29-cp36-cp36m-macosx_10_14_x86_64.whl (478.1 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: dulwich-0.20.29.tar.gz
  • Upload date:
  • Size: 417.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.6.4 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.9.9

File hashes

Hashes for dulwich-0.20.29.tar.gz
Algorithm Hash digest
SHA256 25b445f016143506a2291ccd427d06510a380b5fb92ebd194ffaf2e1862e3e07
MD5 9e53b5aba106bff3beac8144516ed0cb
BLAKE2b-256 d2e88ee4962ecda308880833a1b76b387cc950967a74f4f63bf9ab9de79fbfe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.29-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 490.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for dulwich-0.20.29-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 769555d3b7a6455f954b5fb7dc06e42b6f518374fec66aeb3e55eddabd61bb38
MD5 5a6973f08795ebc04c2e1d5e469880bd
BLAKE2b-256 ffa79d2cc9344f9af66a2e70e57fda6f86199c38ff1aac7bcdd1d8cf734a832a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 347861abcbc19a28d3d8c337c41fed58155b677716a4b35d13d2299f1cc2cd43
MD5 9560c6ab6079984f3243e528e7b1d5c2
BLAKE2b-256 1b460e17074cfd64b7a8a18be4d525378b25efa10aed53a1d774442c072482fe

See more details on using hashes here.

File details

Details for the file dulwich-0.20.29-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.29-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 53794e73ee0b7cb3e3b97b558729331d2ec097844720b0e3e5aab98cda48a4d8
MD5 aebba792e7582eed9fb20e8ad70fd0d8
BLAKE2b-256 0abfa1355eadfcc6cb618c966611d964eb69d4e1126cc5ed077c2b955e7d974e

See more details on using hashes here.

File details

Details for the file dulwich-0.20.29-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: dulwich-0.20.29-cp310-cp310-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 478.3 kB
  • Tags: CPython 3.10, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0

File hashes

Hashes for dulwich-0.20.29-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2f08e463b41ba18947bc875963d8a9e7b36b79a251556e4528762977c5f9b96b
MD5 2de64e57abd3951c8ac8a8be5a7da514
BLAKE2b-256 6b6038df52b7dd90a1f61a5212ae0b0fde2090ee005a51043ca24e9601bf51b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.29-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 490.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for dulwich-0.20.29-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cf175625e31341962f7add5f6d0715b6b1a9ae3f7b7b1dc840d8337b5e7be74f
MD5 3245b4f3a5ad62afe20f32f4c6a0478e
BLAKE2b-256 ac574a6f159008781cfa51eac01d34d40499d14017d18ad51e61d9e674239f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.29-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bdcedff7429e8e5e339ef747ae779369489fd91fbc14339a8558c82a9f4b941
MD5 60654ec438faa3377b6a7cb899727efd
BLAKE2b-256 a6bd29ca3de1d36dee9bc7d4c8d1b38eb61b4876b2685f40098ffbfccc9010fa

See more details on using hashes here.

File details

Details for the file dulwich-0.20.29-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.29-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4013ea071c64a87cdb1999f81dd15f5733f49a03d60fad93a6b994a123441c95
MD5 c9bf7499e72207992ba2823ce09ef326
BLAKE2b-256 95c7de70d1fa1817950d12207f4d3d85e731a7d5fbc2bdd0f96cde1a66d55abc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.29-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 478.2 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for dulwich-0.20.29-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9768558738e1b4ac25c34249182f920cef1ef079139a82ff73f4ca4aaafe22fe
MD5 7bab48f23be2e71c0a237de69b1012f5
BLAKE2b-256 59ba31a2f69daf2b0983f516e4eec72477a13aaacbfdcbc25c9028943b6085f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.29-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 490.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for dulwich-0.20.29-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d7f3e97e3907fcfd86f15b05fdb8f364d19de9020231133c31e7185c754a8657
MD5 14745f16ba882c829879b4c5c91b438a
BLAKE2b-256 6958c71a69da18414107e3fa609f34840710e65e65c08da53de6ff539126748f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.29-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 588228e73937df57a8f588a2c9f34f80d4c53b2a7f2ad256dfaa16090756ad95
MD5 c3900c418f85ad0010ccfd2e1d7eef5e
BLAKE2b-256 26bfe2a2d302b83de11ac18e2a3141d2c046014b1eba42b76571bf3e0aacb98e

See more details on using hashes here.

File details

Details for the file dulwich-0.20.29-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.29-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6f026aad13b01c3e730d6c230cf0fc3ba0f6d153a6f6eb89f95e1a338bacb6c2
MD5 8ca659d0b7cf74d910b62e6a7c444b71
BLAKE2b-256 2dbea94b576e11dafc51746d03db2c9b8e915759cff07d8f52343511357fdb3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.29-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 478.2 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for dulwich-0.20.29-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 88a6dc00569ab673be57029fb6a43fb6083b7543eefb639fb350cda29821257a
MD5 7edef2d1b987569c7c0f43b43afab015
BLAKE2b-256 1550a482a8de9a5ed627eda17cc61578563ee773be7770b5f8cbc27b9c886637

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.29-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 490.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.9.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9

File hashes

Hashes for dulwich-0.20.29-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c53cd45e54ec247a85120768ad59d8847ebb800b4a1283f688ebb9fdf8feebc0
MD5 da241b1ea24c46c3a14fb5e09ce946c1
BLAKE2b-256 790315c249e81587b3323a515efd5acd5d139147ec23a7c9fc6f0ca3470c0804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.29-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efeed7ae1f9f1b4f92f9a700e1260bd5120bc8f24819ba3635a9675e868b50f0
MD5 74da2180cb5ff3f855bdeb6b26631dbe
BLAKE2b-256 11ef23d9f1a89d7a4575ebbefca7fe2512ca9673cae95f4c40b488278740ed9b

See more details on using hashes here.

File details

Details for the file dulwich-0.20.29-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.29-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6d7a1118606253d4a8fe74a7751406cda54d44e52a80aa1e5cfb2b8cfefa2d90
MD5 72bcd164f21443dafd39e1b5fce64fca
BLAKE2b-256 29ac3ea67c411572e093291e7835c62741f94bd3ae49d216d077558b577c5581

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.29-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 478.1 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for dulwich-0.20.29-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7329519665dcd8cafe02bb2e89ac4c20094782e3f2c6797a4b495dd33141e988
MD5 fdf3dc9c4aeaefaa7a1ae65b0fb33cfb
BLAKE2b-256 4fab0d929ba82e7476ff143e31de865f0be33264e074de0f03fe047da793d65e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.29-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 490.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.3 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8

File hashes

Hashes for dulwich-0.20.29-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ec3c2294da53d6b61124ee6cad58f49132bfaea0312a55a7fce4e3c3a20de1d9
MD5 6c16aeb51ddf77bfe1c1519a2e53cb53
BLAKE2b-256 1be93572fc73378e57684a6f38e8c2af62728f673bf0e3c9589815faf3552c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.20.29-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55b310dece33ed611b9c73beb4d6857fb924c0677d887557de97ea2764e36dc9
MD5 187687fe1cf04aa60a672fced5a8cff2
BLAKE2b-256 d520a9e95c83d248d4e73722d532e1208f9dfe647e6091c89e5759ff762436c5

See more details on using hashes here.

File details

Details for the file dulwich-0.20.29-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for dulwich-0.20.29-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cc962f5e09b2a83b3a69a3e90ebb5ebc6547c34c7f364c46ee560c643c9ab7ed
MD5 23d4be1af52cd9431e50b3f14fd12e56
BLAKE2b-256 5af4d4304dcc04b1784c2b19f83525169b4fb2109371aeb9ab63335c353a52b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.20.29-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 478.1 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.3 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.15

File hashes

Hashes for dulwich-0.20.29-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 484533b47d264f9b70246a63f0b1b97175c363ee67f32796aa695dedd536227a
MD5 06369d2381577900a605fdf9df637878
BLAKE2b-256 0b9582427dcf3f2cd39584c3ed4a06bf3c13826487a82e8706ed966e3d5e0a76

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