Dulwich
=======
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.
SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
The project is named after the part of London that Mr. and Mrs. Git live in
the particular Monty Python sketch.
Installation
------------
By default, Dulwich' setup.py will attempt to build and install the optional Rust
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 <https://pip.pypa.io/en/stable/reference/requirement-specifiers/>`_
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 <https://www.dulwich.io/docs/>`_.
Help
----
There is a *#dulwich* IRC channel on the `OFTC <https://www.oftc.net/>`_, and
a `dulwich-discuss <https://groups.google.com/forum/#!forum/dulwich-discuss>`_
mailing list.
Contributing
------------
For a full list of contributors, see the git logs or `AUTHORS <AUTHORS>`_.
If you'd like to contribute to Dulwich, see the `CONTRIBUTING <CONTRIBUTING.rst>`_
file and `list of open issues <https://github.com/dulwich/dulwich/issues>`_.
Supported versions of Python
----------------------------
At the moment, Dulwich supports (and is tested on) CPython 3.9 and later and
Pypy.
Raw data
{
"_id": null,
"home_page": null,
"name": "dulwich",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "vcs, git",
"author": null,
"author_email": "Jelmer Vernooij <jelmer@jelmer.uk>",
"download_url": "https://files.pythonhosted.org/packages/67/57/b4962be0410cf15dc7758fcc40337d09515cc74ac15e45d304f8b70c9b40/dulwich-0.22.7.tar.gz",
"platform": null,
"description": "Dulwich\n=======\n\nThis is the Dulwich project.\n\nIt aims to provide an interface to git repos (both local and remote) that\ndoesn't call out to git directly but instead uses pure Python.\n\n**Main website**: <https://www.dulwich.io/>\n\n**License**: Apache License, version 2 or GNU General Public License, version 2 or later.\n\nSPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later\n\nThe project is named after the part of London that Mr. and Mrs. Git live in\nthe particular Monty Python sketch.\n\nInstallation\n------------\n\nBy default, Dulwich' setup.py will attempt to build and install the optional Rust\nextensions. The reason for this is that they significantly improve the performance\nsince some low-level operations that are executed often are much slower in CPython.\n\nIf you don't want to install the Rust bindings, specify the --pure argument to setup.py::\n\n $ python setup.py --pure install\n\nor if you are installing from pip::\n\n $ pip install --no-binary dulwich dulwich --config-settings \"--build-option=--pure\"\n\nNote that you can also specify --build-option in a\n`requirements.txt <https://pip.pypa.io/en/stable/reference/requirement-specifiers/>`_\nfile, e.g. like this::\n\n dulwich --config-settings \"--build-option=--pure\"\n\nGetting started\n---------------\n\nDulwich comes with both a lower-level API and higher-level plumbing (\"porcelain\").\n\nFor example, to use the lower level API to access the commit message of the\nlast commit::\n\n >>> from dulwich.repo import Repo\n >>> r = Repo('.')\n >>> r.head()\n '57fbe010446356833a6ad1600059d80b1e731e15'\n >>> c = r[r.head()]\n >>> c\n <Commit 015fc1267258458901a94d228e39f0a378370466>\n >>> c.message\n 'Add note about encoding.\\n'\n\nAnd to print it using porcelain::\n\n >>> from dulwich import porcelain\n >>> porcelain.log('.', max_entries=1)\n --------------------------------------------------\n commit: 57fbe010446356833a6ad1600059d80b1e731e15\n Author: Jelmer Vernoo\u0133 <jelmer@jelmer.uk>\n Date: Sat Apr 29 2017 23:57:34 +0000\n\n Add note about encoding.\n\nFurther documentation\n---------------------\n\nThe dulwich documentation can be found in docs/ and built by running ``make\ndoc``. It can also be found `on the web <https://www.dulwich.io/docs/>`_.\n\nHelp\n----\n\nThere is a *#dulwich* IRC channel on the `OFTC <https://www.oftc.net/>`_, and\na `dulwich-discuss <https://groups.google.com/forum/#!forum/dulwich-discuss>`_\nmailing list.\n\nContributing\n------------\n\nFor a full list of contributors, see the git logs or `AUTHORS <AUTHORS>`_.\n\nIf you'd like to contribute to Dulwich, see the `CONTRIBUTING <CONTRIBUTING.rst>`_\nfile and `list of open issues <https://github.com/dulwich/dulwich/issues>`_.\n\nSupported versions of Python\n----------------------------\n\nAt the moment, Dulwich supports (and is tested on) CPython 3.9 and later and\nPypy.\n",
"bugtrack_url": null,
"license": "Apachev2 or later or GPLv2",
"summary": "Python Git Library",
"version": "0.22.7",
"project_urls": {
"Bug Tracker": "https://github.com/dulwich/dulwich/issues",
"GitHub": "https://github.com/dulwich/dulwich",
"Homepage": "https://www.dulwich.io/",
"Repository": "https://www.dulwich.io/code/"
},
"split_keywords": [
"vcs",
" git"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "01cdde9e9ccf7becfd45df1fe1b9f280244cd8110a682e2d552841ead301c6a5",
"md5": "a04c2cef5725a30ae66e2faeb161aa39",
"sha256": "01e484d44014fef78cdef3b3adc34564808b4677497a57a0950c90a1d6349be3"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a04c2cef5725a30ae66e2faeb161aa39",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 897001,
"upload_time": "2024-12-19T16:32:49",
"upload_time_iso_8601": "2024-12-19T16:32:49.260593Z",
"url": "https://files.pythonhosted.org/packages/01/cd/de9e9ccf7becfd45df1fe1b9f280244cd8110a682e2d552841ead301c6a5/dulwich-0.22.7-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "13614fc028c62740119e7cb8d0d60238a2570b140f22438a08c260c272b585e6",
"md5": "cb5f61140bd5828bfe34caa7610026e8",
"sha256": "bb258c62d7fb4cfe03b3fba09f702ebb84a924f2f004833435e32c93fe8a7f13"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cb5f61140bd5828bfe34caa7610026e8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 971529,
"upload_time": "2024-12-19T16:32:52",
"upload_time_iso_8601": "2024-12-19T16:32:52.598130Z",
"url": "https://files.pythonhosted.org/packages/13/61/4fc028c62740119e7cb8d0d60238a2570b140f22438a08c260c272b585e6/dulwich-0.22.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7647d1f5a3c5f4b8a6ff157757f8ea5fc256a7429b8a4f6b225fcb052b51eb8a",
"md5": "c57ff0ef35f43df7429e990e1878199f",
"sha256": "fdbd087e9e99bc809b15864ebc79dbefe869e3038b64c953d7736f6e6b382dc7"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c57ff0ef35f43df7429e990e1878199f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 980287,
"upload_time": "2024-12-19T16:32:54",
"upload_time_iso_8601": "2024-12-19T16:32:54.402722Z",
"url": "https://files.pythonhosted.org/packages/76/47/d1f5a3c5f4b8a6ff157757f8ea5fc256a7429b8a4f6b225fcb052b51eb8a/dulwich-0.22.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48af8495a56875f956e2ce24a795a2d110477733c3a0339324e029c63278bbcb",
"md5": "630064203f338adbeb0c90ada28543be",
"sha256": "6c830d63c691b5f979964a2d6b325930b7a53f14836598352690601cd205f04b"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "630064203f338adbeb0c90ada28543be",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1025258,
"upload_time": "2024-12-19T16:32:57",
"upload_time_iso_8601": "2024-12-19T16:32:57.407099Z",
"url": "https://files.pythonhosted.org/packages/48/af/8495a56875f956e2ce24a795a2d110477733c3a0339324e029c63278bbcb/dulwich-0.22.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a03124850b5f9473d0b4fa8cafc7a1c55305baeeb7c58b8d4c6ef8d42598abc6",
"md5": "839f33e86bb7fefbef0566ab29976b2d",
"sha256": "925cec97aeefda3f950e45e8d4c247e4ce6f83b6ee96e383c82f9bced626151f"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "839f33e86bb7fefbef0566ab29976b2d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 582002,
"upload_time": "2024-12-19T16:33:00",
"upload_time_iso_8601": "2024-12-19T16:33:00.636759Z",
"url": "https://files.pythonhosted.org/packages/a0/31/24850b5f9473d0b4fa8cafc7a1c55305baeeb7c58b8d4c6ef8d42598abc6/dulwich-0.22.7-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c86a95f3b483c9ecf79abf19b9a095a731014acf819ecf8ea1bc27b4a4ad637c",
"md5": "66ec063012871c409791f317636d9286",
"sha256": "f73668ecc29e0a20d20970489fffe2ba466e5486eae2f20104bc38bcbe611f64"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "66ec063012871c409791f317636d9286",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 599193,
"upload_time": "2024-12-19T16:33:02",
"upload_time_iso_8601": "2024-12-19T16:33:02.728471Z",
"url": "https://files.pythonhosted.org/packages/c8/6a/95f3b483c9ecf79abf19b9a095a731014acf819ecf8ea1bc27b4a4ad637c/dulwich-0.22.7-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e593f6b50eeff44877622964e9b32daf5610f84b6bbc5f2d62e655ad8b5ef03c",
"md5": "19415e3a66f130ad842b4ef1eddbcc36",
"sha256": "df5a179e5d95ac0263b5e0ccd53311eac486091979dcac106c5cc9e0ee4f2aa2"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "19415e3a66f130ad842b4ef1eddbcc36",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 896831,
"upload_time": "2024-12-19T16:33:08",
"upload_time_iso_8601": "2024-12-19T16:33:08.893359Z",
"url": "https://files.pythonhosted.org/packages/e5/93/f6b50eeff44877622964e9b32daf5610f84b6bbc5f2d62e655ad8b5ef03c/dulwich-0.22.7-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b47be9bd9c32f195c816aaecd4e813a85bf7e5076c781a936cd0afaf1cfd11cc",
"md5": "1e19817ba53559e7048bb5dd7b2b9304",
"sha256": "ca7ed207956001e6a8a2e3f319cdc37591e53f7eb04aedafa78f96768048c53e"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "1e19817ba53559e7048bb5dd7b2b9304",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 971218,
"upload_time": "2024-12-19T16:33:10",
"upload_time_iso_8601": "2024-12-19T16:33:10.510257Z",
"url": "https://files.pythonhosted.org/packages/b4/7b/e9bd9c32f195c816aaecd4e813a85bf7e5076c781a936cd0afaf1cfd11cc/dulwich-0.22.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d3fa1d68a681ecefc7e152fa43f50b49457aebd9fb2bbf3fcd491bc782a3de7",
"md5": "ca0502be2b86507067cc2c1c02fe5db0",
"sha256": "052715452b729544c611a107b2eef6111e527f041c1b666f8ed36c04e39c36b5"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ca0502be2b86507067cc2c1c02fe5db0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 979709,
"upload_time": "2024-12-19T16:33:12",
"upload_time_iso_8601": "2024-12-19T16:33:12.090152Z",
"url": "https://files.pythonhosted.org/packages/2d/3f/a1d68a681ecefc7e152fa43f50b49457aebd9fb2bbf3fcd491bc782a3de7/dulwich-0.22.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e989e60a76c629c2b034d4e6417f34bfc12ab142cdda9b29368a111cac05c7b",
"md5": "1ee754419a6f2b555a24fe80465f693d",
"sha256": "74b7cf6f0d46ac777be617dad7c1b992380004de74c0e0652bed174686249f34"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1ee754419a6f2b555a24fe80465f693d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1024998,
"upload_time": "2024-12-19T16:33:15",
"upload_time_iso_8601": "2024-12-19T16:33:15.311558Z",
"url": "https://files.pythonhosted.org/packages/8e/98/9e60a76c629c2b034d4e6417f34bfc12ab142cdda9b29368a111cac05c7b/dulwich-0.22.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6afc2d71a0696141af7e23b3bab2d51fcb905651884da88627d707aab6e30b8c",
"md5": "2d4ca28ef318614a4a022cea94e1c79b",
"sha256": "5b9806a75f4b74fa891926b1d830e21f9cead80ed6dd803ed668369b26fb8b5f"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "2d4ca28ef318614a4a022cea94e1c79b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 582239,
"upload_time": "2024-12-19T16:33:18",
"upload_time_iso_8601": "2024-12-19T16:33:18.408927Z",
"url": "https://files.pythonhosted.org/packages/6a/fc/2d71a0696141af7e23b3bab2d51fcb905651884da88627d707aab6e30b8c/dulwich-0.22.7-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ac933af07981b6d2bcaed941a4f8d5bffc44ed618db92a7ec1146e9ee9f5e7c",
"md5": "a637d2119a2294db4ca572e790051175",
"sha256": "01544915c4056d0820de8cf126b971f7c180743ff64c4435c89168e44b30df4b"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "a637d2119a2294db4ca572e790051175",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 599143,
"upload_time": "2024-12-19T16:33:19",
"upload_time_iso_8601": "2024-12-19T16:33:19.799824Z",
"url": "https://files.pythonhosted.org/packages/2a/c9/33af07981b6d2bcaed941a4f8d5bffc44ed618db92a7ec1146e9ee9f5e7c/dulwich-0.22.7-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1eba81c17cc324fe60e81edc343b7d818f3b1489060eec1260dcac6284b20984",
"md5": "96eeaa9f18afdb1ed76fe5e8c335571e",
"sha256": "2b7a3ac4baa49bd988cc0d0891a93aa26307c01f35caeed8729b7928a1f483af"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "96eeaa9f18afdb1ed76fe5e8c335571e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 889792,
"upload_time": "2024-12-19T16:33:22",
"upload_time_iso_8601": "2024-12-19T16:33:22.559317Z",
"url": "https://files.pythonhosted.org/packages/1e/ba/81c17cc324fe60e81edc343b7d818f3b1489060eec1260dcac6284b20984/dulwich-0.22.7-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "60e43b5885e0503869c515c9c8c7760f125d8681e7581dbe82321e6ce9916097",
"md5": "39f6b97101b2919a42c87e0a01dca0f5",
"sha256": "7d72ce1377eac23bd77aa3541ceb91f2d8bd68687659f8625af8301f0b6b0a63"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "39f6b97101b2919a42c87e0a01dca0f5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 969313,
"upload_time": "2024-12-19T16:33:27",
"upload_time_iso_8601": "2024-12-19T16:33:27.179942Z",
"url": "https://files.pythonhosted.org/packages/60/e4/3b5885e0503869c515c9c8c7760f125d8681e7581dbe82321e6ce9916097/dulwich-0.22.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "725a73c7e9b9845ff351ceade642b16410e573eaef0647fe917feb5c8457b780",
"md5": "c0d348533cd04e70c75f000540cd6ffa",
"sha256": "6bda2eca0847c30a9312a72f219af9e63feb7d2ca89f47fdaa240b0d0cdd6b84"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c0d348533cd04e70c75f000540cd6ffa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 976951,
"upload_time": "2024-12-19T16:33:30",
"upload_time_iso_8601": "2024-12-19T16:33:30.506923Z",
"url": "https://files.pythonhosted.org/packages/72/5a/73c7e9b9845ff351ceade642b16410e573eaef0647fe917feb5c8457b780/dulwich-0.22.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f84dc7e43521402d12e6ec3914a117672111b27a00bf9b1a6f2662b9b3c4a3c4",
"md5": "4145d241742692df04442d6c94d2b233",
"sha256": "a8886b2c9750ba15193356d9e8608e031cd89a780d0afc53b3101391605b3793"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4145d241742692df04442d6c94d2b233",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1021693,
"upload_time": "2024-12-19T16:33:33",
"upload_time_iso_8601": "2024-12-19T16:33:33.707043Z",
"url": "https://files.pythonhosted.org/packages/f8/4d/c7e43521402d12e6ec3914a117672111b27a00bf9b1a6f2662b9b3c4a3c4/dulwich-0.22.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abdd00db3b53e2099aea4ec8f2aa028d6f80d2645dbd5fd41beb1151e68baf6a",
"md5": "9937f13317168664487dcd4731ef4315",
"sha256": "1782854c10878b5cb8423e74b0ef4256c3667f7b0266513af028ac28dbab1f2d"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "9937f13317168664487dcd4731ef4315",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 580960,
"upload_time": "2024-12-19T16:33:37",
"upload_time_iso_8601": "2024-12-19T16:33:37.313266Z",
"url": "https://files.pythonhosted.org/packages/ab/dd/00db3b53e2099aea4ec8f2aa028d6f80d2645dbd5fd41beb1151e68baf6a/dulwich-0.22.7-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e2df4d333aabba22dac0fa3985c77fcdd982e30b1fe255c79770a426d38ffd7",
"md5": "c252e4c1798cb84031838fd9bb161fd1",
"sha256": "fe324dc40b93e8be996c9fa9291a439bef835a92a2e4cb5c8cbdb1171c168fd6"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "c252e4c1798cb84031838fd9bb161fd1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 599033,
"upload_time": "2024-12-19T16:33:38",
"upload_time_iso_8601": "2024-12-19T16:33:38.834149Z",
"url": "https://files.pythonhosted.org/packages/5e/2d/f4d333aabba22dac0fa3985c77fcdd982e30b1fe255c79770a426d38ffd7/dulwich-0.22.7-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "299049577568ae5c57476df62622c765d3a3f59abd31a950f806cda677971fc3",
"md5": "5407df5a273ca5d5b18afe2e49b7b998",
"sha256": "2220c8b7cac5794e2260a924e81b05baa7836c18ba805d5a6731071a5ff6b860"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5407df5a273ca5d5b18afe2e49b7b998",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 889780,
"upload_time": "2024-12-19T16:33:40",
"upload_time_iso_8601": "2024-12-19T16:33:40.509656Z",
"url": "https://files.pythonhosted.org/packages/29/90/49577568ae5c57476df62622c765d3a3f59abd31a950f806cda677971fc3/dulwich-0.22.7-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ace046edaba0439646cad017c5e6ad7cdb81dbb98622a2f8f5ff501e8d628fd",
"md5": "84a738770d57954bfaea3e35b3232e39",
"sha256": "1cbd5ecbc95e18c745965fc7b2b71209443987a99e499c7bb074234d7c6142e2"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "84a738770d57954bfaea3e35b3232e39",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 969356,
"upload_time": "2024-12-19T16:33:42",
"upload_time_iso_8601": "2024-12-19T16:33:42.132706Z",
"url": "https://files.pythonhosted.org/packages/3a/ce/046edaba0439646cad017c5e6ad7cdb81dbb98622a2f8f5ff501e8d628fd/dulwich-0.22.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "daac7b60ccbf6259545ddc387d6c92844cb5f9d3b9a2a257955318c214cc2542",
"md5": "0df6cd9fb7d33f6c6fee626abcc487c0",
"sha256": "9f418779837a3249b7dfc4b3dc7266fa40687e5f0249eedfa7185560ba1ee148"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0df6cd9fb7d33f6c6fee626abcc487c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 977362,
"upload_time": "2024-12-19T16:33:43",
"upload_time_iso_8601": "2024-12-19T16:33:43.826224Z",
"url": "https://files.pythonhosted.org/packages/da/ac/7b60ccbf6259545ddc387d6c92844cb5f9d3b9a2a257955318c214cc2542/dulwich-0.22.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa3e38cb8c9d116258f306c8bc89dda99b61fe004d7e2211d7e71e895216e33e",
"md5": "013d121501c2f576fc84dfbe5c2aa7d0",
"sha256": "9c01db2ef6d5f5b9192c0011624701b0de328868fe0c32601368cd337e77cd1a"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "013d121501c2f576fc84dfbe5c2aa7d0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1021409,
"upload_time": "2024-12-19T16:33:46",
"upload_time_iso_8601": "2024-12-19T16:33:46.647653Z",
"url": "https://files.pythonhosted.org/packages/fa/3e/38cb8c9d116258f306c8bc89dda99b61fe004d7e2211d7e71e895216e33e/dulwich-0.22.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "468c3e80ce97d60a4c2848b390a36ec0c9abed34cf7920bd157a5c5ee58e957d",
"md5": "cf43f50d982debd6277ed0d5237b9a87",
"sha256": "a64e61fa6ab60db0f897f1c30f32b26b330d3a9dc264f089ee9c44f5900fb657"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "cf43f50d982debd6277ed0d5237b9a87",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 580586,
"upload_time": "2024-12-19T16:33:48",
"upload_time_iso_8601": "2024-12-19T16:33:48.219756Z",
"url": "https://files.pythonhosted.org/packages/46/8c/3e80ce97d60a4c2848b390a36ec0c9abed34cf7920bd157a5c5ee58e957d/dulwich-0.22.7-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb5acd0d02c98a3a4c5910eee76d3d3735a61f34341f620d8ae303050283c28a",
"md5": "2fcac35bb72bbad45ff21d070b46da38",
"sha256": "9f5954cd491313743d7bd3623d323b72afceb83d2c2a47921f621bdd9d4c615b"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "2fcac35bb72bbad45ff21d070b46da38",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 598799,
"upload_time": "2024-12-19T16:33:51",
"upload_time_iso_8601": "2024-12-19T16:33:51.204268Z",
"url": "https://files.pythonhosted.org/packages/fb/5a/cd0d02c98a3a4c5910eee76d3d3735a61f34341f620d8ae303050283c28a/dulwich-0.22.7-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b8641e2cd951dccaa86c78111dbb3e4b83dde5633818542c4e3e66254ea869a",
"md5": "2590a7f366ccdb6a6a0a29a4e2ef8b63",
"sha256": "6bea11b98e854ff2abec390eeac752586b83921a22091dae65470ccbb003fc1b"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2590a7f366ccdb6a6a0a29a4e2ef8b63",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 896342,
"upload_time": "2024-12-19T16:33:53",
"upload_time_iso_8601": "2024-12-19T16:33:53.352661Z",
"url": "https://files.pythonhosted.org/packages/3b/86/41e2cd951dccaa86c78111dbb3e4b83dde5633818542c4e3e66254ea869a/dulwich-0.22.7-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d9c44499ddedf7a45eeb367d9d2d81227a6801607d86b773e5948ff75b6142c",
"md5": "8f429d394ed46019e4bde8cc71c68f7e",
"sha256": "cdbcf206d4b1e5ba2affc6189948cb292cc647593876b96a0b71db44e79a05a1"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8f429d394ed46019e4bde8cc71c68f7e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 974020,
"upload_time": "2024-12-19T16:33:55",
"upload_time_iso_8601": "2024-12-19T16:33:55.101993Z",
"url": "https://files.pythonhosted.org/packages/6d/9c/44499ddedf7a45eeb367d9d2d81227a6801607d86b773e5948ff75b6142c/dulwich-0.22.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d60d39708ddc80b1b4ecbae98cc97682a05471bf04a0a9a1af56e68107d0d8b8",
"md5": "d92f8de25cf3e2fda399799f65fc5498",
"sha256": "aa0bb9afa799c0301b2760e9af99083a2b08f655c55037945b6a5e227566adc1"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d92f8de25cf3e2fda399799f65fc5498",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 982893,
"upload_time": "2024-12-19T16:33:57",
"upload_time_iso_8601": "2024-12-19T16:33:57.375761Z",
"url": "https://files.pythonhosted.org/packages/d6/0d/39708ddc80b1b4ecbae98cc97682a05471bf04a0a9a1af56e68107d0d8b8/dulwich-0.22.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97fee8a06129a5ba6fe02e75d6545dfd7a995b4fb7c509dca6f8813c530d854e",
"md5": "e01263b7374a01051d381c9d8510017b",
"sha256": "62027dfccee97268eadf0c54df3d72ce30e4402cf5cf06c021e474b9a9eb3536"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e01263b7374a01051d381c9d8510017b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1026955,
"upload_time": "2024-12-19T16:34:00",
"upload_time_iso_8601": "2024-12-19T16:34:00.098921Z",
"url": "https://files.pythonhosted.org/packages/97/fe/e8a06129a5ba6fe02e75d6545dfd7a995b4fb7c509dca6f8813c530d854e/dulwich-0.22.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8bbbe688fc50f145b59fc5a4afb34ded8ff0d91ce9769f7cb22233418aed9f42",
"md5": "ac7705867d8b975bcaaea77c701af559",
"sha256": "637a9ac27512b8c04e6a29bf92e3f73386cd85dfe8609f523ffbc96e659bde4b"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "ac7705867d8b975bcaaea77c701af559",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 583507,
"upload_time": "2024-12-19T16:34:01",
"upload_time_iso_8601": "2024-12-19T16:34:01.749025Z",
"url": "https://files.pythonhosted.org/packages/8b/bb/e688fc50f145b59fc5a4afb34ded8ff0d91ce9769f7cb22233418aed9f42/dulwich-0.22.7-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2adb0cce46bd9e04402e3abfb68f761e9f3c46c3e8bd589836802f0812913fc8",
"md5": "60466065144ba5f52e6c9f52d07be669",
"sha256": "986943e27a5c94c0be42fdcc688be1ae1a1349a3dbaa773fa7f9bdada1232b68"
},
"downloads": -1,
"filename": "dulwich-0.22.7-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "60466065144ba5f52e6c9f52d07be669",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 600306,
"upload_time": "2024-12-19T16:34:03",
"upload_time_iso_8601": "2024-12-19T16:34:03.682972Z",
"url": "https://files.pythonhosted.org/packages/2a/db/0cce46bd9e04402e3abfb68f761e9f3c46c3e8bd589836802f0812913fc8/dulwich-0.22.7-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3df2dcc0ff758df195ffa1361a788d2f5d72b7c339c35fc7a6acaa6b9cc90630",
"md5": "0107a93d4ba484763ab39d9a02c654b6",
"sha256": "b25848041c51d09affafd2708236205cc4483bed8f7f43ecbe63b6a66b447604"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "0107a93d4ba484763ab39d9a02c654b6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 921953,
"upload_time": "2024-12-19T16:34:05",
"upload_time_iso_8601": "2024-12-19T16:34:05.248122Z",
"url": "https://files.pythonhosted.org/packages/3d/f2/dcc0ff758df195ffa1361a788d2f5d72b7c339c35fc7a6acaa6b9cc90630/dulwich-0.22.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "823d058047b38f09307a871ca1f901a891c2d3ab28bda0cf71923d9d0c91ae23",
"md5": "80dd0808dd6df67ba2b4ea9b95ebe908",
"sha256": "71b20bd6a25658e968e813eb69164332d3a2ab6029b51d3c6af8b64f2471847a"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "80dd0808dd6df67ba2b4ea9b95ebe908",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 975113,
"upload_time": "2024-12-19T16:34:09",
"upload_time_iso_8601": "2024-12-19T16:34:09.868960Z",
"url": "https://files.pythonhosted.org/packages/82/3d/058047b38f09307a871ca1f901a891c2d3ab28bda0cf71923d9d0c91ae23/dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5a968bcfc3a6d8cfb9a78a133d4bbb296c64b52d199a7e77fa8ee6018d65407e",
"md5": "17aac60a5fdd669e9b29b611a57c0936",
"sha256": "c68ab3540809bedcdd9b99e51c12adf11c2ab26554f74d899d8cf55bfa2639a6"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "17aac60a5fdd669e9b29b611a57c0936",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 983915,
"upload_time": "2024-12-19T16:34:11",
"upload_time_iso_8601": "2024-12-19T16:34:11.529834Z",
"url": "https://files.pythonhosted.org/packages/5a/96/8bcfc3a6d8cfb9a78a133d4bbb296c64b52d199a7e77fa8ee6018d65407e/dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac30b3e02da46e5f0cafad3802ad094b2a635f76781a13853b80435753b19925",
"md5": "7b24820e9d72a343c239b0d3f51d91a3",
"sha256": "257abd49a768a52cf7f508daf2d30fe73f54fd32b7a674abd43817f66b0ca17b"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "7b24820e9d72a343c239b0d3f51d91a3",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 1027918,
"upload_time": "2024-12-19T16:34:13",
"upload_time_iso_8601": "2024-12-19T16:34:13.158463Z",
"url": "https://files.pythonhosted.org/packages/ac/30/b3e02da46e5f0cafad3802ad094b2a635f76781a13853b80435753b19925/dulwich-0.22.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "964ea18e189e23c1245fec83c1d67bf58b7ebff8ef62d9733bc0dc24a5ee0d92",
"md5": "26212ffb149ed82776352bcd3e7bf39a",
"sha256": "8dd5df3919c648887e550e836f87b4b83f1429876adce5ead5b5977e333c874d"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "26212ffb149ed82776352bcd3e7bf39a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.9",
"size": 602175,
"upload_time": "2024-12-19T16:34:15",
"upload_time_iso_8601": "2024-12-19T16:34:15.793104Z",
"url": "https://files.pythonhosted.org/packages/96/4e/a18e189e23c1245fec83c1d67bf58b7ebff8ef62d9733bc0dc24a5ee0d92/dulwich-0.22.7-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7c0cc08ef17732f78ff5a23826bc5773dcf17cc503e4353091ab7fd525e6a6f",
"md5": "51a1e06dd0b2fc062cf17379aaa4a169",
"sha256": "5ada6a2fd400a4f51adfedd0267bfb08c61e2d9846c18ea653b0eb88a7b851d0"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "51a1e06dd0b2fc062cf17379aaa4a169",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 921545,
"upload_time": "2024-12-19T16:34:19",
"upload_time_iso_8601": "2024-12-19T16:34:19.135286Z",
"url": "https://files.pythonhosted.org/packages/c7/c0/cc08ef17732f78ff5a23826bc5773dcf17cc503e4353091ab7fd525e6a6f/dulwich-0.22.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b273992c1eba4a3f629e21188568f8902afdae2073b72562d5d63cf63c95e23b",
"md5": "430caeea8dd96d5d8daa6a08c8b3c147",
"sha256": "007d8160b511bb149d31c08548307982f6ce752a46e7088b020517de00c3bd46"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "430caeea8dd96d5d8daa6a08c8b3c147",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 976107,
"upload_time": "2024-12-19T16:34:20",
"upload_time_iso_8601": "2024-12-19T16:34:20.732960Z",
"url": "https://files.pythonhosted.org/packages/b2/73/992c1eba4a3f629e21188568f8902afdae2073b72562d5d63cf63c95e23b/dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08ef74ca64cd83294250a02a6893dfdac0a3f85f487056cd7cc6291afa3da38f",
"md5": "f76ff6385a8a56bb9ac8de3cfe5b93c8",
"sha256": "40260034a6ecc3141a0d42360e888a73e58b9c0c9363c454cae182957fe602ac"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f76ff6385a8a56bb9ac8de3cfe5b93c8",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 984388,
"upload_time": "2024-12-19T16:34:22",
"upload_time_iso_8601": "2024-12-19T16:34:22.576323Z",
"url": "https://files.pythonhosted.org/packages/08/ef/74ca64cd83294250a02a6893dfdac0a3f85f487056cd7cc6291afa3da38f/dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f5392afc6c2def2b8da2a6c8213975b5900e0c5ad6ec3fc9ccae256c3b6fbc3d",
"md5": "3847eb349768775b572870718503a2c5",
"sha256": "753eec461434f0ccbe0956ec825250e12230e8f1b365c8be1604386d94c2d8d0"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3847eb349768775b572870718503a2c5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 1029734,
"upload_time": "2024-12-19T16:34:24",
"upload_time_iso_8601": "2024-12-19T16:34:24.237462Z",
"url": "https://files.pythonhosted.org/packages/f5/39/2afc6c2def2b8da2a6c8213975b5900e0c5ad6ec3fc9ccae256c3b6fbc3d/dulwich-0.22.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "333f85c6c96c8e1b798aa9997dd049e3dee3c9cbc596fd3552232e045270aede",
"md5": "fafeef48a1ff020e83ebcd03d8d1c21c",
"sha256": "7649f0c9b4760d72768805155e66579761f282fdca123e351019c85efce811eb"
},
"downloads": -1,
"filename": "dulwich-0.22.7-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "fafeef48a1ff020e83ebcd03d8d1c21c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 603454,
"upload_time": "2024-12-19T16:34:25",
"upload_time_iso_8601": "2024-12-19T16:34:25.966850Z",
"url": "https://files.pythonhosted.org/packages/33/3f/85c6c96c8e1b798aa9997dd049e3dee3c9cbc596fd3552232e045270aede/dulwich-0.22.7-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3bd3375c175ffdf4e0adf1cac737f79cbe1abe933862a3e54796cdba41fa4fd3",
"md5": "1949291487ce188d528a7b3aa0a44fda",
"sha256": "10c5ee20430714ea6a79dde22c1f77078848930d27021aa810204738bc175e95"
},
"downloads": -1,
"filename": "dulwich-0.22.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "1949291487ce188d528a7b3aa0a44fda",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 265745,
"upload_time": "2024-12-19T16:34:28",
"upload_time_iso_8601": "2024-12-19T16:34:28.904385Z",
"url": "https://files.pythonhosted.org/packages/3b/d3/375c175ffdf4e0adf1cac737f79cbe1abe933862a3e54796cdba41fa4fd3/dulwich-0.22.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6757b4962be0410cf15dc7758fcc40337d09515cc74ac15e45d304f8b70c9b40",
"md5": "02b457c9387d08758b1e06fd5b4a9048",
"sha256": "d53935832dd182d4c1415042187093efcee988af5cd397fb1f394f5bb27f0707"
},
"downloads": -1,
"filename": "dulwich-0.22.7.tar.gz",
"has_sig": false,
"md5_digest": "02b457c9387d08758b1e06fd5b4a9048",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 452893,
"upload_time": "2024-12-19T16:34:30",
"upload_time_iso_8601": "2024-12-19T16:34:30.414883Z",
"url": "https://files.pythonhosted.org/packages/67/57/b4962be0410cf15dc7758fcc40337d09515cc74ac15e45d304f8b70c9b40/dulwich-0.22.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-19 16:34:30",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "dulwich",
"github_project": "dulwich",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"requirements": [
{
"name": "urllib3",
"specs": [
[
">=",
"1.23"
]
]
}
],
"tox": true,
"lcname": "dulwich"
}