dulwich


Namedulwich JSON
Version 0.22.6 PyPI version JSON
download
home_pageNone
SummaryPython Git Library
upload_time2024-11-18 00:43:46
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseApachev2 or later or GPLv2
keywords vcs git
VCS
bugtrack_url
requirements No requirements were recorded.
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
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.6 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/90/b2/13367fe4b4cb187cf13823040403b37d167c967675d543451caa9e9d2589/dulwich-0.22.6.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\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.6 and later and\nPypy.\n",
    "bugtrack_url": null,
    "license": "Apachev2 or later or GPLv2",
    "summary": "Python Git Library",
    "version": "0.22.6",
    "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": "95494adf174a38ea49ff7c2549ff8bcc0c0ef7f7686bfab7bcbe87b0f401375f",
                "md5": "df18ce0767905c18ecec9aa8a513f73e",
                "sha256": "43abc96dabbe79117df3862b35694a52aa0afbe4d68d3e83bcff55ac71c851cb"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "df18ce0767905c18ecec9aa8a513f73e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 894388,
            "upload_time": "2024-11-18T00:42:32",
            "upload_time_iso_8601": "2024-11-18T00:42:32.333173Z",
            "url": "https://files.pythonhosted.org/packages/95/49/4adf174a38ea49ff7c2549ff8bcc0c0ef7f7686bfab7bcbe87b0f401375f/dulwich-0.22.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74721bb277fc9a462c52a28fbdb5e8f4d30f2cfd7dd0e9e1f2fd77af7b5e95b9",
                "md5": "44122ef909beb4466708511a1afba513",
                "sha256": "2085f13dc7a0d7cae06c7fb04b06d3b2f6205029d44c41b65d37a23da0cb67cb"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "44122ef909beb4466708511a1afba513",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 973118,
            "upload_time": "2024-11-18T00:42:35",
            "upload_time_iso_8601": "2024-11-18T00:42:35.180210Z",
            "url": "https://files.pythonhosted.org/packages/74/72/1bb277fc9a462c52a28fbdb5e8f4d30f2cfd7dd0e9e1f2fd77af7b5e95b9/dulwich-0.22.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34c9778ab4e4084f2b48783712341ec162919383a989ce25b0c0abb6cd7bb314",
                "md5": "45f6c4f2c35bc05f5df054e54e6d2e9f",
                "sha256": "58c91a6409e761f8dd9fd68f28163bcb00bb7a21eebb52655a2adcaf8ee53447"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45f6c4f2c35bc05f5df054e54e6d2e9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 981758,
            "upload_time": "2024-11-18T00:42:38",
            "upload_time_iso_8601": "2024-11-18T00:42:38.371291Z",
            "url": "https://files.pythonhosted.org/packages/34/c9/778ab4e4084f2b48783712341ec162919383a989ce25b0c0abb6cd7bb314/dulwich-0.22.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fdce18aaad012d88cd1763fbeff6a618f9d3eb58971a7d3912f1341f7bfe062",
                "md5": "a7ddcc3df324b21ece1eb87ec632c5d4",
                "sha256": "ffa95d2d903f387f1a5206adb3d832013803a49e9b04c8749dd369f308f66824"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a7ddcc3df324b21ece1eb87ec632c5d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1025662,
            "upload_time": "2024-11-18T00:42:40",
            "upload_time_iso_8601": "2024-11-18T00:42:40.019295Z",
            "url": "https://files.pythonhosted.org/packages/9f/dc/e18aaad012d88cd1763fbeff6a618f9d3eb58971a7d3912f1341f7bfe062/dulwich-0.22.6-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": "9cefc718b6f76db6d45aa153cf20fc15b359b8b1b7a56c87cb595683b37ef1cc",
                "md5": "0bc9fe8274e42ef19aedf6d9f58d6abe",
                "sha256": "06b4fde8d173578a56602dd79b42d5a9121e323ebb8a68102c26a44ce2dd14dc"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "0bc9fe8274e42ef19aedf6d9f58d6abe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 584190,
            "upload_time": "2024-11-18T00:42:41",
            "upload_time_iso_8601": "2024-11-18T00:42:41.440912Z",
            "url": "https://files.pythonhosted.org/packages/9c/ef/c718b6f76db6d45aa153cf20fc15b359b8b1b7a56c87cb595683b37ef1cc/dulwich-0.22.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a28b4df289622202b8c0ec8a0a254383033ba3aca49cf367c37cbdbbffc5a3c",
                "md5": "55275040bfea8a3623ad9c24a006ae2d",
                "sha256": "dd8303b570fd439e0facbb7476a658fe865bc985eab04e9a18b7ffc0f5d56d49"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "55275040bfea8a3623ad9c24a006ae2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 600452,
            "upload_time": "2024-11-18T00:42:43",
            "upload_time_iso_8601": "2024-11-18T00:42:43.414856Z",
            "url": "https://files.pythonhosted.org/packages/5a/28/b4df289622202b8c0ec8a0a254383033ba3aca49cf367c37cbdbbffc5a3c/dulwich-0.22.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21352ee39e781f3dcda6dc925a5d0831a711b13e475dc5ad789a77959cad6a8d",
                "md5": "acdb40096413acb53f4fd67e84360fd3",
                "sha256": "737284cbf4a3de239b1962e5ec2cacf0506d2d0a857b82e9fd2b4a08b913c11e"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "acdb40096413acb53f4fd67e84360fd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 894222,
            "upload_time": "2024-11-18T00:42:45",
            "upload_time_iso_8601": "2024-11-18T00:42:45.459006Z",
            "url": "https://files.pythonhosted.org/packages/21/35/2ee39e781f3dcda6dc925a5d0831a711b13e475dc5ad789a77959cad6a8d/dulwich-0.22.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a46c25c6b14e2d3e4da79fb30d96156c43f32ce346405ddaf2548b39864f92a",
                "md5": "55a550ca9b1a338563287498a4357f2a",
                "sha256": "308446a339dcda7498a4ed2748f36ecf0e4849875df573613243ac845f781771"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "55a550ca9b1a338563287498a4357f2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 972780,
            "upload_time": "2024-11-18T00:42:47",
            "upload_time_iso_8601": "2024-11-18T00:42:47.497959Z",
            "url": "https://files.pythonhosted.org/packages/0a/46/c25c6b14e2d3e4da79fb30d96156c43f32ce346405ddaf2548b39864f92a/dulwich-0.22.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9b8b721ca21ff5226bdb7ad883b175cc4da31675f93373f0250209c1a24f269",
                "md5": "585de26d013bbea0f3a1e3cc1ecb3191",
                "sha256": "25dd3c7217887621cd2d1703329a1e00338bb8839d54137b63e44a6a2d226603"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "585de26d013bbea0f3a1e3cc1ecb3191",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 981342,
            "upload_time": "2024-11-18T00:42:50",
            "upload_time_iso_8601": "2024-11-18T00:42:50.043554Z",
            "url": "https://files.pythonhosted.org/packages/a9/b8/b721ca21ff5226bdb7ad883b175cc4da31675f93373f0250209c1a24f269/dulwich-0.22.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baf41e6f37fd09797b20291791eb3d6d2167933faa8eccc4ad42bdb5a3f6a49b",
                "md5": "c490b78fa614844cb7e0905dca4acd23",
                "sha256": "3722b8f09aef30bd30e64a7e4589eba042e530b407d98409350b629da10dd54f"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c490b78fa614844cb7e0905dca4acd23",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1025675,
            "upload_time": "2024-11-18T00:42:52",
            "upload_time_iso_8601": "2024-11-18T00:42:52.102225Z",
            "url": "https://files.pythonhosted.org/packages/ba/f4/1e6f37fd09797b20291791eb3d6d2167933faa8eccc4ad42bdb5a3f6a49b/dulwich-0.22.6-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": "6590c61e0d4f3053708ca41ee01571169985ec9d97b7f962c3be60b62146e750",
                "md5": "a3ee239e33176342047d6a5d9b85e7bd",
                "sha256": "de9fccefd61b5098ff755453975021035a8d385896edb57163050251c30ea3b6"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "a3ee239e33176342047d6a5d9b85e7bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 584442,
            "upload_time": "2024-11-18T00:42:53",
            "upload_time_iso_8601": "2024-11-18T00:42:53.534396Z",
            "url": "https://files.pythonhosted.org/packages/65/90/c61e0d4f3053708ca41ee01571169985ec9d97b7f962c3be60b62146e750/dulwich-0.22.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a86190cb4fef1db6dbdb80728eda72a3e04b3f2f7695271fa49d696e969fa767",
                "md5": "60aedb0c61283e9fe1b0b073572c10ea",
                "sha256": "eb662463f205f106776af499d054c98f408c3753a6c0eaff8612eb3f1cbf6ddb"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "60aedb0c61283e9fe1b0b073572c10ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 600344,
            "upload_time": "2024-11-18T00:42:55",
            "upload_time_iso_8601": "2024-11-18T00:42:55.613492Z",
            "url": "https://files.pythonhosted.org/packages/a8/61/90cb4fef1db6dbdb80728eda72a3e04b3f2f7695271fa49d696e969fa767/dulwich-0.22.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7a27bb254c08b81b94b2fe4bc62fc00d833852d07bface9f9f87ace1fba9905",
                "md5": "5d02e4c0c20f4bd0063db397b81ceded",
                "sha256": "db10da1719575b5b113e006b8fc9ed7bbf4fd5488db242e85dcea2191c0d4b99"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5d02e4c0c20f4bd0063db397b81ceded",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 887909,
            "upload_time": "2024-11-18T00:42:56",
            "upload_time_iso_8601": "2024-11-18T00:42:56.985310Z",
            "url": "https://files.pythonhosted.org/packages/e7/a2/7bb254c08b81b94b2fe4bc62fc00d833852d07bface9f9f87ace1fba9905/dulwich-0.22.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b6c5962e83547948dd0682bf150b8c4042f8bc119b38d9745a8ea5c4dbcd565",
                "md5": "1c956ed60e255972ecf381c3aa803f02",
                "sha256": "d6684297967833961c81333cbf105b0c2cd3f1a824873b85d60d265ec751fe57"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1c956ed60e255972ecf381c3aa803f02",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 969949,
            "upload_time": "2024-11-18T00:42:59",
            "upload_time_iso_8601": "2024-11-18T00:42:59.155338Z",
            "url": "https://files.pythonhosted.org/packages/3b/6c/5962e83547948dd0682bf150b8c4042f8bc119b38d9745a8ea5c4dbcd565/dulwich-0.22.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6994e2d849be34d6e835779d1256c16e1bea696202f3cc46c5ca57fbf3bae69c",
                "md5": "48076d5f343d21076d9749de894e49e5",
                "sha256": "6290edb86155b350a3504582570891b0a7593766d91d6b89cdd24d01061f019f"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "48076d5f343d21076d9749de894e49e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 978185,
            "upload_time": "2024-11-18T00:43:00",
            "upload_time_iso_8601": "2024-11-18T00:43:00.535974Z",
            "url": "https://files.pythonhosted.org/packages/69/94/e2d849be34d6e835779d1256c16e1bea696202f3cc46c5ca57fbf3bae69c/dulwich-0.22.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0023a59abe328103fe6c149a3b7314301d2e5f06f8acd11ec42fb03e20740906",
                "md5": "933e997f4955e4e9db412cc823476268",
                "sha256": "75e0c2ad0eb809eda2c1c1253768632e421b099245c12ffddf8a6f109c2fe32e"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "933e997f4955e4e9db412cc823476268",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1021170,
            "upload_time": "2024-11-18T00:43:01",
            "upload_time_iso_8601": "2024-11-18T00:43:01.935706Z",
            "url": "https://files.pythonhosted.org/packages/00/23/a59abe328103fe6c149a3b7314301d2e5f06f8acd11ec42fb03e20740906/dulwich-0.22.6-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": "65389c1eeae240f332d0c2cd24bacea3bded6e33a24751c0181a447a6b342a85",
                "md5": "6d862d0d74e867f3e02e9f88fd0adee9",
                "sha256": "b1a08ad0c6ae572142b7775f6fe028e0e3ac9c01a295344c41049e257c5af980"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "6d862d0d74e867f3e02e9f88fd0adee9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 582036,
            "upload_time": "2024-11-18T00:43:03",
            "upload_time_iso_8601": "2024-11-18T00:43:03.405430Z",
            "url": "https://files.pythonhosted.org/packages/65/38/9c1eeae240f332d0c2cd24bacea3bded6e33a24751c0181a447a6b342a85/dulwich-0.22.6-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8892891bb8ef5806f7f4a0c7440a5ad5341ed9b1790404a19ae7896bd2ce8a09",
                "md5": "958ab8df82230458dd707e25b65b68d5",
                "sha256": "1f0040aa840c9632b973bd98484e584bb21690738c2be1ebd23b0c5af3214b2f"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "958ab8df82230458dd707e25b65b68d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 600609,
            "upload_time": "2024-11-18T00:43:04",
            "upload_time_iso_8601": "2024-11-18T00:43:04.866267Z",
            "url": "https://files.pythonhosted.org/packages/88/92/891bb8ef5806f7f4a0c7440a5ad5341ed9b1790404a19ae7896bd2ce8a09/dulwich-0.22.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b778aebcb9a70477aef68a2ecaec3f3ceaea21e839fdebbad16f384273b139e",
                "md5": "b48bdaa465fa797a4841cfeff04d044e",
                "sha256": "dff11fe1ecd6f9d915b490c660456a467c9150404de5100b3cf112c6bd5c830d"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b48bdaa465fa797a4841cfeff04d044e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 886446,
            "upload_time": "2024-11-18T00:43:06",
            "upload_time_iso_8601": "2024-11-18T00:43:06.219066Z",
            "url": "https://files.pythonhosted.org/packages/4b/77/8aebcb9a70477aef68a2ecaec3f3ceaea21e839fdebbad16f384273b139e/dulwich-0.22.6-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fa6209e3e3e027879b5ca7c15eff2a0a557a0fc2182394b62e0bb6a96f7758e",
                "md5": "3172649f1f1836f5cd9721e233d4a957",
                "sha256": "f9e75774fe5f219490912931bb8d91a12ec5cc7155f377fd88088fe0f035e1b8"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3172649f1f1836f5cd9721e233d4a957",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 968552,
            "upload_time": "2024-11-18T00:43:08",
            "upload_time_iso_8601": "2024-11-18T00:43:08.247118Z",
            "url": "https://files.pythonhosted.org/packages/0f/a6/209e3e3e027879b5ca7c15eff2a0a557a0fc2182394b62e0bb6a96f7758e/dulwich-0.22.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cadcb9412b7bfe7ad1f7ed650c77b034206f75d3e04849a770497dafee971f83",
                "md5": "bc13226b8de4d3331b1fc5d2c63d03a9",
                "sha256": "eb5f8ff0eb0d6759cebd13cb9e6d7029af5d87f89074bd1a702c7a0943a33d6e"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc13226b8de4d3331b1fc5d2c63d03a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 976643,
            "upload_time": "2024-11-18T00:43:09",
            "upload_time_iso_8601": "2024-11-18T00:43:09.690769Z",
            "url": "https://files.pythonhosted.org/packages/ca/dc/b9412b7bfe7ad1f7ed650c77b034206f75d3e04849a770497dafee971f83/dulwich-0.22.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e46d1c14df7fdd1fd99a5d4fd2ef3a45d3f6037ac908266713821dbbf08c606b",
                "md5": "11479b5f42a7d8f4b29b18f7d6ec0589",
                "sha256": "096a9fe8754bce136e128b7161fca30ff1b2e5859f2324a7e2c8270dcb2ba672"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "11479b5f42a7d8f4b29b18f7d6ec0589",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1021379,
            "upload_time": "2024-11-18T00:43:11",
            "upload_time_iso_8601": "2024-11-18T00:43:11.713423Z",
            "url": "https://files.pythonhosted.org/packages/e4/6d/1c14df7fdd1fd99a5d4fd2ef3a45d3f6037ac908266713821dbbf08c606b/dulwich-0.22.6-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": "b67d186ab8e0288659fef5268913be0e641ea000760931d72d30691c0e6a9961",
                "md5": "cc5fcc08dcb9afb2d7fdf945cfd90be7",
                "sha256": "115920aff5756cdf02900504fe3c9b941f2f41fab5cea2670130783f02e0ae2c"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "cc5fcc08dcb9afb2d7fdf945cfd90be7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 581012,
            "upload_time": "2024-11-18T00:43:14",
            "upload_time_iso_8601": "2024-11-18T00:43:14.046255Z",
            "url": "https://files.pythonhosted.org/packages/b6/7d/186ab8e0288659fef5268913be0e641ea000760931d72d30691c0e6a9961/dulwich-0.22.6-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bb8eff74c80f52a36e22d0de2d0e9ef1cc907bc05e83c91e371e7cdfecd4bd4",
                "md5": "26115519db6e10744009edb66288db1d",
                "sha256": "4b84f9a849d64201a8e5cde024bbbf9c56d3138f284eb5cc1a937ee3503f18b0"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "26115519db6e10744009edb66288db1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 599591,
            "upload_time": "2024-11-18T00:43:15",
            "upload_time_iso_8601": "2024-11-18T00:43:15.475917Z",
            "url": "https://files.pythonhosted.org/packages/2b/b8/eff74c80f52a36e22d0de2d0e9ef1cc907bc05e83c91e371e7cdfecd4bd4/dulwich-0.22.6-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a2d5f94151ad38334c0fdb0c56c0535b1f58494bef783d677ecb8253970c813",
                "md5": "5b05dffa60a118f1ab69abd14eb02cb6",
                "sha256": "ec5d376f7f02651301b58e04888bd5d671577fc68cc7dada23793907119c22bd"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5b05dffa60a118f1ab69abd14eb02cb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 895648,
            "upload_time": "2024-11-18T00:43:16",
            "upload_time_iso_8601": "2024-11-18T00:43:16.820940Z",
            "url": "https://files.pythonhosted.org/packages/7a/2d/5f94151ad38334c0fdb0c56c0535b1f58494bef783d677ecb8253970c813/dulwich-0.22.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "943730f6228cf02358c8f14e2d3fb4b1d653edb05976007ec9560a33f367fdee",
                "md5": "416ac897de6be6d01a737808c1887cc2",
                "sha256": "8c8711a00f45d923f8febc047866fa7e845ea19bcdb930f48ddc2a121d1ed8bd"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "416ac897de6be6d01a737808c1887cc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 974051,
            "upload_time": "2024-11-18T00:43:19",
            "upload_time_iso_8601": "2024-11-18T00:43:19.021545Z",
            "url": "https://files.pythonhosted.org/packages/94/37/30f6228cf02358c8f14e2d3fb4b1d653edb05976007ec9560a33f367fdee/dulwich-0.22.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92d05081d9fbfe44bae813ce0d6403c4cee19bfeeeae6639499312540c3144e7",
                "md5": "61ef8be7bbf2eaa83b2fdd16f58c73b1",
                "sha256": "1e61b8993d5d5c63682215f67104fc75dcfd9927e214df2be5baff333bafd69a"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61ef8be7bbf2eaa83b2fdd16f58c73b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 983187,
            "upload_time": "2024-11-18T00:43:21",
            "upload_time_iso_8601": "2024-11-18T00:43:21.211758Z",
            "url": "https://files.pythonhosted.org/packages/92/d0/5081d9fbfe44bae813ce0d6403c4cee19bfeeeae6639499312540c3144e7/dulwich-0.22.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5de291e3de3e1109f108e7f8d161bcec33ea9490354b701888b794bd3c227eb1",
                "md5": "398e28ab1520f4142deb75fa27cb2b11",
                "sha256": "6fda801469f3cbd982898f224696adb4afd72f2f42bbbbfe1ded2632b3a85dba"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "398e28ab1520f4142deb75fa27cb2b11",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1026777,
            "upload_time": "2024-11-18T00:43:23",
            "upload_time_iso_8601": "2024-11-18T00:43:23.308658Z",
            "url": "https://files.pythonhosted.org/packages/5d/e2/91e3de3e1109f108e7f8d161bcec33ea9490354b701888b794bd3c227eb1/dulwich-0.22.6-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": "da25b5be7ea9259536d68592c0648a6ec265922894584138d82d51631f582dfd",
                "md5": "df1a93321811e93c5fdfae80916f8cad",
                "sha256": "0fca415dc613434a371e9058e1e7f2a1331361a23e41ebae9442b903f553bc3b"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "df1a93321811e93c5fdfae80916f8cad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 585372,
            "upload_time": "2024-11-18T00:43:24",
            "upload_time_iso_8601": "2024-11-18T00:43:24.707364Z",
            "url": "https://files.pythonhosted.org/packages/da/25/b5be7ea9259536d68592c0648a6ec265922894584138d82d51631f582dfd/dulwich-0.22.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42afe1ccf7a0a7e317188ff798744b729acae16b9572985afe08a4dfe934e2d4",
                "md5": "47619d65c74c2cec55677676083b9d14",
                "sha256": "1b883cd35f755491f79b89c70f082e9e6232361a0281642594f4a2bf8051a7dd"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "47619d65c74c2cec55677676083b9d14",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 602051,
            "upload_time": "2024-11-18T00:43:26",
            "upload_time_iso_8601": "2024-11-18T00:43:26.052535Z",
            "url": "https://files.pythonhosted.org/packages/42/af/e1ccf7a0a7e317188ff798744b729acae16b9572985afe08a4dfe934e2d4/dulwich-0.22.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a7da68e3230adeabb340044e032a8480c744246a7bbdf61558cc237a60d9d10",
                "md5": "c8a46efe800c72badf5b7fbd5b589962",
                "sha256": "e05edb22519b39f8396e5d36e23e08485d992f04d6acfdd7f4cff2ca3ba5b8c7"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c8a46efe800c72badf5b7fbd5b589962",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 920319,
            "upload_time": "2024-11-18T00:43:28",
            "upload_time_iso_8601": "2024-11-18T00:43:28.099636Z",
            "url": "https://files.pythonhosted.org/packages/2a/7d/a68e3230adeabb340044e032a8480c744246a7bbdf61558cc237a60d9d10/dulwich-0.22.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "372674caae3b30175e9f6e767e370c00d33c40f8e360ead04e8431b9edb8f31e",
                "md5": "20b7dcff9a2801258e6851b4e5101431",
                "sha256": "48e4262bfa68635a97bbe0c2ce4f4092ef903a7f3127b61b8ed634ef2538fdc8"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "20b7dcff9a2801258e6851b4e5101431",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 980146,
            "upload_time": "2024-11-18T00:43:30",
            "upload_time_iso_8601": "2024-11-18T00:43:30.230742Z",
            "url": "https://files.pythonhosted.org/packages/37/26/74caae3b30175e9f6e767e370c00d33c40f8e360ead04e8431b9edb8f31e/dulwich-0.22.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5889b8c5e78de10c4903710a2dcfe555b616b15e96852b1668dc20b66f6e7a30",
                "md5": "8449c0544787ce10da758a6fcfec59ec",
                "sha256": "40951f82c80561030175e73f09845f24ebbee88dfd76abda8e4d58d756b95c65"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8449c0544787ce10da758a6fcfec59ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 989588,
            "upload_time": "2024-11-18T00:43:31",
            "upload_time_iso_8601": "2024-11-18T00:43:31.664293Z",
            "url": "https://files.pythonhosted.org/packages/58/89/b8c5e78de10c4903710a2dcfe555b616b15e96852b1668dc20b66f6e7a30/dulwich-0.22.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e9ff86b8ddf65d3057094cf1b700227a8cae5c39be9c67e6e0bbacd13718c8d",
                "md5": "cd1412edcbf63f5729f1aa203285a6da",
                "sha256": "4915476feacaeb7e8975942d93d69bf9baf2e87c2a9eab779864aa7319616563"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cd1412edcbf63f5729f1aa203285a6da",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 1031907,
            "upload_time": "2024-11-18T00:43:33",
            "upload_time_iso_8601": "2024-11-18T00:43:33.163713Z",
            "url": "https://files.pythonhosted.org/packages/8e/9f/f86b8ddf65d3057094cf1b700227a8cae5c39be9c67e6e0bbacd13718c8d/dulwich-0.22.6-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": "edd45e4f2a86c4dab2a79d626461a7474a0ce48d2092a2d269fec621e43f82de",
                "md5": "8e028aad5a465f9593eade78b071b8b9",
                "sha256": "84ac8d08cbadfb8972de597ab4c0286119409449c7bed207a02f7d62bb5c5b4b"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8e028aad5a465f9593eade78b071b8b9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 604396,
            "upload_time": "2024-11-18T00:43:34",
            "upload_time_iso_8601": "2024-11-18T00:43:34.840233Z",
            "url": "https://files.pythonhosted.org/packages/ed/d4/5e4f2a86c4dab2a79d626461a7474a0ce48d2092a2d269fec621e43f82de/dulwich-0.22.6-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b68d5347c906c83e106bc6654925b4b033c4e467dfa7b4850ad5bc398fae4a7",
                "md5": "0237be9e689944f00a607dd34ca5510b",
                "sha256": "cc0810d6e65787ba0f41eb0dbe3e39520d85fd409d8a0e9a15d48cb194b77c6f"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0237be9e689944f00a607dd34ca5510b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 921813,
            "upload_time": "2024-11-18T00:43:36",
            "upload_time_iso_8601": "2024-11-18T00:43:36.644842Z",
            "url": "https://files.pythonhosted.org/packages/3b/68/d5347c906c83e106bc6654925b4b033c4e467dfa7b4850ad5bc398fae4a7/dulwich-0.22.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8064c093e40d64208e768db451add38b66520221e27a0db06e41bdf3d6bbd432",
                "md5": "f63b91f50b3bb1ec287e395964e87caa",
                "sha256": "b18bdf05ed09288b9d8dbbf927a2c3a63fa6192eced25665514959dea92a389b"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f63b91f50b3bb1ec287e395964e87caa",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 979077,
            "upload_time": "2024-11-18T00:43:38",
            "upload_time_iso_8601": "2024-11-18T00:43:38.124367Z",
            "url": "https://files.pythonhosted.org/packages/80/64/c093e40d64208e768db451add38b66520221e27a0db06e41bdf3d6bbd432/dulwich-0.22.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fe1b0ddeda98f3d50dcf85e084adf929fb3c641c6e25ad0e28134af3844ed82",
                "md5": "25ef86b52fb1715d5d75847a31320a93",
                "sha256": "502cc8ffe2d4f2e7bd347549e8bd1d31a8408dd990f5df2b028853229027baae"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25ef86b52fb1715d5d75847a31320a93",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 988612,
            "upload_time": "2024-11-18T00:43:39",
            "upload_time_iso_8601": "2024-11-18T00:43:39.626003Z",
            "url": "https://files.pythonhosted.org/packages/9f/e1/b0ddeda98f3d50dcf85e084adf929fb3c641c6e25ad0e28134af3844ed82/dulwich-0.22.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e4d7a2bc073bc22db3dd3c23ee7daedc3517663e254f7e9669b13adede5c537",
                "md5": "dc1101b332761966ddec27b93c30fdb1",
                "sha256": "82039b537ef31dceb04e513f9bc1571e05d283c242fa0aa2c7484ff9dc2ca1ae"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dc1101b332761966ddec27b93c30fdb1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 1032254,
            "upload_time": "2024-11-18T00:43:41",
            "upload_time_iso_8601": "2024-11-18T00:43:41.095903Z",
            "url": "https://files.pythonhosted.org/packages/2e/4d/7a2bc073bc22db3dd3c23ee7daedc3517663e254f7e9669b13adede5c537/dulwich-0.22.6-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": "ff71c223ae1c148f781b6a41558ce9e17c72a8ad5a813d5f868831d1f3f1021b",
                "md5": "ddbf5fc6ecc8d3e21addc2602f787fde",
                "sha256": "fcf1894ac54023266a0cda78d3c997c56328164bdfcd300aab8201e8bcb7decd"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ddbf5fc6ecc8d3e21addc2602f787fde",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 605401,
            "upload_time": "2024-11-18T00:43:42",
            "upload_time_iso_8601": "2024-11-18T00:43:42.719318Z",
            "url": "https://files.pythonhosted.org/packages/ff/71/c223ae1c148f781b6a41558ce9e17c72a8ad5a813d5f868831d1f3f1021b/dulwich-0.22.6-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f2d4958e5473750bd54ed657bfc65849db0670443ca52715a98f6fb290a1e3b",
                "md5": "72605753fc6e2e6e05c0a11931d92a60",
                "sha256": "a609c1939b8050c9876d0dd2b15302fef695759f479613c20025fbd4ece32bda"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "72605753fc6e2e6e05c0a11931d92a60",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 263139,
            "upload_time": "2024-11-18T00:43:44",
            "upload_time_iso_8601": "2024-11-18T00:43:44.738118Z",
            "url": "https://files.pythonhosted.org/packages/6f/2d/4958e5473750bd54ed657bfc65849db0670443ca52715a98f6fb290a1e3b/dulwich-0.22.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90b213367fe4b4cb187cf13823040403b37d167c967675d543451caa9e9d2589",
                "md5": "7f881b8fd2c4b9dcf146483aaf01b45b",
                "sha256": "c1f44d599fa5dc59ca43e0789f835b8689b4d831d8de5ae009c442192a1408b5"
            },
            "downloads": -1,
            "filename": "dulwich-0.22.6.tar.gz",
            "has_sig": false,
            "md5_digest": "7f881b8fd2c4b9dcf146483aaf01b45b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 450726,
            "upload_time": "2024-11-18T00:43:46",
            "upload_time_iso_8601": "2024-11-18T00:43:46.271900Z",
            "url": "https://files.pythonhosted.org/packages/90/b2/13367fe4b4cb187cf13823040403b37d167c967675d543451caa9e9d2589/dulwich-0.22.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-18 00:43:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dulwich",
    "github_project": "dulwich",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "dulwich"
}
        
Elapsed time: 0.47316s