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

Uploaded Source

Built Distributions

dulwich-0.21.0-pp39-pypy39_pp73-win_amd64.whl (479.0 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (472.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (474.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.21.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (466.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.21.0-pp38-pypy38_pp73-win_amd64.whl (479.0 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.21.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (472.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.21.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.21.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (466.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.21.0-pp37-pypy37_pp73-win_amd64.whl (479.0 kB view details)

Uploaded PyPy Windows x86-64

dulwich-0.21.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (472.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

dulwich-0.21.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

dulwich-0.21.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (466.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

dulwich-0.21.0-cp311-cp311-win_amd64.whl (478.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

dulwich-0.21.0-cp311-cp311-win32.whl (477.1 kB view details)

Uploaded CPython 3.11 Windows x86

dulwich-0.21.0-cp311-cp311-musllinux_1_1_x86_64.whl (523.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

dulwich-0.21.0-cp311-cp311-musllinux_1_1_aarch64.whl (523.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

dulwich-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

dulwich-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (509.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

dulwich-0.21.0-cp311-cp311-macosx_11_0_arm64.whl (466.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

dulwich-0.21.0-cp311-cp311-macosx_10_9_x86_64.whl (466.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

dulwich-0.21.0-cp311-cp311-macosx_10_9_universal2.whl (466.9 kB view details)

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

dulwich-0.21.0-cp310-cp310-win_amd64.whl (478.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

dulwich-0.21.0-cp310-cp310-win32.whl (477.1 kB view details)

Uploaded CPython 3.10 Windows x86

dulwich-0.21.0-cp310-cp310-musllinux_1_1_x86_64.whl (519.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

dulwich-0.21.0-cp310-cp310-musllinux_1_1_aarch64.whl (519.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

dulwich-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

dulwich-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (508.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

dulwich-0.21.0-cp310-cp310-macosx_11_0_arm64.whl (466.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

dulwich-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl (466.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

dulwich-0.21.0-cp310-cp310-macosx_10_9_universal2.whl (466.8 kB view details)

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

dulwich-0.21.0-cp39-cp39-win_amd64.whl (478.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

dulwich-0.21.0-cp39-cp39-win32.whl (477.1 kB view details)

Uploaded CPython 3.9 Windows x86

dulwich-0.21.0-cp39-cp39-musllinux_1_1_x86_64.whl (518.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

dulwich-0.21.0-cp39-cp39-musllinux_1_1_aarch64.whl (519.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

dulwich-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

dulwich-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (507.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

dulwich-0.21.0-cp39-cp39-macosx_11_0_arm64.whl (466.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

dulwich-0.21.0-cp39-cp39-macosx_10_9_x86_64.whl (466.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

dulwich-0.21.0-cp39-cp39-macosx_10_9_universal2.whl (466.8 kB view details)

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

dulwich-0.21.0-cp38-cp38-win_amd64.whl (478.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

dulwich-0.21.0-cp38-cp38-win32.whl (477.1 kB view details)

Uploaded CPython 3.8 Windows x86

dulwich-0.21.0-cp38-cp38-musllinux_1_1_x86_64.whl (520.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

dulwich-0.21.0-cp38-cp38-musllinux_1_1_aarch64.whl (521.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

dulwich-0.21.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (508.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

dulwich-0.21.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (510.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

dulwich-0.21.0-cp38-cp38-macosx_11_0_arm64.whl (466.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

dulwich-0.21.0-cp38-cp38-macosx_10_9_x86_64.whl (466.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

dulwich-0.21.0-cp38-cp38-macosx_10_9_universal2.whl (466.8 kB view details)

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

dulwich-0.21.0-cp37-cp37m-win_amd64.whl (478.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

dulwich-0.21.0-cp37-cp37m-win32.whl (476.9 kB view details)

Uploaded CPython 3.7m Windows x86

dulwich-0.21.0-cp37-cp37m-musllinux_1_1_x86_64.whl (519.9 kB view details)

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

dulwich-0.21.0-cp37-cp37m-musllinux_1_1_aarch64.whl (520.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

dulwich-0.21.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (504.4 kB view details)

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

dulwich-0.21.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (506.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

dulwich-0.21.0-cp37-cp37m-macosx_10_9_x86_64.whl (466.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: dulwich-0.21.0.tar.gz
  • Upload date:
  • Size: 436.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0.tar.gz
Algorithm Hash digest
SHA256 c22cc05f020a96ad35d94d6520f8070270bee0a37b575686d09c02798b25ed86
MD5 865a1b77ad8db5e6dbc58ad8f8cbb6b1
BLAKE2b-256 b425c13c915bd6d4b2dd07382cbc8d0cf1a7b3542742e9d5e417ded247914c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8ee6164730bf89ba956da2b31d417bad4b535d64dd650cb2bb6ee58ae69a6fc2
MD5 214842ecf959a1f729582ff11a9979ed
BLAKE2b-256 7c0ce68d0daa72c503f9fd327405dbd57c32d556ba1947e6d64f3c455d7be27b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8540e6cc0e04d6885a6772e37a69567b0d991d1aea46d4aa632c275cb70d8720
MD5 2d9d99e210e16a90e16c5f5bd357e0e6
BLAKE2b-256 81940e8aa9a93a580472884140cf8410b2b2ace44d046f1f6ab365ef6f04c63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 126ceb4cf4c7309d0b0752e30e945a86463917a415927e4c5dbe2237ede5cde2
MD5 6174f840a152f4dcbcbfee3115ffd780
BLAKE2b-256 017c3241a3e2e78a8e4efd0880856e8f08b92bf7755dda4f4d155ea76f0bac2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 613b244d99513c7ab3c3a38791bbe57566f99784c380555f8c21ad63a99c8578
MD5 4550359d58b966658871aad832c99c06
BLAKE2b-256 5654e1ed0e69dd8400234fc0592e05c3a85e853d1e85f500a8de8596f619341c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 313ad412186bdae40995e8e882b2421cdbf3fb92320d0a25c2a71c583e490d7e
MD5 a91ceef18a501e12915be8778b0aa8f0
BLAKE2b-256 957bb4b323bd18133992c62f397e732031143af7c97168e5c40219d8490f6b78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 878b13f384c7f9e503ad4ecdc1a60e0e249e9103429e272faebb6d0b9fbb85c3
MD5 21bf3a7b65fa4bb76d46e2609f3548b0
BLAKE2b-256 f1139d11326116d26ebfff4b57da29ba31cc4f7c82175324954e8bceaf7f8c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1a36a0d20153e5489705d5ac8075ca8873d2156cba6b2445a942792a0647aab
MD5 8ba7e98cb787f1a700a09dfc46a5c40e
BLAKE2b-256 67ec955f2f7c3022687f5eeaf2c7e8d7b3923847bccdaf6f3f8e0087e2d45587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6101d0fe429c1ca0d069c61425f3679ed5d9228759fe6d8659ebca0ae5bafc94
MD5 ece3dea211bb8108ddb85519b8f2a67d
BLAKE2b-256 c23399a60e98ede63fe9ade46c625a759efc1b8decda288d18a4ed25c37a6f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b60043581e8b4200975da07ac1c5b80183b4a879da7e43cbafb60e8514fa434c
MD5 2b03007de886b0b4f69fb078594676b3
BLAKE2b-256 cd0a83f9b0a683ffeefb0f7ba21f7ccea6e2d0d148ee1c313a518070a8d4395e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4025134edc63c72009ad1faf1f6b44552376821c34884bfff93374f28cad185b
MD5 37cde2780fc1bb281659cbca0fb5791c
BLAKE2b-256 5906b93897d391a37c22fe7e6899a8f585b2eb1785bd429aea0a3878ba139564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d79a9962c053e87ba4aace1144069dcb86c810514889559963cd61e96d7c740
MD5 3523b5aec267c53071e43320b42ec3e3
BLAKE2b-256 e8091b5273dd25586648b5784de0e422da72d5e0af87bd63084c5d1d093efa57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1fece52ac8a8a2a0ab78dd257e0899fbb3ecf7df83161156ee49141ce9226c5f
MD5 5eed0000fef110c507438a6d46319cba
BLAKE2b-256 90c0940e37254276a5ba63b19b7576e9fd93ec1dae46f2fe8a88244dd295663e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.21.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 478.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5f620090447d84d6745b8233e332f65a754e6973c89f379ef60fc43da22a6fbc
MD5 952dc3b6e112459ff66b7f495d2d9bf1
BLAKE2b-256 ad38b20958ffda87488f617333bc69094709465184fa3ebf0f88413cdb994a4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.21.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 477.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c7baf24627b61de2356a3d242286fada1d1cadf627259ae1171ff2ea14d2cd2a
MD5 b885be39eb284a4204f6ff108c42594c
BLAKE2b-256 f224fbf5a09415514589194ed216d70990d40f94e70cc958d525398e8cce2ca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d90f475ffcc00ac80c6a296fd9d58e19c1e8857bfabc7239b871f71e0f89711a
MD5 82deb983be4e05b71094d094872919a8
BLAKE2b-256 0eb527281a63bf628b42bc5c9b10b1de6d81f0e74328b859df1d9641dee43b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 809f5a3646216c39989c49a4d02c801a1c0a92dc826b45c01058ccf778066b70
MD5 3074ee84122dac364e9aeef61925a0da
BLAKE2b-256 203e8e8132a4ca0bbf43a1b9bd5d213ca53ed4b25e8dee226a83a3480c0d5ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e9b0b1483a9fa263fc49938bccd30a5ff235afb0d25ef73563aa6bdf1fef7ae
MD5 1f0f8ca5967bfe8226058db5c6dccf36
BLAKE2b-256 a4333b8a736284d36cbe1ba96ce4f6d3451ab75556c79980f79273f0da55070c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 517121261b1473434c018202adc48e8c738721598e8ae34a5d2f4004e252d681
MD5 5f6f894602751372d5948c4d792d2130
BLAKE2b-256 ef801dfca89334a3856002f8425bd4d2f8aeef14fe25692dffbef7d58063e307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8deaaf64210407d787897db3080ad149cfc864ae6978147f0523d351fa2ef325
MD5 f97eaefda19af20938de473d2990b93f
BLAKE2b-256 4082b5144e7624becb0c939d7cc93c02dcf2aa85216d779e8dc18f8072ff9373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce8d717a8cbc8bed91d01a8321cb2f488de8cf00fdb40289c52532d7a1a62e70
MD5 cb252bcf5c08bb46ee5ed1054bf8c486
BLAKE2b-256 3a2f4df28517bfe88c2862dfb15597baf4c134e5b5625309dbae003477c5da46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 38f939dee3997648eb0b4de1b52e65a9b7f8454189d0df2d4f886cd138b7a0be
MD5 82d56dbc46b10e6cdbabe08e26523a17
BLAKE2b-256 03534a8a10ea971d61de36c5e32eb83b4426cfdb7fbe1be9350259a976642d91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.21.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 478.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ac8ed1d90df9ff908b04644dfadd1e3907ada6f88f2fc382a5d6f02d538dfb9
MD5 25238a528675a9df5932981393a2dded
BLAKE2b-256 6c686701d1b5284364501d4856caeb83970e6f2e9f4d30c68beebec9a290fe18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.21.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 477.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cb59b03c88c1ad4b9a4716d7dd47eee54cdf1e1818a712dd2b33f76cac9b1a52
MD5 f50ef3f1efcdaf97a07d308a31879fc8
BLAKE2b-256 d668690e3fff8eb33fe572cc3483b94365709038312a8e62f8e2010a38791e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 50e642183b19d32132696a395771b97267f54f4d2dfb88fc7776cbd491a39122
MD5 d3910fef9b63fdd7da2406f9980b5935
BLAKE2b-256 d7c76966d229fd1f8074d04f7fdcc274ccd777087b54601afe15538265df67b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e8b41a19ede216b344b01443d07c468f97f9b9a619431ebecadf295823481937
MD5 0fd1627362577a30ce084eb14bc0ca02
BLAKE2b-256 7a150cea9f339900c84eaba0a93d40b101bc1ea906fe9d4eb61514dde4c7aa24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bba7deffe1f001ad0327f45636f226ba7dfd7c15b18a08efef3a93bac162f36c
MD5 1547a3f202fb88244152c0044ba33bdf
BLAKE2b-256 598ee923501320d60fef6106f9e9dc385fcfbe46c2194da6cf6908e874e7cd0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7070e7b2e25d47a395a0077236c6f6d9c19ee43eb1a24fa7c24b02b22bd9752b
MD5 3e7fe5013616a5e818e151bb55a9c1d6
BLAKE2b-256 1d486f6a97af90968a625a9d93e563820d0fd5e7e16a085c583fec8d2d1ad942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da10d1b1b9f67f178ef6a26a17ef2b03a03026d6fd88fa5368f16122afea4c62
MD5 d2340f91e25682661d8ea2ba71658fa7
BLAKE2b-256 34434e530bd34fc0d5cfd4d2d9351fbb1ea814fffafe575d9c35787a342ed451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f397e95efca7747c599725d27882d2f5717bbf9113236f5fb4868f9862389452
MD5 8a4634357a8317443bb20c5f40ab14fe
BLAKE2b-256 c31df824cd127d0961046e9e4d5f8a1f5d9c3488e8a750f99600ac79bd60e787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c4493057ff95d567b838cc481b76ac4ca9f9716bac1600790100ce223388bc0c
MD5 ef1b649708f554ccf83c20f4a721f5da
BLAKE2b-256 1a350ab6b833e8eb6fa4ea699c8ba3a5f47863c05e0c3f021d19fe3213f5f62b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.21.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 478.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f76730beb31cede4cc0b1c9faa54581ea93668320ba6ab775251d8868e4247f4
MD5 39b1d7cd183927d7d8f18d28f1e87bd2
BLAKE2b-256 de521e3ae9ccdbd1524fdd1fafb452919f7f6bb7752f3af53676d8c00ce19f09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.21.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 477.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c1f9b1ec4ef03d780f62f10dd4420e3116c3a9237319321a2360e447213649af
MD5 b8f7e3c5f876954e46cb8277c6d2327f
BLAKE2b-256 58d3768db37faf3c267bbc8955b5e9eeb3b7ab00405e5b5d7929b82cd569a674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 166bba66f856560a129a096b5c0d620bfccbf9fa09de8e95aed4367cd86030cd
MD5 e305dbfa5f13bfd7d5ed531482b8986b
BLAKE2b-256 c66d73a8a07e5cf81e1753f4b074dc26dc8162265911a36ec40d71e1f3630e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 589b4b52138cf222072ae48ab01c3829b116126c7c078d04b6a9a3fccc037e4a
MD5 b9e9c2d5fc7c07577f3dc79cbca6fa19
BLAKE2b-256 aef7de55815be805e69c73c26de859c5aae4b75caf6aa81d924223a6bfc9a7c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2625ba57abe95f1512694a5a3867b7ea1f17cf5b905a9f0b0aecf8640914c537
MD5 3c3969a621dfa7e9899f4e38c1e93997
BLAKE2b-256 26f75babc9da8da22ee7367df2b585711fa09ce92ebb99e863afa09ce930b24e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09d3ce0f46467eec11911b5228c9aa267df1f217116b64328bdc4418c41a737b
MD5 709b765cfbb682118bb43aa399bbf183
BLAKE2b-256 bbe81ebc05a481cf1b0a368f3d18c2cee4575b4c6b05efb64ff07dce0b6f0492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96b37c03644741b37b6ed258d45e1ab97dd8ba9f6ae7bd13cee6fd4716fd2d50
MD5 2014b15c096f873c9c58df21333c493d
BLAKE2b-256 d9ac1e34022cdbf6f1cd5c3204b364c1bc6458651c17c1906723d347f6323c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0756dea064b3d7d0813e4d2a7808b587aeb1ab4a32131879833687d2c9bd9e0
MD5 418cdea96f3b5ff7999e01829bd6988a
BLAKE2b-256 a91be1c0c52ef4f170b600c7655bbca15512e6566b0d1bd6dee65ba3ef515d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 86cfcb73b113f46bab47bcddf9049abe2d0d07389ebbeec325333890c55f2000
MD5 3aab47edcec850b5460a0fcf09f2f55d
BLAKE2b-256 1c3698a27d697d9917e44f46ffc49d79b2480f75c78f98491ae83cd2a6fbc3c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.21.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 478.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ddea267d04c2491d2e1315f3c5cc4749080124098001dd0c2882b32013082ea1
MD5 bf53848752d6f5f8a513a7b4b2a11afc
BLAKE2b-256 1a9661e624a0b53bfcdb403278ccca267fce74f6bdec15d0b3530e192e78a093

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.21.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 477.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5744196880df9a0539f3531c9f56dfaa0f61d246949b6ee8a18f5d8a2527011f
MD5 86356067a1dac630cf40fb09b9f2ef92
BLAKE2b-256 85b1e28364e54e5dfb317fad0b8e7cb26dad33ea1cfc7a6cce5ee097bd6a639c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 93c7fb9473d3a7c288bfd42beb8becd9d3ab73b928c4178d7e2f2b995e63a966
MD5 1e7754c9e7761b0c7cf7ca0aa22df3c1
BLAKE2b-256 152e9f6937e39eb79335851b408f4ce2ba68dcc265a955234186a178a11c1fbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 176f19152ed594be297558d9d749a29c1643323772e9960609c4211881122def
MD5 eba16812436cbfd45e780857576c87fa
BLAKE2b-256 ea0aa96fbfa90f5c0eeaedc33741e22791c82185b1f1f149b873b3f5b34769c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c592f5af6316958e7cf5b98fcfcb238c628426815afda92741b5974db12f4fb
MD5 a1182c9f89967b95c334b3e4b67baebd
BLAKE2b-256 5869ab2a5b90c6b9017018e31abbb5ef2ff35efef6da4746409d873c6b6a57e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 776b4fc96b71c3e1658a1ed4edd0aec23e4ff6371f95583cca8395c8cdcaad75
MD5 af6f7d6fc8b98dac421c9193c412742c
BLAKE2b-256 90ea0c68b337028e78231826127512d5ad0f4f7e40768f9ba30b89144dec980b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fafbc8ca2c647c6b33f2183dd1c91f865b0d5f1d514663fb4d4dbe5feab1e37
MD5 0c2a05c7ea6ab7471f403d0e7cdbe129
BLAKE2b-256 2151fbd339b551809b8e1418609b328b2e10c78f2bd8ba1251f0f0809a86fd3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9cb6edf9c88d06cb3f78bfb4fe85aa6910fecd91b79e3429d77b578cf097e6cc
MD5 e1dbe4ad1ff53d5952d96d79f2f07a2f
BLAKE2b-256 508d6b9903166fa6163ef86611e9cf46fb4b547c15750485578bec1084fc0e4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 48bc33eeeee00e056fa873e0c780379aaca12280952e03f75a20680248437857
MD5 c4884d6b96b48d8d2117702d32806fe8
BLAKE2b-256 5ab08154cf41120270b0f36287e35c5155a26207ad148b6ff7b7af070c6e2ab6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for dulwich-0.21.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bc8add3ffba0a1ea4d4b63e4c96212c4ed3b2c90e3d1c2dc19ce8c00c9942d62
MD5 fec0355866c13351c87d7caa010ab2bd
BLAKE2b-256 177e04a28109b780d608481eb758907f658ae77e1c12726be873c2f38cbf3b32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: dulwich-0.21.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 476.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for dulwich-0.21.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 20f8cf1444f6036a49bebc77c5e74f87345a7314b54b39a2d71ef76e9e3c0c80
MD5 7325b5ff8cc52be287462c840ef2923a
BLAKE2b-256 00a2321de39061042f9f77f947a6a75477b073f672a63e24064e4ae7c720427f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c24704ae960e69e46afbd4847b1c635fb91c5e6144ffcad343d8282a1c5f0c5f
MD5 f26b3a01a2f4988bf5d84e8d17ae2a3e
BLAKE2b-256 8b0b9cdeb30d50d968408850a7e298bceb07cfab8633d0a738fd46893af77eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6b4db2e24cdcffaeec8f735880c8e6d606bcca6841884c5597d783f63742da00
MD5 f8cacedb7ba5c0e03a994b31fa5ecbcb
BLAKE2b-256 5158662a4f4e3239fa960cb816e55e514ddbaba8d9bf5be78cf777bc5e9cf39a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf3ab9c182def4c1a71b3724f2b94275d24318ddd81f31429a0f934507908ffb
MD5 d50f83e9a2583fd997c5a65e4e11d954
BLAKE2b-256 448e847962976e3b8e347be48306ba098fe930d3443b2cfe4676823ab03ba06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c4f2fac5c51a3673468a4f83de74b0dd2a6d0f70df15625b41d6608425e5036
MD5 615f10196f75d45883773bc452e1adcd
BLAKE2b-256 197724e9024e3092041e82e9e5da6cceb5f4c1c832ebc1e7a9b48b5f59f99094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for dulwich-0.21.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca9f8f97f5bc758421173b525cbcef0462b3281e7c7f4d396580363cd4f7d34b
MD5 73408a86e8c66d35577f8d9966b0646b
BLAKE2b-256 3ee0f3740a576b16630bd5b254f7669e6cfa3e6d1798d84bd292dc274c346068

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