bencoder.pyx


Namebencoder.pyx JSON
Version 3.0.1 PyPI version JSON
download
home_pagehttps://github.com/whtsky/bencoder.pyx
SummaryYet another bencode implementation in Cython
upload_time2022-12-12 06:29:22
maintainer
docs_urlNone
authorwhtsky
requires_python
licenseBSDv3
keywords bencoding encode decode bittorrent bencode bencoder cython
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            Bencoder.pyx
============

A fast bencode implementation in Cython supports both Python2 & Python3 .

.. image:: https://img.shields.io/pypi/l/bencoder.pyx.svg
    :alt: PyPI License
    :target: https://pypi.org/project/bencoder.pyx/
.. image:: https://codecov.io/gh/whtsky/bencoder.pyx/branch/master/graph/badge.svg
    :alt: Codecov Coverage
    :target: https://codecov.io/gh/whtsky/bencoder.pyx

Install
-------


.. code-block:: bash

    pip install bencoder.pyx


Usage
-----


.. code-block:: python

    from bencoder import bencode, bdecode, bdecode2
    
    assert bencode("WWWWWW") == b'6:WWWWWW'
    assert bencode(233) == b'i233e'
    
    with open("debian-8.3.0-amd64-netinst.iso.torrent", "rb") as f:
        torrent = bdecode(f.read())
        print(torrent['announce'])
    
    decoded, length = bdecode2(b'6:WWWWWWi233e')
    assert decoded == b'WWWWWW'
    assert length == 8

ChangeLog
----------

Version 3.0.1
~~~~~~~~~~~~~~~
+ Add support for Python 3.11

Versoin 3.0.0
~~~~~~~~~~~~~~~

+ Add support for Python 3.9 & 3.10
+ Drop support for Python 2
+ Build wheels for musl & aarch64

Version 2.0.1
~~~~~~~~~~~~~~~

+ Add support for Python 3.8
+ Drop support for Python 3.4

Version 2.0.0
~~~~~~~~~~~~~~~

+ Use built-in dict instead of OrderedDict on Python >= 3.7
+ Drop support for Python 3.3
+ Fix bytes parsing when used with python-future `#41 <https://github.com/whtsky/bencoder.pyx/pull/41>`_

Version 1.2.1
~~~~~~~~~~~~~~~

+ Drop support for Python 2.6
+ Performance boost for `bencode` method. `#7 <https://github.com/whtsky/bencoder.pyx/issues/7>`_

Version 1.2.0
~~~~~~~~~~~~~~~

+ Add `bdecode2` method. `#6 <https://github.com/whtsky/bencoder.pyx/pull/6>`_

Version 1.1.3
~~~~~~~~~~~~~~~

+ Performance Improvement
+ Fix package metainfo `#3 <https://github.com/whtsky/bencoder.pyx/issues/3>`_

Version 1.1.2
~~~~~~~~~~~~~~~

+ Support encode large int

Version 1.1.0
~~~~~~~~~~~~~~~

+ Use OrderedDict instaed of dict
+ Support encoding subclasses of dict

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/whtsky/bencoder.pyx",
    "name": "bencoder.pyx",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "bencoding,encode,decode,bittorrent,bencode,bencoder,cython",
    "author": "whtsky",
    "author_email": "whtsky@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/82/ad/ee1f6e89005bae378da05052476b5a9f5e30f21159016d2fa7df33b1c4f1/bencoder.pyx-3.0.1.tar.gz",
    "platform": "POSIX",
    "description": "Bencoder.pyx\n============\n\nA fast bencode implementation in Cython supports both Python2 & Python3 .\n\n.. image:: https://img.shields.io/pypi/l/bencoder.pyx.svg\n    :alt: PyPI License\n    :target: https://pypi.org/project/bencoder.pyx/\n.. image:: https://codecov.io/gh/whtsky/bencoder.pyx/branch/master/graph/badge.svg\n    :alt: Codecov Coverage\n    :target: https://codecov.io/gh/whtsky/bencoder.pyx\n\nInstall\n-------\n\n\n.. code-block:: bash\n\n    pip install bencoder.pyx\n\n\nUsage\n-----\n\n\n.. code-block:: python\n\n    from bencoder import bencode, bdecode, bdecode2\n    \n    assert bencode(\"WWWWWW\") == b'6:WWWWWW'\n    assert bencode(233) == b'i233e'\n    \n    with open(\"debian-8.3.0-amd64-netinst.iso.torrent\", \"rb\") as f:\n        torrent = bdecode(f.read())\n        print(torrent['announce'])\n    \n    decoded, length = bdecode2(b'6:WWWWWWi233e')\n    assert decoded == b'WWWWWW'\n    assert length == 8\n\nChangeLog\n----------\n\nVersion 3.0.1\n~~~~~~~~~~~~~~~\n+ Add support for Python 3.11\n\nVersoin 3.0.0\n~~~~~~~~~~~~~~~\n\n+ Add support for Python 3.9 & 3.10\n+ Drop support for Python 2\n+ Build wheels for musl & aarch64\n\nVersion 2.0.1\n~~~~~~~~~~~~~~~\n\n+ Add support for Python 3.8\n+ Drop support for Python 3.4\n\nVersion 2.0.0\n~~~~~~~~~~~~~~~\n\n+ Use built-in dict instead of OrderedDict on Python >= 3.7\n+ Drop support for Python 3.3\n+ Fix bytes parsing when used with python-future `#41 <https://github.com/whtsky/bencoder.pyx/pull/41>`_\n\nVersion 1.2.1\n~~~~~~~~~~~~~~~\n\n+ Drop support for Python 2.6\n+ Performance boost for `bencode` method. `#7 <https://github.com/whtsky/bencoder.pyx/issues/7>`_\n\nVersion 1.2.0\n~~~~~~~~~~~~~~~\n\n+ Add `bdecode2` method. `#6 <https://github.com/whtsky/bencoder.pyx/pull/6>`_\n\nVersion 1.1.3\n~~~~~~~~~~~~~~~\n\n+ Performance Improvement\n+ Fix package metainfo `#3 <https://github.com/whtsky/bencoder.pyx/issues/3>`_\n\nVersion 1.1.2\n~~~~~~~~~~~~~~~\n\n+ Support encode large int\n\nVersion 1.1.0\n~~~~~~~~~~~~~~~\n\n+ Use OrderedDict instaed of dict\n+ Support encoding subclasses of dict\n",
    "bugtrack_url": null,
    "license": "BSDv3",
    "summary": "Yet another bencode implementation in Cython",
    "version": "3.0.1",
    "split_keywords": [
        "bencoding",
        "encode",
        "decode",
        "bittorrent",
        "bencode",
        "bencoder",
        "cython"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "8130c5d78cc8f794d489f6659decb1d2",
                "sha256": "c0aa5d30330cf9c2a981e9d172c7d1667c9c085fcd1ec02256665490d86aa573"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "8130c5d78cc8f794d489f6659decb1d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 86337,
            "upload_time": "2022-12-12T06:25:35",
            "upload_time_iso_8601": "2022-12-12T06:25:35.911091Z",
            "url": "https://files.pythonhosted.org/packages/e2/8d/f30428121e40ccef8f43019a1367f15f286a043b2df92ba697fbad248e6a/bencoder.pyx-3.0.1-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d5f0d250ea9256ba0428e2630eb7decf",
                "sha256": "0072fc669fcf8f015d08f0a38f115161d68857a51be54d80343dc5efec825c5d"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d5f0d250ea9256ba0428e2630eb7decf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 47163,
            "upload_time": "2022-12-12T06:25:38",
            "upload_time_iso_8601": "2022-12-12T06:25:38.515200Z",
            "url": "https://files.pythonhosted.org/packages/0d/ba/6fb8a70bf42365650728085d16d7e4316b1edeeaa77567532fe2568e402a/bencoder.pyx-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5da0615877298f11a2fa22d0e1470618",
                "sha256": "876f1241bf36cb7591890d73c16e9fed5b7f29dedee4146aa92de57119c52c92"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5da0615877298f11a2fa22d0e1470618",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 42353,
            "upload_time": "2022-12-12T06:25:41",
            "upload_time_iso_8601": "2022-12-12T06:25:41.078982Z",
            "url": "https://files.pythonhosted.org/packages/94/ba/db6b0386b31294af081dc3df488d6dcd8445058e3d71b47764cd64eba6ab/bencoder.pyx-3.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "cd9d99bca9b9f12d966aaa9dfd7432a2",
                "sha256": "b1dcbf4defe840e8eda5e2c33ded51c0ea7596b81958ab99e37344a9ad906fc1"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd9d99bca9b9f12d966aaa9dfd7432a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 259007,
            "upload_time": "2022-12-12T06:25:43",
            "upload_time_iso_8601": "2022-12-12T06:25:43.498128Z",
            "url": "https://files.pythonhosted.org/packages/7c/44/29a5cb750a869226ee2afb74bc87abebe59d1e2c6f20e0c3870be141a00c/bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e1c551299d6d9165bc14de6a416fef09",
                "sha256": "f7207d2d4ca3656d4527c46a3684205eb0f42e9ffe23909a04028faa121ff2f1"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e1c551299d6d9165bc14de6a416fef09",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 270621,
            "upload_time": "2022-12-12T06:25:45",
            "upload_time_iso_8601": "2022-12-12T06:25:45.678031Z",
            "url": "https://files.pythonhosted.org/packages/89/ec/4ab0d44386fd858b25d7a85a51c794deac46a206efbb5d910ec7d0e289f1/bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "27f4d95263b0289d5c486b3ef8f1eed1",
                "sha256": "3c7222239c5eeba9ce8da967ace75838488c984fcff4f936f5502a45eecfbd99"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "27f4d95263b0289d5c486b3ef8f1eed1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 269512,
            "upload_time": "2022-12-12T06:25:48",
            "upload_time_iso_8601": "2022-12-12T06:25:48.137118Z",
            "url": "https://files.pythonhosted.org/packages/d8/f1/f73b471282f84e784a254b62a71240e6a29b3521aef01c0a9256808e1e4b/bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "01f18c00340f6ccd74447b89a958a9c0",
                "sha256": "0e1805fa31e0a6eb4bd5740c6a73706c65430f678933927ef158817d8ca1e00b"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "01f18c00340f6ccd74447b89a958a9c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 250130,
            "upload_time": "2022-12-12T06:25:50",
            "upload_time_iso_8601": "2022-12-12T06:25:50.296679Z",
            "url": "https://files.pythonhosted.org/packages/0d/b0/e7dff8945b1357ed18b73727109c60a4769c4c782453fea5d8a07b1ade3e/bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "553cac44e2664ed4a9478063f2a80c0c",
                "sha256": "1bc71e085760f74200aff40c3f5c9ff74de3bf962a54d706ad11aa0fb399edbc"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "553cac44e2664ed4a9478063f2a80c0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 264573,
            "upload_time": "2022-12-12T06:25:52",
            "upload_time_iso_8601": "2022-12-12T06:25:52.233847Z",
            "url": "https://files.pythonhosted.org/packages/30/64/834a297ab7318abbc8014868dac228d0f024ad0f0202bd1402b9fd029584/bencoder.pyx-3.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "90567fddc106af24c7a80046e3b3a7db",
                "sha256": "01871003ffd41fc0d35ed89131af7647efc2e6118c162addffb4fdd0f72f8672"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "90567fddc106af24c7a80046e3b3a7db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 261074,
            "upload_time": "2022-12-12T06:25:53",
            "upload_time_iso_8601": "2022-12-12T06:25:53.975056Z",
            "url": "https://files.pythonhosted.org/packages/96/f8/7f8ffe2cd07e0a92e0c0183d7b2914b7a6dc2a8f8fd5c9fa845b8b96da54/bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "fab1860bf3bb391a52c4f818b34c614a",
                "sha256": "fe92f23ccdd052b0d4284653c99ba03d486e3f06faa9b76c207724e04290ed93"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "fab1860bf3bb391a52c4f818b34c614a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 257645,
            "upload_time": "2022-12-12T06:25:56",
            "upload_time_iso_8601": "2022-12-12T06:25:56.272339Z",
            "url": "https://files.pythonhosted.org/packages/9e/ec/38a1fd9587b09bfa0558a7f7221a4357ff249e9c9fc245373cc9583cc201/bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "526a773a2f8212a8674d590430755072",
                "sha256": "7dbe6a0a3314dc9d94773b26a92af8a5d82723c7bf5c2ba1f38b87e2aee32256"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "526a773a2f8212a8674d590430755072",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 273176,
            "upload_time": "2022-12-12T06:25:58",
            "upload_time_iso_8601": "2022-12-12T06:25:58.697767Z",
            "url": "https://files.pythonhosted.org/packages/96/8b/445ac9ce8e6345ee3b2c40be7975df2d491f8f46d5927accb7a92a4b1067/bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "59522676279b69d16665d52856e4af66",
                "sha256": "b0b2d0cb11463bbeced6ee7d6a309a781ed7c8ece1978f0a86e905208ab0161b"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "59522676279b69d16665d52856e4af66",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 272221,
            "upload_time": "2022-12-12T06:26:00",
            "upload_time_iso_8601": "2022-12-12T06:26:00.604564Z",
            "url": "https://files.pythonhosted.org/packages/87/96/279490d4e2a2364abdd3314dbb3e45c0ed8f65400c87ffe7d7c6f2bbfe20/bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3865567bdc166f8ab585ea51982e1804",
                "sha256": "95500e1fda3586a52b798cb2624df58a28d6d2a8107f3c63e0979941b796baee"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3865567bdc166f8ab585ea51982e1804",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 266598,
            "upload_time": "2022-12-12T06:26:02",
            "upload_time_iso_8601": "2022-12-12T06:26:02.311960Z",
            "url": "https://files.pythonhosted.org/packages/04/3f/fe355300ce59bfcd45727570c876e26443117197ff2af342268a11ff5e66/bencoder.pyx-3.0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "20f568a85aca788b1ea0c5c3824e752a",
                "sha256": "da1209f087c60984981503dac94c6ba4a970b620873135982cc1957dfc176981"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "20f568a85aca788b1ea0c5c3824e752a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 35105,
            "upload_time": "2022-12-12T06:26:04",
            "upload_time_iso_8601": "2022-12-12T06:26:04.107224Z",
            "url": "https://files.pythonhosted.org/packages/e4/81/7c25572036b2c2f18d5806bbc064b7a19f3dfd172212a8cf23b3564177c5/bencoder.pyx-3.0.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "cbc849690cdf64d9964d39ff8dbbedf3",
                "sha256": "a6cf78f0cf1a0f1519f8ba0bd3fabd07798bcf96e98961f09d8deee0b83a8a7e"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cbc849690cdf64d9964d39ff8dbbedf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 39482,
            "upload_time": "2022-12-12T06:26:07",
            "upload_time_iso_8601": "2022-12-12T06:26:07.002371Z",
            "url": "https://files.pythonhosted.org/packages/4d/9e/6960b03be259bdc53c35c118afdf2582bc180f0b98c3f4f4654796512515/bencoder.pyx-3.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "63903230b8bb0fa83289b40e88a24e64",
                "sha256": "c5e4849a3d4abc850e12203755cc781e4c80f4290bb461bc719977afcac1d71e"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "63903230b8bb0fa83289b40e88a24e64",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 84561,
            "upload_time": "2022-12-12T06:26:09",
            "upload_time_iso_8601": "2022-12-12T06:26:09.062349Z",
            "url": "https://files.pythonhosted.org/packages/a0/6f/d8f3aebc34e4924cf8f7194cf7a387604b75e8cbb5b521fa7dc2a71610fb/bencoder.pyx-3.0.1-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "dba95ee9973f210e009694f9cb80a557",
                "sha256": "c91e2271d2d1da3b88cd5e537bd74e8ee3c991f224604c09a6520c04329ff540"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dba95ee9973f210e009694f9cb80a557",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 46162,
            "upload_time": "2022-12-12T06:26:11",
            "upload_time_iso_8601": "2022-12-12T06:26:11.856683Z",
            "url": "https://files.pythonhosted.org/packages/15/1c/60c62f58be9221bd08d0622c1c30c5f791d2e5bf12a4049a5bd01a4a3e03/bencoder.pyx-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b7d9edd1c53afef79d57038e299ea1dd",
                "sha256": "aa7ee58e3537aeff0d92fa7425227c4d61a67a72045cb935af1beec6d9a0784e"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b7d9edd1c53afef79d57038e299ea1dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 41365,
            "upload_time": "2022-12-12T06:26:13",
            "upload_time_iso_8601": "2022-12-12T06:26:13.693719Z",
            "url": "https://files.pythonhosted.org/packages/e4/86/8987c0ea9af323242778fd8889ff8e3bbd5f23959c6df7b981bdf9b8db89/bencoder.pyx-3.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "22dcb9312a3bdf38b19689a810f3f4ed",
                "sha256": "51f87f1f6ae565b5ebcf0411e7e6d145dc7d39c1cb0de6b74847a914a8b3fe04"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "22dcb9312a3bdf38b19689a810f3f4ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 282838,
            "upload_time": "2022-12-12T06:26:15",
            "upload_time_iso_8601": "2022-12-12T06:26:15.375653Z",
            "url": "https://files.pythonhosted.org/packages/6e/91/c034b9248a7eee960f183600728da31f5ac2a04480bb417f9f9b6485de95/bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4175be26b40bbe8914353934dfc8261a",
                "sha256": "c52710f81fc26ebb6f68a5b5264945ce67d467d6667485c2fbfc728d111831ca"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4175be26b40bbe8914353934dfc8261a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 293864,
            "upload_time": "2022-12-12T06:26:17",
            "upload_time_iso_8601": "2022-12-12T06:26:17.959985Z",
            "url": "https://files.pythonhosted.org/packages/82/93/6d8ed4be513d5c8ccb0a6fc1f43719eb10cf240e692bd14932ca3d2c9789/bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6db2e0ac5544781783f9bf8632092b4d",
                "sha256": "354a72ca91333e8f5bdab2dfe6aec88634c2c56c2a29c934ed14d63a5aa11de8"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6db2e0ac5544781783f9bf8632092b4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 293377,
            "upload_time": "2022-12-12T06:26:19",
            "upload_time_iso_8601": "2022-12-12T06:26:19.621564Z",
            "url": "https://files.pythonhosted.org/packages/c5/41/4a9d36ba97b427aef0179c8ee09a64c7bf9136870e298039390e87d85b72/bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5abe74073f1f550b37418e10b3b9d7ed",
                "sha256": "946c1a2c8125890a1dd914c72886097ec3b76cc40d486a181943650762d7a771"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5abe74073f1f550b37418e10b3b9d7ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 271720,
            "upload_time": "2022-12-12T06:26:21",
            "upload_time_iso_8601": "2022-12-12T06:26:21.252469Z",
            "url": "https://files.pythonhosted.org/packages/bb/7b/d1761b634dc7cb4f46028cb9207b003b32fe5611e283803e3aaa3d9f7bfe/bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "82054d074d399a93dec8f4387bb8c7ba",
                "sha256": "896af749de99e5b0cd662ca43d8df3057dfd0825ba01678b07b1739c65494e23"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82054d074d399a93dec8f4387bb8c7ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 288432,
            "upload_time": "2022-12-12T06:26:23",
            "upload_time_iso_8601": "2022-12-12T06:26:23.165018Z",
            "url": "https://files.pythonhosted.org/packages/75/f2/1a88223afb0a4e43002f41b14fdf96022069ed04aed493a16cc543441000/bencoder.pyx-3.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "197721773377001d99e1d21ca7e1fc8a",
                "sha256": "321c05a25507b6bf4b66852bcf748e0797cab371d8ffeac06b13a9e37ee38a55"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "197721773377001d99e1d21ca7e1fc8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 282795,
            "upload_time": "2022-12-12T06:26:25",
            "upload_time_iso_8601": "2022-12-12T06:26:25.278275Z",
            "url": "https://files.pythonhosted.org/packages/e9/40/e6c8892c8973d45a48f8fbcc4e4aa5ab7ffe8d7e5e72ddaaaf445d33c084/bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "49f287e4c798c8e4b2f0a7a2fe2ca502",
                "sha256": "2ea0abdd3abe058075c6f4276e6f60448c8a2b4a1b517e5670f4dece45af5e8e"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "49f287e4c798c8e4b2f0a7a2fe2ca502",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 266379,
            "upload_time": "2022-12-12T06:26:27",
            "upload_time_iso_8601": "2022-12-12T06:26:27.913875Z",
            "url": "https://files.pythonhosted.org/packages/3f/79/5d1eb3d9162a3b305e6f5c35606017406c6ad99d64fc063ec2d4ac127af0/bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ccf0ced350fce0f9a2bd3352044bca58",
                "sha256": "ed6585d47a01532a20af05c65a3650009bc35e4af7d38ac8773d6308c9c27e34"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ccf0ced350fce0f9a2bd3352044bca58",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 295909,
            "upload_time": "2022-12-12T06:26:30",
            "upload_time_iso_8601": "2022-12-12T06:26:30.877506Z",
            "url": "https://files.pythonhosted.org/packages/84/bc/d3d4387371639d67fcdf94db4f39e170ed47ab0507e6fdc2e8de671313c7/bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6734a93e6b78eeb2f8e9745aabe6b6ab",
                "sha256": "42cae9dd8d2266356a91c53a20f5a662a7917052b3a92a9cd646bfe19535993c"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "6734a93e6b78eeb2f8e9745aabe6b6ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 295354,
            "upload_time": "2022-12-12T06:26:33",
            "upload_time_iso_8601": "2022-12-12T06:26:33.577878Z",
            "url": "https://files.pythonhosted.org/packages/8b/4d/6a49763311b3c5ba0d6d840882848398d9d32fb97dd1f83187531899cd2e/bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1366cdf5fde5c22a16d50478ee4b4ad6",
                "sha256": "ada72af6b0702353a3b64ef32da379a0cc53bfee1803904b551f0ed71c810286"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1366cdf5fde5c22a16d50478ee4b4ad6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 287521,
            "upload_time": "2022-12-12T06:26:35",
            "upload_time_iso_8601": "2022-12-12T06:26:35.654040Z",
            "url": "https://files.pythonhosted.org/packages/51/53/1d91a4721fa199ad9ba3db353b1faaef4a20f42ad2bfd325d1e2df594fcd/bencoder.pyx-3.0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2816701fa1b4dd0f0c748b3c6c30905c",
                "sha256": "ab5591ddd4c37052b63e1def69f35f738194edc0d00950d5e91999fe43055ccc"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "2816701fa1b4dd0f0c748b3c6c30905c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 34717,
            "upload_time": "2022-12-12T06:26:37",
            "upload_time_iso_8601": "2022-12-12T06:26:37.700353Z",
            "url": "https://files.pythonhosted.org/packages/43/58/d4a15c365e1dfe032e53567a773c7c02d334a583bd102619c61ffc95a685/bencoder.pyx-3.0.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a207af26c78f1cc0b03dd8c79e193bfc",
                "sha256": "00606b2c96905a6cb195c96f4c9e360d0764919d78ae70df9eab5bf2059b91c0"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a207af26c78f1cc0b03dd8c79e193bfc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 39188,
            "upload_time": "2022-12-12T06:26:39",
            "upload_time_iso_8601": "2022-12-12T06:26:39.914957Z",
            "url": "https://files.pythonhosted.org/packages/df/07/2e5e55ba4f2fbbefaf2c7c3482db949fb26dd2fa3be58d1ee30c823f2841/bencoder.pyx-3.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ce60819dd86d424cc009746c30755c9c",
                "sha256": "1eae6c4463d42a3b12f365c7699c7843db7b02ef6600114d2b7e3ad9fd37380e"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce60819dd86d424cc009746c30755c9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 48768,
            "upload_time": "2022-12-12T06:26:42",
            "upload_time_iso_8601": "2022-12-12T06:26:42.379297Z",
            "url": "https://files.pythonhosted.org/packages/9e/d5/32471867e9c5cce10c07155d66b64a6a4f09d39ff42ad3ea1bbadfcacb59/bencoder.pyx-3.0.1-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6f866920654f2b4401490e69d50865ec",
                "sha256": "e3afecfd66479e803bb03922a447451d3e8f53dbc98c49cc34513b58a4bd1b4b"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6f866920654f2b4401490e69d50865ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 223599,
            "upload_time": "2022-12-12T06:26:47",
            "upload_time_iso_8601": "2022-12-12T06:26:47.602806Z",
            "url": "https://files.pythonhosted.org/packages/56/54/0207be7e516c460a3905101db352f1fb443dbb5cfa9a04282a70520306f5/bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ae56c0cfa73ce783df4e624abaeea36d",
                "sha256": "6095c84e01bd4211d48b4b98c23d0b381c25587c9361825bfdb56f2d87ecc0fc"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ae56c0cfa73ce783df4e624abaeea36d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 238812,
            "upload_time": "2022-12-12T06:26:51",
            "upload_time_iso_8601": "2022-12-12T06:26:51.078910Z",
            "url": "https://files.pythonhosted.org/packages/64/bf/57c6dd5395f3483712a4f9b00d31297f795bbc5df6d2cb93ca28c07d859f/bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "3150ec9862036972e26a698fce84d2e0",
                "sha256": "77d771f77e30e89a3defaa61cc3eecc6200e3988a7e1f9d13b6bb5a6442afd46"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3150ec9862036972e26a698fce84d2e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 235019,
            "upload_time": "2022-12-12T06:26:53",
            "upload_time_iso_8601": "2022-12-12T06:26:53.444942Z",
            "url": "https://files.pythonhosted.org/packages/cd/d0/011a1adefe323d51a75cb9d3fa92c5f9fcc9331d4ebcdbb9fc5ae15f5b91/bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2b7e85518d4613fd77950298140e2b93",
                "sha256": "d120c3b2962919558ff9e25059d006244f84aebad54a035d1c87e22bac3e0132"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2b7e85518d4613fd77950298140e2b93",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 214109,
            "upload_time": "2022-12-12T06:26:58",
            "upload_time_iso_8601": "2022-12-12T06:26:58.636231Z",
            "url": "https://files.pythonhosted.org/packages/95/8d/f10c7126d535d1b2ba7329cd9f01d499cdc6cd8cbc9fda13d718d044ffc7/bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "1976527d1891058325a4a9438641b66e",
                "sha256": "43034175d8327dc863bc8525c8dd6cee39e27d64fa98392016440e38df657e8a"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1976527d1891058325a4a9438641b66e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 228122,
            "upload_time": "2022-12-12T06:27:00",
            "upload_time_iso_8601": "2022-12-12T06:27:00.647492Z",
            "url": "https://files.pythonhosted.org/packages/9c/c9/0bcb197b57240ebd9ea2add4d00c1afc199a2b7aca37c5b6bb0bbfb211e5/bencoder.pyx-3.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d03fb74ae88d396dd8aaff777ece1cfd",
                "sha256": "5e7cab85bf32b6c2f918dab2354a486aef9c176b590516926f5bca4c5bcc8419"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d03fb74ae88d396dd8aaff777ece1cfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 224130,
            "upload_time": "2022-12-12T06:27:02",
            "upload_time_iso_8601": "2022-12-12T06:27:02.475202Z",
            "url": "https://files.pythonhosted.org/packages/7d/4c/e27440e3962b63d7c4058fe81de203a4e21061b309350f269a56e1021d51/bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "26b5465cc6bdbc286a852d5ba13a3c5c",
                "sha256": "d0b36015695b8f1e599b02db70ad11f54492871b3c0b1e8dae4bc8b2d66f2469"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "26b5465cc6bdbc286a852d5ba13a3c5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 221811,
            "upload_time": "2022-12-12T06:27:04",
            "upload_time_iso_8601": "2022-12-12T06:27:04.754491Z",
            "url": "https://files.pythonhosted.org/packages/37/a9/4546f1740d92e3253ddddfdb2f6687c12684c90a760bcd1ac021e359b66d/bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "965ecbc773032c6d852e5f2acfa1fbea",
                "sha256": "434a375176b2403baee6a718092f7f930148b272a8a1aaef5857f550606022d9"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "965ecbc773032c6d852e5f2acfa1fbea",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 238985,
            "upload_time": "2022-12-12T06:27:07",
            "upload_time_iso_8601": "2022-12-12T06:27:07.042391Z",
            "url": "https://files.pythonhosted.org/packages/56/15/457ed50abcde536c9cebff9eba32bf71e3e1f1c59b0a3db0b32b80edfbe0/bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "903a459a09f83c9921ecc731e9082c68",
                "sha256": "8096f85dc3e1a6dc4d86ba648357bc018e8fe02f057aa85f98496c783881a80a"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "903a459a09f83c9921ecc731e9082c68",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 235718,
            "upload_time": "2022-12-12T06:27:09",
            "upload_time_iso_8601": "2022-12-12T06:27:09.926050Z",
            "url": "https://files.pythonhosted.org/packages/8b/1d/b8466e82b108a42434ef1ec85aee9700b250e31fc7eac3f0849ed63ec43a/bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "fd7ab4bdbe7dcfc744a6e41affd9d75a",
                "sha256": "7feb04314f752aebb9c9e993953595d30238f56565b39f0ccd65742e9cdbbadf"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fd7ab4bdbe7dcfc744a6e41affd9d75a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 228692,
            "upload_time": "2022-12-12T06:27:11",
            "upload_time_iso_8601": "2022-12-12T06:27:11.689579Z",
            "url": "https://files.pythonhosted.org/packages/b2/d9/bd3f8229b10171541a0dab6ddd3099ce95ca81ec876a2e548a5398764724/bencoder.pyx-3.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "56722181c87f0a8c49d499bb9ee8a124",
                "sha256": "89b4d60d5dc85ffe4e2417727158c3c1e4c3711246dc98dd90e650ab7ce3a65c"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "56722181c87f0a8c49d499bb9ee8a124",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 39525,
            "upload_time": "2022-12-12T06:27:13",
            "upload_time_iso_8601": "2022-12-12T06:27:13.789709Z",
            "url": "https://files.pythonhosted.org/packages/1d/4b/96ec2404fbef89de1addf6b620ed14bca8ba24b72b30c7bf5c9ae58ec6cd/bencoder.pyx-3.0.1-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2c7a891272736e0159098b67f0331616",
                "sha256": "8cc61be9d79b8663aeb2aea6751d9bfb9c3d89256a4c8f17b81730b4ae09569b"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c7a891272736e0159098b67f0331616",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 46173,
            "upload_time": "2022-12-12T06:27:15",
            "upload_time_iso_8601": "2022-12-12T06:27:15.988105Z",
            "url": "https://files.pythonhosted.org/packages/ba/e4/76ab3fa3ed7c008b390ae3b5eabb09b8bad6d57c5c1c61591cfc574a0cb8/bencoder.pyx-3.0.1-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b4fc559748c2fa9a821d9538230274b1",
                "sha256": "b8990bf1e9ef6ef2b20f2842d3476e38b2a8c06f1b36b6e41559523c25a3a0d1"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4fc559748c2fa9a821d9538230274b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 47642,
            "upload_time": "2022-12-12T06:27:17",
            "upload_time_iso_8601": "2022-12-12T06:27:17.777860Z",
            "url": "https://files.pythonhosted.org/packages/b2/f7/9331446e770ec4b8ddd39a929ecc468091d6d289b880272c135950e8687a/bencoder.pyx-3.0.1-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4ecd040c6d3c71b6795a84c3ce1c1508",
                "sha256": "a5b8b6752f5d41f26eea7b8bd644b8812cc3aff866211d7247df0af23ff7599f"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ecd040c6d3c71b6795a84c3ce1c1508",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 221530,
            "upload_time": "2022-12-12T06:27:19",
            "upload_time_iso_8601": "2022-12-12T06:27:19.568019Z",
            "url": "https://files.pythonhosted.org/packages/61/47/34cbe772130d4a05f421eba57e2001475f098d7c94a54e05269cfab46adc/bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "602c8a8deaed9eb1b9ab16b074af4697",
                "sha256": "e519a5b6178ece99510710bf64646aa87d1015cedef6dd02eb0cdafc8f1ee547"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "602c8a8deaed9eb1b9ab16b074af4697",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 236042,
            "upload_time": "2022-12-12T06:27:21",
            "upload_time_iso_8601": "2022-12-12T06:27:21.890612Z",
            "url": "https://files.pythonhosted.org/packages/5f/3d/f7816af5a4633fb567c3ace7b51132cad59a3c20c16087a2a108293f92b5/bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "72836cd0275aa4f965ddb6ce7c083b6d",
                "sha256": "16f566112ff134d36b684b196282a9a6a4b60c08cf978b918f9c9f678135527c"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "72836cd0275aa4f965ddb6ce7c083b6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 232605,
            "upload_time": "2022-12-12T06:27:24",
            "upload_time_iso_8601": "2022-12-12T06:27:24.081651Z",
            "url": "https://files.pythonhosted.org/packages/b3/7b/c5b665a7d7ebfa0133c1c105c3b5fd5d6336db97b50b3b9065848f21b314/bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f5983b5039b34c079faa6fab9d787352",
                "sha256": "7a584cdcae5edbbfdbdef6315243534b1b92edc847063a3bc13ac57850eaddf1"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f5983b5039b34c079faa6fab9d787352",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 212839,
            "upload_time": "2022-12-12T06:27:26",
            "upload_time_iso_8601": "2022-12-12T06:27:26.493570Z",
            "url": "https://files.pythonhosted.org/packages/25/fb/a37f0ebf39f5a9748d858431178aeae9609431c60d0efeeacf2865891bff/bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "eaf185256f9d025216411f5563915abf",
                "sha256": "f97cdb920dbacfea4d5369363477dbd1e3ce535af1904e66463d1fd6056b6142"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eaf185256f9d025216411f5563915abf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 226007,
            "upload_time": "2022-12-12T06:27:28",
            "upload_time_iso_8601": "2022-12-12T06:27:28.648517Z",
            "url": "https://files.pythonhosted.org/packages/99/bb/abb256f56da66ac0c2c63e3e21b67c41403fee1a17f1b591f1f3483ebc24/bencoder.pyx-3.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "56401b461cb8b9988e52d191898025c7",
                "sha256": "b21687bbb1121db57e3369d4380f9513fef719e23afc16a66ae092baa0756e8b"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "56401b461cb8b9988e52d191898025c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 222747,
            "upload_time": "2022-12-12T06:27:31",
            "upload_time_iso_8601": "2022-12-12T06:27:31.287643Z",
            "url": "https://files.pythonhosted.org/packages/c7/f2/14546a803904352eaa34d33e332fc978d65e9a68d09de85b63d18da4f26a/bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ce9169ddc7ba027d97ee31063bcf058e",
                "sha256": "647f5273b99adc99733a7c2f54aaca5d21948a28df89bf07d387229d999b4636"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ce9169ddc7ba027d97ee31063bcf058e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 220261,
            "upload_time": "2022-12-12T06:27:33",
            "upload_time_iso_8601": "2022-12-12T06:27:33.964187Z",
            "url": "https://files.pythonhosted.org/packages/18/b3/30df3a29b22c18f0b60effd5357259ac84e8849e7bbaa0805b33cd6e48f5/bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "da1790938cb7a10e33aff3bf5e866d0d",
                "sha256": "51dd730b401b3b51fbe23f1acdb9bf6e59ea8a6e00ebf539b8cbb93e89298cef"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "da1790938cb7a10e33aff3bf5e866d0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 236767,
            "upload_time": "2022-12-12T06:27:36",
            "upload_time_iso_8601": "2022-12-12T06:27:36.439371Z",
            "url": "https://files.pythonhosted.org/packages/91/db/1a10f5f02861cc68d55680cae7abf9d77aa766fb530c8aadfd3ceaba49b6/bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a89b8ea9c7f3b7cd17850b56c58b2e78",
                "sha256": "5e68317f313dca9d5c6e0bfe189156f16867e34964743db1313ba285849eb02f"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "a89b8ea9c7f3b7cd17850b56c58b2e78",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 233170,
            "upload_time": "2022-12-12T06:27:38",
            "upload_time_iso_8601": "2022-12-12T06:27:38.306834Z",
            "url": "https://files.pythonhosted.org/packages/d8/27/686885640916c1bbcfdbbb4baefb0b9e3543c0d62ae87170b6882cfc6881/bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a5d658d7d5122a2a03a9cfb5511512c3",
                "sha256": "771630a63644e5741588475bf81986f019095e0c44dbf444fa167d2933c0b97e"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5d658d7d5122a2a03a9cfb5511512c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 226392,
            "upload_time": "2022-12-12T06:27:40",
            "upload_time_iso_8601": "2022-12-12T06:27:40.933132Z",
            "url": "https://files.pythonhosted.org/packages/f1/b1/6f225db24cad455d9af87623256c422c7aef3f070b6859879a7c08e0e82b/bencoder.pyx-3.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "391609c4d68ef93ac3f6e44316b20445",
                "sha256": "235fb8f7ac6c1259bcb873d2d401149aaa777e707feb6d08bc5fb6c5a610e780"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "391609c4d68ef93ac3f6e44316b20445",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 35913,
            "upload_time": "2022-12-12T06:27:43",
            "upload_time_iso_8601": "2022-12-12T06:27:43.161557Z",
            "url": "https://files.pythonhosted.org/packages/ab/0d/ab46c97760cf6df6bc1235552268f9fe234a9d5c397163cffa108fef0be6/bencoder.pyx-3.0.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "354d7b1b8091906f6f1b84a36ae60799",
                "sha256": "6eb50f006280134d1442bc469ca28df82b06f0a27ac527e03ecd22d19a33ac7b"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "354d7b1b8091906f6f1b84a36ae60799",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 40838,
            "upload_time": "2022-12-12T06:27:45",
            "upload_time_iso_8601": "2022-12-12T06:27:45.246102Z",
            "url": "https://files.pythonhosted.org/packages/bd/6e/39530a72e15b912f3d25ef81e6fb2553d190e80787e9b664c2fa469a08ed/bencoder.pyx-3.0.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "367f79bf6fff024f6bf69d090a4fcbf3",
                "sha256": "a212de4355ccf16a566bf77b4d0ed309786e1815137d5ca06c06d01bddacddfa"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "367f79bf6fff024f6bf69d090a4fcbf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 89599,
            "upload_time": "2022-12-12T06:27:47",
            "upload_time_iso_8601": "2022-12-12T06:27:47.910856Z",
            "url": "https://files.pythonhosted.org/packages/02/0b/0dfdca07dfa2c68fae21335ee42c83a9887134d1eb7432e1abf5ce9f4d47/bencoder.pyx-3.0.1-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "03398ea57a766543a2ab3955599762c2",
                "sha256": "e93f0486c391ede2967a118f06aa8806d46168495b9f1c1f6ac75d23fe737791"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "03398ea57a766543a2ab3955599762c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 48717,
            "upload_time": "2022-12-12T06:27:49",
            "upload_time_iso_8601": "2022-12-12T06:27:49.788097Z",
            "url": "https://files.pythonhosted.org/packages/9f/00/248c6a9377ea84e7fe5aaf2d13822bfd29c3785df2ccfc7e76ae5d819ed2/bencoder.pyx-3.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "97619e0bbd6eeafd29a1c1a63b6fe15a",
                "sha256": "9d7cf27745f52758bce4544436d85b76b52c4ee8eda567cd624db601b4d850a2"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "97619e0bbd6eeafd29a1c1a63b6fe15a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 43980,
            "upload_time": "2022-12-12T06:27:51",
            "upload_time_iso_8601": "2022-12-12T06:27:51.491194Z",
            "url": "https://files.pythonhosted.org/packages/ae/b0/c16211fc4e2826e97e6e6464d12ca07946e50381a1e5a14f81dd4f7da7ac/bencoder.pyx-3.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "51e51ee6be3ac6ffd5111e97c79aed36",
                "sha256": "9cdf80db0760a7cbb94a389a8c80bae11744c06401d27948362a5d60697ac37a"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "51e51ee6be3ac6ffd5111e97c79aed36",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 255945,
            "upload_time": "2022-12-12T06:27:53",
            "upload_time_iso_8601": "2022-12-12T06:27:53.523786Z",
            "url": "https://files.pythonhosted.org/packages/61/52/c5e9166eaa87b6be4dd6153463a1697ab213811245c77087621d1547e510/bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "36c9c1cafec74d4541fb29404dcda9f2",
                "sha256": "f8870e9e434d4c2f981304c2f09a7777954e7c57878f582e0b1a00fa7e5c91a0"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "36c9c1cafec74d4541fb29404dcda9f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 270242,
            "upload_time": "2022-12-12T06:27:55",
            "upload_time_iso_8601": "2022-12-12T06:27:55.474342Z",
            "url": "https://files.pythonhosted.org/packages/58/e7/ae444474054401764e1e9d3bb89a678f01c237853bb09f0451cfc1a2c7a3/bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "966d850428fb336a44bcf1bb7afda500",
                "sha256": "db4e4ef3c8460f4cc02211b4bff0890106564d964d7c2d11cbeca02f3fa1273a"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "966d850428fb336a44bcf1bb7afda500",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 266206,
            "upload_time": "2022-12-12T06:27:57",
            "upload_time_iso_8601": "2022-12-12T06:27:57.821988Z",
            "url": "https://files.pythonhosted.org/packages/30/29/e28fb6607ac534011d19df491f68f8d8a23af91389367b72e131442e807a/bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "565edf3bef49190b0253e3ff0bc676b5",
                "sha256": "2c05edecf4bc0627428613747f02987bbabb21eff90b3fdc2f8c177b4e1f9e7c"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "565edf3bef49190b0253e3ff0bc676b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 248752,
            "upload_time": "2022-12-12T06:28:00",
            "upload_time_iso_8601": "2022-12-12T06:28:00.049604Z",
            "url": "https://files.pythonhosted.org/packages/06/4f/24ff6dbdc987d6fcb60b65d67e89be750a02ee275e34a0aceaa0fee10787/bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4b51e114296e729b0bb322b3461c021a",
                "sha256": "0cea4d60f962730f85cf5299780af9d4552e42899b83beef53f59ac4e659097f"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b51e114296e729b0bb322b3461c021a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 261980,
            "upload_time": "2022-12-12T06:28:02",
            "upload_time_iso_8601": "2022-12-12T06:28:02.089924Z",
            "url": "https://files.pythonhosted.org/packages/13/3e/b9015be468e2faf021beb829391e54c9f13f3050863d49da8137babd1e4b/bencoder.pyx-3.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7c2c5aa18076fd05db184ea46772ae41",
                "sha256": "f62f3f4c6b1131723cb0fabb4b1a36132e7522ba6ec4f96826cbfd14d370d843"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7c2c5aa18076fd05db184ea46772ae41",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 268445,
            "upload_time": "2022-12-12T06:28:03",
            "upload_time_iso_8601": "2022-12-12T06:28:03.888587Z",
            "url": "https://files.pythonhosted.org/packages/e4/ad/4d49d8b2277a0feb9bc392d7fe0ce48f932c3420ed153a936d1d7596dbbd/bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "df023696ef1a38bb7eb0ec2b610293d9",
                "sha256": "96875b13fd7dd6e8359755e052d0dc3d66d6f5adbe5c99f55c3aa19811d1c05e"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "df023696ef1a38bb7eb0ec2b610293d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 265226,
            "upload_time": "2022-12-12T06:28:06",
            "upload_time_iso_8601": "2022-12-12T06:28:06.255809Z",
            "url": "https://files.pythonhosted.org/packages/9f/a0/1503957ff82b9654169a847460c2ed197b524156096ee5d1f6d09900f6d7/bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "59fa01a2a70ff5de2ebf1690d5b6afa7",
                "sha256": "497103d57d7fca36395dfb51f3e2a629a69a10853cb418d4d3a950326260ddf1"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "59fa01a2a70ff5de2ebf1690d5b6afa7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 283178,
            "upload_time": "2022-12-12T06:28:07",
            "upload_time_iso_8601": "2022-12-12T06:28:07.982402Z",
            "url": "https://files.pythonhosted.org/packages/d2/7f/2dc19994a39992e1e6b425c4e19f81615a8fad32178a37c6a0f66fa800bd/bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "18e238cd00afe22d4c2d0c7a2741fda9",
                "sha256": "cda819b39a4a8950bc007d6f7da75c732a1d621d84c62cc706001892ee1a6c74"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "18e238cd00afe22d4c2d0c7a2741fda9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 280838,
            "upload_time": "2022-12-12T06:28:09",
            "upload_time_iso_8601": "2022-12-12T06:28:09.928476Z",
            "url": "https://files.pythonhosted.org/packages/ad/8f/b08af03db33eefdcb659b27e3c03528e93c3f30da1deb7c9314e5b9309d3/bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "f23689e06ecbcaa7ea0abb1da5ae37ef",
                "sha256": "def2788d06b7745fa42b035aeabff0ebe3852496f4644032df54d9c932786408"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f23689e06ecbcaa7ea0abb1da5ae37ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 273527,
            "upload_time": "2022-12-12T06:28:11",
            "upload_time_iso_8601": "2022-12-12T06:28:11.730963Z",
            "url": "https://files.pythonhosted.org/packages/69/21/022b6b9eca75b2527abe5e5eef41f8eeee25dfa4c850dbe1077010f23b62/bencoder.pyx-3.0.1-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "03ef0dee379acbc533cbc0a761216e6a",
                "sha256": "bea945991e37bb71f9d1015695ec51e5b5e83ef66655d58fa4e62a0cd74985dd"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "03ef0dee379acbc533cbc0a761216e6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 36549,
            "upload_time": "2022-12-12T06:28:13",
            "upload_time_iso_8601": "2022-12-12T06:28:13.786419Z",
            "url": "https://files.pythonhosted.org/packages/b8/7a/6096d84431b55cc834ad33b1013b8b3ae29f5582f9194ffd83aea7f4df03/bencoder.pyx-3.0.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "401fe6f1826d6169695b68a90f3c4a2f",
                "sha256": "3ae8e3797ecc6619fad8f2ca6adb03261323b6bebd5015982a2887974e1f28b7"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "401fe6f1826d6169695b68a90f3c4a2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 41458,
            "upload_time": "2022-12-12T06:28:16",
            "upload_time_iso_8601": "2022-12-12T06:28:16.042962Z",
            "url": "https://files.pythonhosted.org/packages/63/28/fe05522e44ce444a08ae039cf4fd01027a0a2d51d65cbad10d600fd32d07/bencoder.pyx-3.0.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c575be882619f89d084f823d7a39559c",
                "sha256": "53d359a4393aa5a24f665d1fb4bbff1cdd96469152a072feabd6781fddf5b586"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c575be882619f89d084f823d7a39559c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 89391,
            "upload_time": "2022-12-12T06:28:17",
            "upload_time_iso_8601": "2022-12-12T06:28:17.974036Z",
            "url": "https://files.pythonhosted.org/packages/29/24/6ecf5e8fd67e996d6a1c452b4f50162aefabae322073959483d287d155ef/bencoder.pyx-3.0.1-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "18fadef27017b885af7b1faa6962a4a0",
                "sha256": "b8a0512a54ef16368d78739fc3f21591d1cccb75ec098fd35a711d73ec9649e6"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18fadef27017b885af7b1faa6962a4a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 48764,
            "upload_time": "2022-12-12T06:28:19",
            "upload_time_iso_8601": "2022-12-12T06:28:19.795987Z",
            "url": "https://files.pythonhosted.org/packages/e4/66/7c1531d8673efa2c3da58f6acf1bb13d3d17bb2df9fea836fc65f14b53b6/bencoder.pyx-3.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "86e839fcc756c8f60f6c2a675977b27a",
                "sha256": "0c266900c2729698805f238bce39c5c67c847b6ce8b6edd74633063903ecba90"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "86e839fcc756c8f60f6c2a675977b27a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 43729,
            "upload_time": "2022-12-12T06:28:21",
            "upload_time_iso_8601": "2022-12-12T06:28:21.767378Z",
            "url": "https://files.pythonhosted.org/packages/1c/91/d283d750ebad7c66a95df4198dc27fca5cd5c8d897cc99f207379f1d149f/bencoder.pyx-3.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c8258d4c29799bce02b37f2f03920417",
                "sha256": "edbf3c20ce8d71b2c78e323b488e31ff7a4d54809cc7223c469c7cc74a04bfd3"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c8258d4c29799bce02b37f2f03920417",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 256064,
            "upload_time": "2022-12-12T06:28:24",
            "upload_time_iso_8601": "2022-12-12T06:28:24.039216Z",
            "url": "https://files.pythonhosted.org/packages/2f/c5/34420ae1f8b36e2a584b537c3496bf1ad87e1ea693f4f6e11925273b71a0/bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7a887f43d2cc19fc66dbc372f6558136",
                "sha256": "79f3703d3cfbece6a9d56d9c842bd7ef39427d0da0f49e0426a97f62c764f916"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7a887f43d2cc19fc66dbc372f6558136",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 268471,
            "upload_time": "2022-12-12T06:28:26",
            "upload_time_iso_8601": "2022-12-12T06:28:26.915265Z",
            "url": "https://files.pythonhosted.org/packages/0b/8f/7dceff6372cf2f7f18d3c4f1569f77d93cb85432315b78812a6bd10c6953/bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b9216a6006c272472f2bcd9270fbe486",
                "sha256": "57648238af3dd515d96f47b619d6c9d5204ec1975491f76e828e77cb9e654221"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b9216a6006c272472f2bcd9270fbe486",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 265497,
            "upload_time": "2022-12-12T06:28:30",
            "upload_time_iso_8601": "2022-12-12T06:28:30.182903Z",
            "url": "https://files.pythonhosted.org/packages/98/c7/42a83ed4ab3a5f04a658d34d23100b4de20e0f45fc35b6ce1213e82cb75c/bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "b400cc2272cdfb126db5ae343357ee4e",
                "sha256": "1df9824c7bc9e2ebf9a534146d0e2cd52a15265098175ac51222ce12a1fd2794"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b400cc2272cdfb126db5ae343357ee4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 247428,
            "upload_time": "2022-12-12T06:28:32",
            "upload_time_iso_8601": "2022-12-12T06:28:32.186390Z",
            "url": "https://files.pythonhosted.org/packages/92/7e/6ab6888f6a60055df95117aeb96707338e5f41c70317e6bfec6913e944f2/bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "191b731722abcb16dc06bd963270635a",
                "sha256": "46e63bda3f0ff0d6150e90d497455b14a5ab7c9ee46f45c5596c02047ae4b058"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "191b731722abcb16dc06bd963270635a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 260444,
            "upload_time": "2022-12-12T06:28:33",
            "upload_time_iso_8601": "2022-12-12T06:28:33.942363Z",
            "url": "https://files.pythonhosted.org/packages/3f/16/d04a943a82dd2c7197d707662933d5629b26b0b2691d2bcaadb3e0cb2ed1/bencoder.pyx-3.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d489dda1bd2f98d80dda5f344545ac04",
                "sha256": "92da96c0ad57ec94c833c1b82110b18e609ee82e13c04f4cac0730e57e551fde"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d489dda1bd2f98d80dda5f344545ac04",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 257437,
            "upload_time": "2022-12-12T06:28:36",
            "upload_time_iso_8601": "2022-12-12T06:28:36.471344Z",
            "url": "https://files.pythonhosted.org/packages/66/39/faf89d838e81abcc35ed0c325834cee89c669ad13daa49af53651d5d0e33/bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "c2ac265d4f14dd70ef2067d8c7448f76",
                "sha256": "5956a8d9f279ccfecb09822bfa70d78e2f7d008e3fc9fd4b1c017e6c122ab93a"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c2ac265d4f14dd70ef2067d8c7448f76",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 252863,
            "upload_time": "2022-12-12T06:28:38",
            "upload_time_iso_8601": "2022-12-12T06:28:38.414826Z",
            "url": "https://files.pythonhosted.org/packages/81/59/228c936802e33cc1821572883db0b76107c0ed45d7b06e53d7a18178b694/bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "61090fdd0e6b1909faf781720cf1c211",
                "sha256": "64bb8881fb35a47140dd36e7e6321d0e2d5f6e16ab3732ab6eb2b3537d41113f"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "61090fdd0e6b1909faf781720cf1c211",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 270561,
            "upload_time": "2022-12-12T06:28:40",
            "upload_time_iso_8601": "2022-12-12T06:28:40.331887Z",
            "url": "https://files.pythonhosted.org/packages/9e/66/2686e15e1d720d4ca06462bb481c9840dc29b558b41edafb0c806effa294/bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "515959579a22534042d2cfd956d9e075",
                "sha256": "625f1a0fbcf2c14e767725d918ca2c3f3b5fe40add3fd7e9507bdb77cba4456e"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "515959579a22534042d2cfd956d9e075",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 268190,
            "upload_time": "2022-12-12T06:28:42",
            "upload_time_iso_8601": "2022-12-12T06:28:42.983339Z",
            "url": "https://files.pythonhosted.org/packages/8b/18/8f678dc0836da2fac524276e45558c67121149b81ac6d86913b59f2b2a9a/bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d738ffa2a9df8eb320c49177eac5541d",
                "sha256": "50e2505a5afb3581c82205c55a504bf03e7e457d5446e54ad00dfe13fd85f247"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d738ffa2a9df8eb320c49177eac5541d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 262482,
            "upload_time": "2022-12-12T06:28:44",
            "upload_time_iso_8601": "2022-12-12T06:28:44.762199Z",
            "url": "https://files.pythonhosted.org/packages/24/6e/3685bd8c90694dd851f95107cd3983d5061346bc51a2489d4f33daf24866/bencoder.pyx-3.0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "ff2858348ffcb68ab14714119582f600",
                "sha256": "13f4699536cc1091c71b998c6858baa8dcf5b4aaa2b1d1b0048036137389b1cf"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ff2858348ffcb68ab14714119582f600",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 36333,
            "upload_time": "2022-12-12T06:28:46",
            "upload_time_iso_8601": "2022-12-12T06:28:46.522048Z",
            "url": "https://files.pythonhosted.org/packages/06/8d/fd4cf547d628a90281feb503ddcf5d12cc2e93e83c812f762b75b0d4fea6/bencoder.pyx-3.0.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "2ac87ccbb60de6753652476f981482af",
                "sha256": "f088264f793bc40afe30fb427ef9ccb3ec18e8ce40f18a8d3f8138145b45c2ed"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ac87ccbb60de6753652476f981482af",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 41356,
            "upload_time": "2022-12-12T06:28:48",
            "upload_time_iso_8601": "2022-12-12T06:28:48.599360Z",
            "url": "https://files.pythonhosted.org/packages/0d/6d/89af843aea0398a30f31e658b8c5a0f1f2cf391a74bded26ccb8666a7c3b/bencoder.pyx-3.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "61a4471f7cf3b4eddf5b6d85e6aa605e",
                "sha256": "1cd8366485d71d8cf85bdd202ea00eeca0fbb871f11622f8736da53ce00287f5"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61a4471f7cf3b4eddf5b6d85e6aa605e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 35080,
            "upload_time": "2022-12-12T06:28:50",
            "upload_time_iso_8601": "2022-12-12T06:28:50.703839Z",
            "url": "https://files.pythonhosted.org/packages/3c/9d/cab2f7b212e088e01713f7797de18504dfed2536b3be1476a4b8d0c94c49/bencoder.pyx-3.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "7e3fce118176b4923547db3534c11611",
                "sha256": "eaf794a11a2b68e611fe74b40ed589b7f2703f45f8a902dbc29d8ce91bd3174e"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7e3fce118176b4923547db3534c11611",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 44094,
            "upload_time": "2022-12-12T06:28:52",
            "upload_time_iso_8601": "2022-12-12T06:28:52.922837Z",
            "url": "https://files.pythonhosted.org/packages/85/07/8aa2940c016d583ceeef0534c36861a82ed583657fc1c0fb1c424dfc79e0/bencoder.pyx-3.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "41a2ec77dcd96562b15ba798d8b64b8e",
                "sha256": "c5a7f078db5a0d3e8797fa419b669ffdb67849fe3dfef7920631f6c239432aba"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "41a2ec77dcd96562b15ba798d8b64b8e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 46951,
            "upload_time": "2022-12-12T06:28:55",
            "upload_time_iso_8601": "2022-12-12T06:28:55.374874Z",
            "url": "https://files.pythonhosted.org/packages/fc/92/ad9420adca26ad8d390153d5cebe86db763754fda5ee805aab20fa2efcca/bencoder.pyx-3.0.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": {
                "md5": "ff06920a7e7a6624b3967fe404274be8",
                "sha256": "0bc939808d54f92bbc50def70d907952b21020963e22db45548682613e383ab7"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff06920a7e7a6624b3967fe404274be8",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 45418,
            "upload_time": "2022-12-12T06:28:57",
            "upload_time_iso_8601": "2022-12-12T06:28:57.975196Z",
            "url": "https://files.pythonhosted.org/packages/7a/1d/324d3ff8a2ed23bada1439f7fe9f97083ad55cfe650e4d84b70717a719de/bencoder.pyx-3.0.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "8d6e3eb67d49005161f5edb42d5fbb3d",
                "sha256": "bdc25c4b4bb1d56b7584f484dde52353b807e94e81f09b19e6df53113adfb8ac"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d6e3eb67d49005161f5edb42d5fbb3d",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 33001,
            "upload_time": "2022-12-12T06:29:00",
            "upload_time_iso_8601": "2022-12-12T06:29:00.036316Z",
            "url": "https://files.pythonhosted.org/packages/1d/4c/46e879e0c59d0f559bd905806738659a73869f930da323bff18efd5fe11e/bencoder.pyx-3.0.1-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "94c1771a45b22e0e21ce2ac970269b11",
                "sha256": "04f0b4a4c3669187117a58c9ef58b9bf6677ec55ef3c53cd1e420fdb160a890d"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94c1771a45b22e0e21ce2ac970269b11",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 35062,
            "upload_time": "2022-12-12T06:29:02",
            "upload_time_iso_8601": "2022-12-12T06:29:02.310848Z",
            "url": "https://files.pythonhosted.org/packages/0b/5c/a66771af275d62a216f746d9f907a52a912812209f1f5adc899eab1b8b04/bencoder.pyx-3.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "a1cbc1a21889c88ecac193ae99e15899",
                "sha256": "9762e7aa1c1660410a4a2c9786134a2e2b522ea19e463444fb2914946e9ae4d3"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a1cbc1a21889c88ecac193ae99e15899",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 44068,
            "upload_time": "2022-12-12T06:29:04",
            "upload_time_iso_8601": "2022-12-12T06:29:04.808631Z",
            "url": "https://files.pythonhosted.org/packages/1e/a1/ef601808f30bd28beede00134cd4662398744b75ee3e56078be5469f46ae/bencoder.pyx-3.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "9fa1ce4efb09c050a9a4fc5258e03442",
                "sha256": "90f884e0b2e05e7b3685a3be84f6600a6f03820c56e294d8a7c01abaed938dc4"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9fa1ce4efb09c050a9a4fc5258e03442",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 46944,
            "upload_time": "2022-12-12T06:29:06",
            "upload_time_iso_8601": "2022-12-12T06:29:06.604393Z",
            "url": "https://files.pythonhosted.org/packages/69/25/8b1829f88846638dca89602571945eb94637f3f0ba4de88662281eb9c7ee/bencoder.pyx-3.0.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": {
                "md5": "951d53283993d469716a92204a44e180",
                "sha256": "3a433a1e40d5cefe94454576c5924737f13044b6fd7c36623a2bf36934406418"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "951d53283993d469716a92204a44e180",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 45413,
            "upload_time": "2022-12-12T06:29:08",
            "upload_time_iso_8601": "2022-12-12T06:29:08.428854Z",
            "url": "https://files.pythonhosted.org/packages/a2/3a/71282553efcd0893b17050605edf8f7ded480f5b695188074982c408f196/bencoder.pyx-3.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6c8b3d57fb469e38f839c6f43beeac8b",
                "sha256": "e5e6e278e7b60049c1ab018afc0cae027b7c1d1511324f19994d364efe66206a"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6c8b3d57fb469e38f839c6f43beeac8b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 32962,
            "upload_time": "2022-12-12T06:29:10",
            "upload_time_iso_8601": "2022-12-12T06:29:10.146804Z",
            "url": "https://files.pythonhosted.org/packages/36/cb/1d6441dfa8ff385a895e8fe319fbeda908a8bf739593ca8a6d3bd5fb5965/bencoder.pyx-3.0.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "31153760b243b2871916022fa2c95887",
                "sha256": "e9d4c9cc45c76f08412a79f36ae2196f1c49ab7e8032814974b568bc05120ccb"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31153760b243b2871916022fa2c95887",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 35190,
            "upload_time": "2022-12-12T06:29:12",
            "upload_time_iso_8601": "2022-12-12T06:29:12.807395Z",
            "url": "https://files.pythonhosted.org/packages/d2/d3/aa8513588272d6a9ac0805c64cc22521d51bdae2baaa114a048a01068a7c/bencoder.pyx-3.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e12831591373a52f1f883a1a32eec921",
                "sha256": "68b76619a9e022c756c4ced9709ab285dbf1b876d6810d559dc7800b263a6134"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e12831591373a52f1f883a1a32eec921",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 44038,
            "upload_time": "2022-12-12T06:29:14",
            "upload_time_iso_8601": "2022-12-12T06:29:14.704179Z",
            "url": "https://files.pythonhosted.org/packages/9e/35/6d5f7aa72beeafc5c0a4c8e38ecf22629767a9b813d47670dbf22cbc9ece/bencoder.pyx-3.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "63caa37ee47c55c74547af8a8a0f9ada",
                "sha256": "14eba9abd8f9b5a51750e521de97318c54830dc64dcc46dca6af43fa7cded265"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "63caa37ee47c55c74547af8a8a0f9ada",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 46938,
            "upload_time": "2022-12-12T06:29:16",
            "upload_time_iso_8601": "2022-12-12T06:29:16.479113Z",
            "url": "https://files.pythonhosted.org/packages/70/3c/8bff25ea89cfba14fe397d6bb302c66fa7f8722525048c4fbe713fa64c7c/bencoder.pyx-3.0.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": {
                "md5": "edcdcd3a1501f5bc8a803e7c70f10537",
                "sha256": "91a13e7828aab11dac83f5023e6bc391e0295cb805e65719a7d58934deaeecb9"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "edcdcd3a1501f5bc8a803e7c70f10537",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 45385,
            "upload_time": "2022-12-12T06:29:18",
            "upload_time_iso_8601": "2022-12-12T06:29:18.254321Z",
            "url": "https://files.pythonhosted.org/packages/34/75/8045ad1663aa004f391949f034e8d2657c2c94fd0e7b95661b343e55ad01/bencoder.pyx-3.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "24d4a0637524cdd55375a8228d8a674b",
                "sha256": "5663bd65bc5430536efb36070f9c620dac102ead57652724b6b79971cd56a60f"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "24d4a0637524cdd55375a8228d8a674b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 32813,
            "upload_time": "2022-12-12T06:29:20",
            "upload_time_iso_8601": "2022-12-12T06:29:20.036582Z",
            "url": "https://files.pythonhosted.org/packages/7c/9b/d3e89c2b39c98eeffaf46e49b8d4f86d0901795e351d9c4ad89445c2eb51/bencoder.pyx-3.0.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "de90e76808575eb0d977a5055b566754",
                "sha256": "3284f13be2835fa80c637b84118bcdd773f635ff35dcc38082662c77c8c33dbf"
            },
            "downloads": -1,
            "filename": "bencoder.pyx-3.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "de90e76808575eb0d977a5055b566754",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 85736,
            "upload_time": "2022-12-12T06:29:22",
            "upload_time_iso_8601": "2022-12-12T06:29:22.196152Z",
            "url": "https://files.pythonhosted.org/packages/82/ad/ee1f6e89005bae378da05052476b5a9f5e30f21159016d2fa7df33b1c4f1/bencoder.pyx-3.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-12 06:29:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "whtsky",
    "github_project": "bencoder.pyx",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "bencoder.pyx"
}
        
Elapsed time: 0.02113s