dulwich


Namedulwich JSON
Version 0.22.1 PyPI version JSON
download
home_pageNone
SummaryPython Git Library
upload_time2024-04-23 11:50:18
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseApachev2 or later or GPLv2
keywords vcs git
VCS
bugtrack_url
requirements urllib3
Travis-CI No Travis.
coveralls test coverage
            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.

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

Installation
------------

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

If you don't want to install the Rust bindings, specify the --pure argument to setup.py::

    $ python setup.py --pure install

or if you are installing from pip::

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

Note that you can also specify --build-option in a
`requirements.txt <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.6 and later and
Pypy.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "dulwich",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "vcs, git",
    "author": null,
    "author_email": "Jelmer Vernooij <jelmer@jelmer.uk>",
    "download_url": "https://files.pythonhosted.org/packages/cf/ac/cf6420b90832c4ffbc88b92962dd0167c58632c2b8d508d5baf4ecb0c61d/dulwich-0.22.1.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\nThe project is named after the part of London that Mr. and Mrs. Git live in\nin the particular Monty Python sketch.\n\nInstallation\n------------\n\nBy default, Dulwich' setup.py will attempt to build and install the optional C\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.6 and later and\nPypy.\n",
    "bugtrack_url": null,
    "license": "Apachev2 or later or GPLv2",
    "summary": "Python Git Library",
    "version": "0.22.1",
    "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": "002673b93a822e5b80392f9957718fb48d2e3ae68fc03622515d1f640ea05070",
                "md5": "83f816c246d2c2693f9694449e6c0a7b",
                "sha256": "892914dc2e80403d16e59a3b440044f6092fde5ffd4ec1fdf36d6ff20a8e624d"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83f816c246d2c2693f9694449e6c0a7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 881774,
            "upload_time": "2024-04-23T11:48:16",
            "upload_time_iso_8601": "2024-04-23T11:48:16.856871Z",
            "url": "https://files.pythonhosted.org/packages/00/26/73b93a822e5b80392f9957718fb48d2e3ae68fc03622515d1f640ea05070/dulwich-0.22.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6245c663da77e3799057e561432b74967f3348cc985a2bdab433a7b01106611c",
                "md5": "99be043b10706e56ef91383889522aa7",
                "sha256": "b03092399f0f5d3e112405b890128afdb9e1f203eafb812f5d9105b0f5fac9d4"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99be043b10706e56ef91383889522aa7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 979129,
            "upload_time": "2024-04-23T11:48:20",
            "upload_time_iso_8601": "2024-04-23T11:48:20.385731Z",
            "url": "https://files.pythonhosted.org/packages/62/45/c663da77e3799057e561432b74967f3348cc985a2bdab433a7b01106611c/dulwich-0.22.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e51fe800a6effe2195b67119497979d45a68d38d0ae18705b107e5cfc231788",
                "md5": "c6aca496c5779bb9f38470d7e6c567b0",
                "sha256": "a2c790517ed884bc1b1590806222ab44989eeb7e7f14dfa915561c7ee3b9ac73"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c6aca496c5779bb9f38470d7e6c567b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1031606,
            "upload_time": "2024-04-23T11:48:23",
            "upload_time_iso_8601": "2024-04-23T11:48:23.316953Z",
            "url": "https://files.pythonhosted.org/packages/3e/51/fe800a6effe2195b67119497979d45a68d38d0ae18705b107e5cfc231788/dulwich-0.22.1-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": "97e213496538bf3c3cb2b468233d59322fc0644d69f0201ff07ee1577d1c185a",
                "md5": "69578a32c960adb4cf0469ecea5e702b",
                "sha256": "524d3497a86f79959c9c1d729715d60d8171ed3f71621d45afb4faee5a47e8a1"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "69578a32c960adb4cf0469ecea5e702b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 591267,
            "upload_time": "2024-04-23T11:48:26",
            "upload_time_iso_8601": "2024-04-23T11:48:26.049965Z",
            "url": "https://files.pythonhosted.org/packages/97/e2/13496538bf3c3cb2b468233d59322fc0644d69f0201ff07ee1577d1c185a/dulwich-0.22.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d6bf8aa44ec32016f20bb4f203ce686a8591fd51fcf1ccbdad9227ba0b054b2",
                "md5": "13b1bbb33a466534c1aee171fd64d822",
                "sha256": "d3146843b972f744aed551e8ac9fac5714baa864393e480586d467b7b4488426"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "13b1bbb33a466534c1aee171fd64d822",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 600638,
            "upload_time": "2024-04-23T11:48:28",
            "upload_time_iso_8601": "2024-04-23T11:48:28.022052Z",
            "url": "https://files.pythonhosted.org/packages/3d/6b/f8aa44ec32016f20bb4f203ce686a8591fd51fcf1ccbdad9227ba0b054b2/dulwich-0.22.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7ec615127a8b85c6f10f12f61b443743c280dca101aad77158162846c473621",
                "md5": "de1bf413665b814c784b09e5a064723a",
                "sha256": "82f26e592e9a36ab33bcdb419c7d53320e26c85dfc254cdb84f5f561a2fcaabf"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de1bf413665b814c784b09e5a064723a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 881948,
            "upload_time": "2024-04-23T11:48:29",
            "upload_time_iso_8601": "2024-04-23T11:48:29.975369Z",
            "url": "https://files.pythonhosted.org/packages/c7/ec/615127a8b85c6f10f12f61b443743c280dca101aad77158162846c473621/dulwich-0.22.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f28bece8483dcd93f868b2bd0dfb81881f20d022f0314a0502a33b52e11b8e95",
                "md5": "b99e2c3c44839a356540268b9bd95021",
                "sha256": "e90b8a2f24149c5803b733a24f1a016a2943b1f5a9ab2360db545e4638354c35"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b99e2c3c44839a356540268b9bd95021",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 978614,
            "upload_time": "2024-04-23T11:48:32",
            "upload_time_iso_8601": "2024-04-23T11:48:32.765166Z",
            "url": "https://files.pythonhosted.org/packages/f2/8b/ece8483dcd93f868b2bd0dfb81881f20d022f0314a0502a33b52e11b8e95/dulwich-0.22.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f79a3a2c58f9b3385744ea77a59bfe5faf9353c5f3be787b04ff3d39037e6898",
                "md5": "aaa7b18cfb7070c7ae572aac54e11ff8",
                "sha256": "b069639757b2f287f9cd0daf6765b536558c5e28263bbbb28e3d1925bce75400"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "aaa7b18cfb7070c7ae572aac54e11ff8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1031214,
            "upload_time": "2024-04-23T11:48:34",
            "upload_time_iso_8601": "2024-04-23T11:48:34.733266Z",
            "url": "https://files.pythonhosted.org/packages/f7/9a/3a2c58f9b3385744ea77a59bfe5faf9353c5f3be787b04ff3d39037e6898/dulwich-0.22.1-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": "da2e34432b669a5b67f2aebdbd3cfe7b166b2c30999fe1e9b427ea7cfd02e94b",
                "md5": "b09bd81d9c16d1287ccd7cde8bcfcc77",
                "sha256": "3ae006498fea11515027a417e6e68b82e1c195d3516188ba2cc08210e3022d14"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "b09bd81d9c16d1287ccd7cde8bcfcc77",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 591359,
            "upload_time": "2024-04-23T11:48:37",
            "upload_time_iso_8601": "2024-04-23T11:48:37.543312Z",
            "url": "https://files.pythonhosted.org/packages/da/2e/34432b669a5b67f2aebdbd3cfe7b166b2c30999fe1e9b427ea7cfd02e94b/dulwich-0.22.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b470f76bacf8c4752239addb7cc35259b5e7e9f5554840f89fbccd3d82dd8154",
                "md5": "e6243b4b266ab0ff6fcbd6ef720b46b6",
                "sha256": "a18d1392eabd02f337dcba23d723a4dcca87274ce8693cf88e6320f38bc3fdcd"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e6243b4b266ab0ff6fcbd6ef720b46b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 600495,
            "upload_time": "2024-04-23T11:48:39",
            "upload_time_iso_8601": "2024-04-23T11:48:39.650466Z",
            "url": "https://files.pythonhosted.org/packages/b4/70/f76bacf8c4752239addb7cc35259b5e7e9f5554840f89fbccd3d82dd8154/dulwich-0.22.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b665e57f580d507215911735c4e0df7a702bbc359a004831b1c8fd765d4b8ba",
                "md5": "4444076a48ca23b2f2adef50a947f43c",
                "sha256": "12482e318895da9acabea7c0cc70b35d36833e7cb2def511ab3a63617f5c1af3"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4444076a48ca23b2f2adef50a947f43c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 881399,
            "upload_time": "2024-04-23T11:48:41",
            "upload_time_iso_8601": "2024-04-23T11:48:41.633547Z",
            "url": "https://files.pythonhosted.org/packages/4b/66/5e57f580d507215911735c4e0df7a702bbc359a004831b1c8fd765d4b8ba/dulwich-0.22.1-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8fbe22d7219d1ac368744f6d8185e47bd560aea6c3f8348801b09d0d8a4f481",
                "md5": "056ab7e2956c9547638a408f36a770fa",
                "sha256": "6dc42afedc8cda4f2fd15a06d2e9e41281074a02cdf31bb2e0dde4d80766a408"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "056ab7e2956c9547638a408f36a770fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 978351,
            "upload_time": "2024-04-23T11:48:44",
            "upload_time_iso_8601": "2024-04-23T11:48:44.466047Z",
            "url": "https://files.pythonhosted.org/packages/b8/fb/e22d7219d1ac368744f6d8185e47bd560aea6c3f8348801b09d0d8a4f481/dulwich-0.22.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "725811f071a56931215850ce6faed1bb5d89b3cc4c9fd410f7acb4d5b4c58a24",
                "md5": "5528034b89cd90f62ea1f2c044e4570d",
                "sha256": "e3c7774232a2c9b195bde4fb72ad71455e877a9e4e9c0b17a57b1d9bd478838c"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5528034b89cd90f62ea1f2c044e4570d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1032402,
            "upload_time": "2024-04-23T11:48:46",
            "upload_time_iso_8601": "2024-04-23T11:48:46.536759Z",
            "url": "https://files.pythonhosted.org/packages/72/58/11f071a56931215850ce6faed1bb5d89b3cc4c9fd410f7acb4d5b4c58a24/dulwich-0.22.1-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": "12d712eca79b7a1a0aaf3ef73ec27f46fbf4f8fd130735a169dc2df47cceb38b",
                "md5": "8a6b783a02946183bc16034bcb1d6d23",
                "sha256": "41dfc52db29a06fe23a5029abc3bc13503e28233b1c3a9614bc1e5c4d6adc1ce"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "8a6b783a02946183bc16034bcb1d6d23",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 591989,
            "upload_time": "2024-04-23T11:48:48",
            "upload_time_iso_8601": "2024-04-23T11:48:48.733297Z",
            "url": "https://files.pythonhosted.org/packages/12/d7/12eca79b7a1a0aaf3ef73ec27f46fbf4f8fd130735a169dc2df47cceb38b/dulwich-0.22.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbc829aa1957e9b1b2eb6606604f70033fa5f192add97063199da32cfeca67ba",
                "md5": "a0286dc955b50aeb25ff46d85bf832c0",
                "sha256": "9d19f04ecd4628a0e4587b4c4e98e040b87924c1362ae5aa27420435f05d5dd8"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a0286dc955b50aeb25ff46d85bf832c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 601498,
            "upload_time": "2024-04-23T11:48:50",
            "upload_time_iso_8601": "2024-04-23T11:48:50.679537Z",
            "url": "https://files.pythonhosted.org/packages/fb/c8/29aa1957e9b1b2eb6606604f70033fa5f192add97063199da32cfeca67ba/dulwich-0.22.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e64172229f3d79d6cdb0ace9dca1b0752b6f151a1a62d4d604516ef611765cd",
                "md5": "ad78744e8de1b0dd795bca06cd44fa3b",
                "sha256": "0d72a88c7af8fafa14c8743e8923c8d46bd0b850a0b7f5e34eb49201f1ead88e"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad78744e8de1b0dd795bca06cd44fa3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 883154,
            "upload_time": "2024-04-23T11:48:53",
            "upload_time_iso_8601": "2024-04-23T11:48:53.067531Z",
            "url": "https://files.pythonhosted.org/packages/0e/64/172229f3d79d6cdb0ace9dca1b0752b6f151a1a62d4d604516ef611765cd/dulwich-0.22.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "096b833782a4c27fad709194cf0efa2cbbaa47b1538355b47e644502f6cd553a",
                "md5": "d11c7ae7afc6524240053daa94227f7e",
                "sha256": "5e36c8a3bb09db5730b3d5014d087bce977e878825cdd7ba8285abcd81c43bc0"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d11c7ae7afc6524240053daa94227f7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 980144,
            "upload_time": "2024-04-23T11:48:55",
            "upload_time_iso_8601": "2024-04-23T11:48:55.219669Z",
            "url": "https://files.pythonhosted.org/packages/09/6b/833782a4c27fad709194cf0efa2cbbaa47b1538355b47e644502f6cd553a/dulwich-0.22.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e0c552d8105b92a4af76b179a77132831746b8c5d971465ba3a2a92bdb3aa38",
                "md5": "a056405fefa141137b5aaec96f8bc583",
                "sha256": "fd51e77ff1b4ca08bc9b09b85646a3e77f275827b7b30180d76d769ce608e64d"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a056405fefa141137b5aaec96f8bc583",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1032643,
            "upload_time": "2024-04-23T11:48:57",
            "upload_time_iso_8601": "2024-04-23T11:48:57.805840Z",
            "url": "https://files.pythonhosted.org/packages/4e/0c/552d8105b92a4af76b179a77132831746b8c5d971465ba3a2a92bdb3aa38/dulwich-0.22.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0a8a98f1b7a7b1cc2694e3feeeca8e1fd3650c54ad4bebe6cb1658cf5afa152",
                "md5": "e4b7d02bf51c8f24119a91045b1e31b8",
                "sha256": "739ef91aeb13fa2aa187d0efd46d0ac168301f54a6ef748565c42876b4b3ce71"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "e4b7d02bf51c8f24119a91045b1e31b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 591480,
            "upload_time": "2024-04-23T11:48:59",
            "upload_time_iso_8601": "2024-04-23T11:48:59.613579Z",
            "url": "https://files.pythonhosted.org/packages/b0/a8/a98f1b7a7b1cc2694e3feeeca8e1fd3650c54ad4bebe6cb1658cf5afa152/dulwich-0.22.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2407b137368ddd548a80c90112892ca6ca36562b80c67dd184c74fb2b8b06ba3",
                "md5": "3dd339d6cc834e5055f9a67b2844ce64",
                "sha256": "91966b7b48ec939e5083b03c9154fc450508056f01650ecb58724095307427f5"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3dd339d6cc834e5055f9a67b2844ce64",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 600773,
            "upload_time": "2024-04-23T11:49:02",
            "upload_time_iso_8601": "2024-04-23T11:49:02.159800Z",
            "url": "https://files.pythonhosted.org/packages/24/07/b137368ddd548a80c90112892ca6ca36562b80c67dd184c74fb2b8b06ba3/dulwich-0.22.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dc43afa7e6ff77d74dd553074cb8f20bbf30db9cd9274810733aa3aca82eae3",
                "md5": "7d634bf51313e3dd263e37f8b252888d",
                "sha256": "86be1e283d78cc3f7daee1dcd0254122160cde71ca8c5348315156045f8ac2bb"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d634bf51313e3dd263e37f8b252888d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 883402,
            "upload_time": "2024-04-23T11:49:04",
            "upload_time_iso_8601": "2024-04-23T11:49:04.627145Z",
            "url": "https://files.pythonhosted.org/packages/9d/c4/3afa7e6ff77d74dd553074cb8f20bbf30db9cd9274810733aa3aca82eae3/dulwich-0.22.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7389f2bbe2aa8cc0f065ca1c4418989479f7e14ce9e2dd0611ac65a0cf73b9e7",
                "md5": "4888eea2b565e56e7e1f935e2232aeee",
                "sha256": "926d671654a2f8cfa0b2fcb6b0c46833af95b5265d27a5c56c49c5a10f3ff3ba"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4888eea2b565e56e7e1f935e2232aeee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 980279,
            "upload_time": "2024-04-23T11:49:06",
            "upload_time_iso_8601": "2024-04-23T11:49:06.422613Z",
            "url": "https://files.pythonhosted.org/packages/73/89/f2bbe2aa8cc0f065ca1c4418989479f7e14ce9e2dd0611ac65a0cf73b9e7/dulwich-0.22.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16fe1978621f0a35239973d42a02bd5ba04ea117bcf9572705efb5a50b3f1dca",
                "md5": "9671d04228ff06249ef584e7da5ceea0",
                "sha256": "467ff87fc4c61a23424b32acd952476ba17e7f7eeb8090e5957f68129784a35f"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9671d04228ff06249ef584e7da5ceea0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1033148,
            "upload_time": "2024-04-23T11:49:08",
            "upload_time_iso_8601": "2024-04-23T11:49:08.617199Z",
            "url": "https://files.pythonhosted.org/packages/16/fe/1978621f0a35239973d42a02bd5ba04ea117bcf9572705efb5a50b3f1dca/dulwich-0.22.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3176ae54845eef2a120c73cfee507832730bd3cd5df3a17c4c3f6ce2714285d9",
                "md5": "e21e7cabfdd34892da672b246dad405a",
                "sha256": "f9e10678fe0692c5167553981d97cbe342ed055c49016aef10da336e2962b1f2"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "e21e7cabfdd34892da672b246dad405a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 592110,
            "upload_time": "2024-04-23T11:49:11",
            "upload_time_iso_8601": "2024-04-23T11:49:11.123174Z",
            "url": "https://files.pythonhosted.org/packages/31/76/ae54845eef2a120c73cfee507832730bd3cd5df3a17c4c3f6ce2714285d9/dulwich-0.22.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b1ba5aae4cfb25e8bd17dd224a663e26efb7e91fccc1d392dad9df98bf2ace4",
                "md5": "e6989d124a6edbbb1c73085f05a67eec",
                "sha256": "6386165c64ba5f61c416301f7f32bb899f8200ca575d76888697a42fda8a92d2"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e6989d124a6edbbb1c73085f05a67eec",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 600785,
            "upload_time": "2024-04-23T11:49:13",
            "upload_time_iso_8601": "2024-04-23T11:49:13.930049Z",
            "url": "https://files.pythonhosted.org/packages/1b/1b/a5aae4cfb25e8bd17dd224a663e26efb7e91fccc1d392dad9df98bf2ace4/dulwich-0.22.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "461d4886fcb3253c8271c158c994caafdb5f49b453fcfbfc5c3f957a52126eff",
                "md5": "1ca248f046d8af37d03c5830a5482ba0",
                "sha256": "84db8aef08df6431b017cc3abe57b3d6885fd7436eec8d715603c309353b233c"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ca248f046d8af37d03c5830a5482ba0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 883899,
            "upload_time": "2024-04-23T11:49:16",
            "upload_time_iso_8601": "2024-04-23T11:49:16.209356Z",
            "url": "https://files.pythonhosted.org/packages/46/1d/4886fcb3253c8271c158c994caafdb5f49b453fcfbfc5c3f957a52126eff/dulwich-0.22.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b480f639107128c501df8ab211d8a139e2252fb30130e1c2405eed0b10cb0518",
                "md5": "9d4e00f02b7a39baac37ab4ce74b9111",
                "sha256": "155124219e6ce4b116d30ed1b9cc63c88021966b29ce761d3ce3caba064f9a13"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d4e00f02b7a39baac37ab4ce74b9111",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 981088,
            "upload_time": "2024-04-23T11:49:19",
            "upload_time_iso_8601": "2024-04-23T11:49:19.227557Z",
            "url": "https://files.pythonhosted.org/packages/b4/80/f639107128c501df8ab211d8a139e2252fb30130e1c2405eed0b10cb0518/dulwich-0.22.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56891c77fddea887157de32f72667d70c79fe10c22d309df8c051bbe20a78e05",
                "md5": "8579d8a0d8df427f1baaf352a0ecd1b0",
                "sha256": "7579429e89deac6659b4ea70eb3de9063bb40508fd4a8a020fa67b02e0b59f4f"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8579d8a0d8df427f1baaf352a0ecd1b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1033354,
            "upload_time": "2024-04-23T11:49:21",
            "upload_time_iso_8601": "2024-04-23T11:49:21.442107Z",
            "url": "https://files.pythonhosted.org/packages/56/89/1c77fddea887157de32f72667d70c79fe10c22d309df8c051bbe20a78e05/dulwich-0.22.1-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": "fe1dcaf9e98de14398329146bb31382b5fba977cb86200252c6d212f771c0cfa",
                "md5": "a72f5725739cab8fa8431a35d29a6016",
                "sha256": "454d073e628043dde4f9bd34517736c1889dbe6417099bbae2119873b8d4d5da"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "a72f5725739cab8fa8431a35d29a6016",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 592962,
            "upload_time": "2024-04-23T11:49:23",
            "upload_time_iso_8601": "2024-04-23T11:49:23.704342Z",
            "url": "https://files.pythonhosted.org/packages/fe/1d/caf9e98de14398329146bb31382b5fba977cb86200252c6d212f771c0cfa/dulwich-0.22.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d92aaf6c060fc07a063fdb6a4d0016c3aba1ff1070ae8fd0f667ebef97a30946",
                "md5": "6fc5ab45aab05ec05d1f33849db2d27b",
                "sha256": "e1b51d26108a832f151da8856a93676cc1a5cd8dd0bc20f06f4aee5774a7f0f9"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6fc5ab45aab05ec05d1f33849db2d27b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 601338,
            "upload_time": "2024-04-23T11:49:25",
            "upload_time_iso_8601": "2024-04-23T11:49:25.713912Z",
            "url": "https://files.pythonhosted.org/packages/d9/2a/af6c060fc07a063fdb6a4d0016c3aba1ff1070ae8fd0f667ebef97a30946/dulwich-0.22.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47c575178198afa2efc3067e11b5bc6882924153c0fe68d53c00ef9d367fd27b",
                "md5": "3362617059210aaf9ad0faece3cbf2ae",
                "sha256": "4c509e8172b9438536946097768413f297229b03eff064e4e06749cf5c28df78"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3362617059210aaf9ad0faece3cbf2ae",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 884916,
            "upload_time": "2024-04-23T11:49:28",
            "upload_time_iso_8601": "2024-04-23T11:49:28.020777Z",
            "url": "https://files.pythonhosted.org/packages/47/c5/75178198afa2efc3067e11b5bc6882924153c0fe68d53c00ef9d367fd27b/dulwich-0.22.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0770bc219e8b67fd403cd2252c365f489caa83f311f9511f13c3d3ee116ad9be",
                "md5": "997c0180ee3ba66dcd2da31321ecf27d",
                "sha256": "64eebe1d709539d6e80440fa1185f1eeb260d53bcb6435b1f753b4ce90a65e82"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "997c0180ee3ba66dcd2da31321ecf27d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 981896,
            "upload_time": "2024-04-23T11:49:31",
            "upload_time_iso_8601": "2024-04-23T11:49:31.672669Z",
            "url": "https://files.pythonhosted.org/packages/07/70/bc219e8b67fd403cd2252c365f489caa83f311f9511f13c3d3ee116ad9be/dulwich-0.22.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9dece9723ba935e1b19576d4cac91db13098763cc257e8ab41d529a6ad8ff48a",
                "md5": "3a47920069ec67072d87361a8744d2be",
                "sha256": "52a8ddd1d9b5681de216a7af718720f5202d3c093ecc10dd4dfac6d25da605a6"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3a47920069ec67072d87361a8744d2be",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1035884,
            "upload_time": "2024-04-23T11:49:36",
            "upload_time_iso_8601": "2024-04-23T11:49:36.595626Z",
            "url": "https://files.pythonhosted.org/packages/9d/ec/e9723ba935e1b19576d4cac91db13098763cc257e8ab41d529a6ad8ff48a/dulwich-0.22.1-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": "3c81845928fb5afe6513ccab72b9fcb7a14c1493821288e34be71be5edd3ce8d",
                "md5": "e4be77d949441408e7ba2e020e8eb452",
                "sha256": "7244b796dd7e191753b822ac0ca871a4b9139b0b850770ac5bd347d5f8c76768"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e4be77d949441408e7ba2e020e8eb452",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 603444,
            "upload_time": "2024-04-23T11:49:40",
            "upload_time_iso_8601": "2024-04-23T11:49:40.484518Z",
            "url": "https://files.pythonhosted.org/packages/3c/81/845928fb5afe6513ccab72b9fcb7a14c1493821288e34be71be5edd3ce8d/dulwich-0.22.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd7dd5626e2ee69c901237e5f63eccf2807b8de4979173b4031d807dc9770eb2",
                "md5": "d743506908c74eac9d17415e2a8f25bc",
                "sha256": "e7798e842ec506d25f21e825259b70109325ac1c9b43c2e287aad7559455951b"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d743506908c74eac9d17415e2a8f25bc",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 892104,
            "upload_time": "2024-04-23T11:49:45",
            "upload_time_iso_8601": "2024-04-23T11:49:45.049173Z",
            "url": "https://files.pythonhosted.org/packages/bd/7d/d5626e2ee69c901237e5f63eccf2807b8de4979173b4031d807dc9770eb2/dulwich-0.22.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c917ce1ac061d544c9682a7bd123f76ffa1ee9f4edf740cedd25ffcf760bc6b0",
                "md5": "bc16582a30415d621f00371b04577bdb",
                "sha256": "ac9fcf7c5cf1e9d0bcc643672f81bf43ec81f6495b99809649f5bfcdff633ab0"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc16582a30415d621f00371b04577bdb",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 989862,
            "upload_time": "2024-04-23T11:49:48",
            "upload_time_iso_8601": "2024-04-23T11:49:48.637296Z",
            "url": "https://files.pythonhosted.org/packages/c9/17/ce1ac061d544c9682a7bd123f76ffa1ee9f4edf740cedd25ffcf760bc6b0/dulwich-0.22.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "918e6df20ce900fd1988841fc31e7dca186d064f3b0b8bb133a2631b8604eb7f",
                "md5": "e942898ace85b7d23d2807d4aea380d6",
                "sha256": "e346c1b86c5e5f175ca8f87f3873eea8b2e0eeb5d52033b475cf85641cb200c2"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e942898ace85b7d23d2807d4aea380d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 1045521,
            "upload_time": "2024-04-23T11:49:53",
            "upload_time_iso_8601": "2024-04-23T11:49:53.781495Z",
            "url": "https://files.pythonhosted.org/packages/91/8e/6df20ce900fd1988841fc31e7dca186d064f3b0b8bb133a2631b8604eb7f/dulwich-0.22.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76f2d3e593ad0d98c03ed6e3e3306cecff42052411707d33501625a2030fbfc2",
                "md5": "88fafb8103079160fc7918d5a5e7cf83",
                "sha256": "b2054e1f2c7041857ce129443bde23298ca37592ce82f0fb5ed5704d5f3708dd"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "88fafb8103079160fc7918d5a5e7cf83",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 609704,
            "upload_time": "2024-04-23T11:49:57",
            "upload_time_iso_8601": "2024-04-23T11:49:57.552669Z",
            "url": "https://files.pythonhosted.org/packages/76/f2/d3e593ad0d98c03ed6e3e3306cecff42052411707d33501625a2030fbfc2/dulwich-0.22.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a18177b464b0e8cc1f1a21bc39b5cc6b18f9ccd81c63f4b4ded9ed64e5e6e8a",
                "md5": "d4be41bc68f98df2f425b96f49847e23",
                "sha256": "3ad3462d070b678fe61d3bdd7c6ac3fdbd25cca66f32b6edf589dd88fff251d2"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4be41bc68f98df2f425b96f49847e23",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 886247,
            "upload_time": "2024-04-23T11:50:00",
            "upload_time_iso_8601": "2024-04-23T11:50:00.368507Z",
            "url": "https://files.pythonhosted.org/packages/3a/18/177b464b0e8cc1f1a21bc39b5cc6b18f9ccd81c63f4b4ded9ed64e5e6e8a/dulwich-0.22.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b662626f9744c6fd8d14bdd812aeb6fb00f21e01f7fd6a7d52e2024e0efb0263",
                "md5": "858279a15425480893d1d5bb2e21dded",
                "sha256": "1bc6575476539c0b4924abab3896fc76be2f413d5baa6b083c4dfc4abc59329e"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "858279a15425480893d1d5bb2e21dded",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 983286,
            "upload_time": "2024-04-23T11:50:02",
            "upload_time_iso_8601": "2024-04-23T11:50:02.844293Z",
            "url": "https://files.pythonhosted.org/packages/b6/62/626f9744c6fd8d14bdd812aeb6fb00f21e01f7fd6a7d52e2024e0efb0263/dulwich-0.22.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3c4d20269cb128c0e04ded43e7815dfd4549f801cb4b1f94681d5da54ea0221",
                "md5": "a28a7971507b035f04d48cca323a36f8",
                "sha256": "3de7a2eba26ff13a79670f78f73fc86fb8c87100508119f3b6bd61451bfdd4bf"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a28a7971507b035f04d48cca323a36f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 1037115,
            "upload_time": "2024-04-23T11:50:05",
            "upload_time_iso_8601": "2024-04-23T11:50:05.129165Z",
            "url": "https://files.pythonhosted.org/packages/d3/c4/d20269cb128c0e04ded43e7815dfd4549f801cb4b1f94681d5da54ea0221/dulwich-0.22.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0ea6aa4c99eabb6e53a8d03b78d2e9d7c84fc5ea423ffcb41ec07e4baf8fdf7",
                "md5": "709e0895d1df69f22a7c90166086814b",
                "sha256": "b2c3186cf76d598a9d42b35e09ef35d499118b4197624ba5bba1b3a39ac6a75f"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "709e0895d1df69f22a7c90166086814b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 604709,
            "upload_time": "2024-04-23T11:50:07",
            "upload_time_iso_8601": "2024-04-23T11:50:07.405479Z",
            "url": "https://files.pythonhosted.org/packages/f0/ea/6aa4c99eabb6e53a8d03b78d2e9d7c84fc5ea423ffcb41ec07e4baf8fdf7/dulwich-0.22.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "378be5739d4a20bdd49eb5fae687f035e4a68b58094b385c06e32447f9a99e6e",
                "md5": "0cb7b5c3ad054b7236a327fa8d52c870",
                "sha256": "3a366cdba24b8df31ad70b82bae55baa696c453678c1346da8390396a1d5cce4"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cb7b5c3ad054b7236a327fa8d52c870",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 886654,
            "upload_time": "2024-04-23T11:50:09",
            "upload_time_iso_8601": "2024-04-23T11:50:09.512568Z",
            "url": "https://files.pythonhosted.org/packages/37/8b/e5739d4a20bdd49eb5fae687f035e4a68b58094b385c06e32447f9a99e6e/dulwich-0.22.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44ee674ca2327442fa7775aa62621e4919026212066f2ab0ae42b1f7019ac98a",
                "md5": "7610d1422dc6eba43ba62e6b76d14a53",
                "sha256": "3fb61891b2675664dc89d486eb5199e3659179ae04fc0a863ffc7e16b782b624"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7610d1422dc6eba43ba62e6b76d14a53",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 983788,
            "upload_time": "2024-04-23T11:50:11",
            "upload_time_iso_8601": "2024-04-23T11:50:11.382804Z",
            "url": "https://files.pythonhosted.org/packages/44/ee/674ca2327442fa7775aa62621e4919026212066f2ab0ae42b1f7019ac98a/dulwich-0.22.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4c88eed576ddf00c0f20813eed45b35dfca402f2b13488c4ae1daff6f53b789",
                "md5": "1869fbeeeed0c34ea6ccf40d14cfa4b1",
                "sha256": "0ea4c5feedd35e8bde175a9ab91ef6705c3cef5ee209eeb2f67dd0b59ff1825f"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1869fbeeeed0c34ea6ccf40d14cfa4b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1036865,
            "upload_time": "2024-04-23T11:50:13",
            "upload_time_iso_8601": "2024-04-23T11:50:13.593953Z",
            "url": "https://files.pythonhosted.org/packages/c4/c8/8eed576ddf00c0f20813eed45b35dfca402f2b13488c4ae1daff6f53b789/dulwich-0.22.1-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": "9dc5ab7a7609ff7e7ad7eb3e65a4a16a957cee30852906797a76fb758cfd35de",
                "md5": "61136717043877408463daaf52805da4",
                "sha256": "20f61f6dc0b075ca6459acbfb9527ee0e1ee02dccbed126dc492600bb7310d86"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "61136717043877408463daaf52805da4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 604674,
            "upload_time": "2024-04-23T11:50:15",
            "upload_time_iso_8601": "2024-04-23T11:50:15.738755Z",
            "url": "https://files.pythonhosted.org/packages/9d/c5/ab7a7609ff7e7ad7eb3e65a4a16a957cee30852906797a76fb758cfd35de/dulwich-0.22.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfaccf6420b90832c4ffbc88b92962dd0167c58632c2b8d508d5baf4ecb0c61d",
                "md5": "08e441d9f3c978a89ce682bfcc101dda",
                "sha256": "e36d85967cfbf25da1c7bc3d6921adc5baa976969d926aaf1582bd5fd7e94758"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.1.tar.gz",
            "has_sig": false,
            "md5_digest": "08e441d9f3c978a89ce682bfcc101dda",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 395260,
            "upload_time": "2024-04-23T11:50:18",
            "upload_time_iso_8601": "2024-04-23T11:50:18.553015Z",
            "url": "https://files.pythonhosted.org/packages/cf/ac/cf6420b90832c4ffbc88b92962dd0167c58632c2b8d508d5baf4ecb0c61d/dulwich-0.22.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-23 11:50:18",
    "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"
}
        
Elapsed time: 0.24984s