pybase64


Namepybase64 JSON
Version 1.3.2 PyPI version JSON
download
home_pagehttps://github.com/mayeut/pybase64
SummaryFast Base64 encoding/decoding
upload_time2024-01-01 16:15:44
maintainer
docs_urlNone
authorMatthieu Darbois
requires_python>=3.6
licenseBSD-2-Clause
keywords base64
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. SETUP VARIABLES
.. |license-status| image:: https://img.shields.io/badge/license-BSD%202--Clause-blue.svg
  :target: https://github.com/mayeut/pybase64/blob/master/LICENSE
.. |pypi-status| image:: https://img.shields.io/pypi/v/pybase64.svg
  :target: https://pypi.python.org/pypi/pybase64
.. |python-versions| image:: https://img.shields.io/pypi/pyversions/pybase64.svg
.. |rtd-status| image:: https://readthedocs.org/projects/pybase64/badge/?version=stable
  :target: http://pybase64.readthedocs.io/en/stable/?badge=stable
  :alt: Documentation Status
.. |gha-status| image:: https://github.com/mayeut/pybase64/workflows/Build%20and%20upload%20to%20PyPI/badge.svg
  :target: https://github.com/mayeut/pybase64/actions?query=workflow%3A%22Build+and+upload+to+PyPI%22
.. |codecov-status| image:: https://codecov.io/gh/mayeut/pybase64/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/mayeut/pybase64/branch/master
.. END OF SETUP

Fast Base64 implementation
==========================

|license-status| |pypi-status| |python-versions| |rtd-status| |gha-status| |codecov-status|

This project is a wrapper on `libbase64 <https://github.com/aklomp/base64>`_.

It aims to provide a fast base64 implementation for base64 encoding/decoding.

Installation
============

.. code::

    pip install pybase64

Usage
=====

``pybase64`` uses the same API as Python base64 "modern interface" (introduced in Python 2.4) for an easy integration.

To get the fastest decoding, it is recommended to use the ``pybase64.b64decode`` and ``validate=True`` when possible.

.. code:: python

    import pybase64

    print(pybase64.b64encode(b'>>>foo???', altchars='_:'))
    # b'Pj4_Zm9vPz8:'
    print(pybase64.b64decode(b'Pj4_Zm9vPz8:', altchars='_:', validate=True))
    # b'>>>foo???'

    # Standard encoding helpers
    print(pybase64.standard_b64encode(b'>>>foo???'))
    # b'Pj4+Zm9vPz8/'
    print(pybase64.standard_b64decode(b'Pj4+Zm9vPz8/'))
    # b'>>>foo???'

    # URL safe encoding helpers
    print(pybase64.urlsafe_b64encode(b'>>>foo???'))
    # b'Pj4-Zm9vPz8_'
    print(pybase64.urlsafe_b64decode(b'Pj4-Zm9vPz8_'))
    # b'>>>foo???'

.. begin cli

A command-line tool is also provided. It has encode, decode and benchmark subcommands.

.. code::

    usage: pybase64 [-h] [-V] {benchmark,encode,decode} ...

    pybase64 command-line tool.

    positional arguments:
      {benchmark,encode,decode}
                            tool help
        benchmark           -h for usage
        encode              -h for usage
        decode              -h for usage

    optional arguments:
      -h, --help            show this help message and exit
      -V, --version         show program's version number and exit

.. end cli

Full documentation on `Read the Docs <http://pybase64.readthedocs.io/en/stable/?badge=stable>`_.

Benchmark
=========

.. begin benchmark

Running Python 3.7.2, Apple LLVM version 10.0.0 (clang-1000.11.45.5), Mac OS X 10.14.2 on an Intel Core i7-4870HQ @ 2.50GHz

.. code::

    pybase64 0.5.0 (C extension active - AVX2)
    bench: altchars=None, validate=False
    pybase64._pybase64.encodebytes:   1734.776 MB/s (13,271,472 bytes -> 17,928,129 bytes)
    pybase64._pybase64.b64encode:     4039.539 MB/s (13,271,472 bytes -> 17,695,296 bytes)
    pybase64._pybase64.b64decode:     1854.423 MB/s (17,695,296 bytes -> 13,271,472 bytes)
    base64.encodebytes:                 78.352 MB/s (13,271,472 bytes -> 17,928,129 bytes)
    base64.b64encode:                  539.840 MB/s (13,271,472 bytes -> 17,695,296 bytes)
    base64.b64decode:                  287.826 MB/s (17,695,296 bytes -> 13,271,472 bytes)
    bench: altchars=None, validate=True
    pybase64._pybase64.b64encode:     4156.607 MB/s (13,271,472 bytes -> 17,695,296 bytes)
    pybase64._pybase64.b64decode:     4107.997 MB/s (17,695,296 bytes -> 13,271,472 bytes)
    base64.b64encode:                  559.342 MB/s (13,271,472 bytes -> 17,695,296 bytes)
    base64.b64decode:                  143.674 MB/s (17,695,296 bytes -> 13,271,472 bytes)
    bench: altchars=b'-_', validate=False
    pybase64._pybase64.b64encode:     2786.776 MB/s (13,271,472 bytes -> 17,695,296 bytes)
    pybase64._pybase64.b64decode:     1124.136 MB/s (17,695,296 bytes -> 13,271,472 bytes)
    base64.b64encode:                  322.427 MB/s (13,271,472 bytes -> 17,695,296 bytes)
    base64.b64decode:                  205.195 MB/s (17,695,296 bytes -> 13,271,472 bytes)
    bench: altchars=b'-_', validate=True
    pybase64._pybase64.b64encode:     2806.271 MB/s (13,271,472 bytes -> 17,695,296 bytes)
    pybase64._pybase64.b64decode:     2740.456 MB/s (17,695,296 bytes -> 13,271,472 bytes)
    base64.b64encode:                  314.709 MB/s (13,271,472 bytes -> 17,695,296 bytes)
    base64.b64decode:                  121.803 MB/s (17,695,296 bytes -> 13,271,472 bytes)

.. end benchmark

.. begin changelog

Changelog
=========
1.3.2
-----
- Update base64 library
- PyPy: fix wrong outcome with non C-contiguous buffer

1.3.1
-----
- Add missing py.typed marker

1.3.0
-----
- Update base64 library
- Add AVX512-VBMI implementation
- Rework extension build to remove adherence on distutils
- Publish python 3.12 wheels
- Documentation now uses furo theme

1.2.3
-----
- Update base64 library
- Publish python 3.11 wheels

1.2.2
-----
- Update base64 library
- Fix C extension build on musl distros
- Publish musllinux wheels

1.2.1
-----
- Publish PyPy 3.8 (pypy38_pp73) wheels

1.2.0
-----
- Release the GIL
- Publish CPython 3.10 wheels
- Drop python 3.5 support

1.1.4
-----
- Add macOS arm64 wheel

1.1.3
-----
- GitHub Actions: fix build on tag

1.1.2
-----
- Add PyPy wheels
- Add aarch64, ppc64le & s390x manylinux wheels

1.1.1
-----
- Move CI from TravisCI/AppVeyor to GitHub Actions
- Fix publication of Linux/macOS wheels

1.1.0
-----
- Add b64encode_as_string, same as b64encode but returns a str object instead of a bytes object
- Add b64decode_as_bytearray, same as b64decode but returns a bytarray object instead of a bytes object
- Speed-Up decoding from UCS1 strings

1.0.2
-----
- Update base64 library
- Publish python 3.9 wheels

1.0.1
-----
- Publish python 3.8 wheels

1.0.0
-----
- Drop python 3.4 support
- Drop python 2.7 support

0.5.0
-----
- Publish python 3.7 wheels
- Drop python 3.3 support

0.4.0
-----
- Speed-up decoding when validate==False

0.3.1
-----
- Fix deployment issues

0.3.0
-----
- Add encodebytes function

0.2.1
-----
- Fixed invalid results on Windows

0.2.0
-----
- Added documentation
- Added subcommands to the main script:

    * help
    * version
    * encode
    * decode
    * benchmark

0.1.2
-----
- Updated base64 native library

0.1.1
-----
- Fixed deployment issues

0.1.0
-----
- First public release

.. end changelog

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mayeut/pybase64",
    "name": "pybase64",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "base64",
    "author": "Matthieu Darbois",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/46/ce/d334f13e90d6874d785812c94e9fd3e50148a6b0beecd34a999063f61d9a/pybase64-1.3.2.tar.gz",
    "platform": null,
    "description": ".. SETUP VARIABLES\n.. |license-status| image:: https://img.shields.io/badge/license-BSD%202--Clause-blue.svg\n  :target: https://github.com/mayeut/pybase64/blob/master/LICENSE\n.. |pypi-status| image:: https://img.shields.io/pypi/v/pybase64.svg\n  :target: https://pypi.python.org/pypi/pybase64\n.. |python-versions| image:: https://img.shields.io/pypi/pyversions/pybase64.svg\n.. |rtd-status| image:: https://readthedocs.org/projects/pybase64/badge/?version=stable\n  :target: http://pybase64.readthedocs.io/en/stable/?badge=stable\n  :alt: Documentation Status\n.. |gha-status| image:: https://github.com/mayeut/pybase64/workflows/Build%20and%20upload%20to%20PyPI/badge.svg\n  :target: https://github.com/mayeut/pybase64/actions?query=workflow%3A%22Build+and+upload+to+PyPI%22\n.. |codecov-status| image:: https://codecov.io/gh/mayeut/pybase64/branch/master/graph/badge.svg\n  :target: https://codecov.io/gh/mayeut/pybase64/branch/master\n.. END OF SETUP\n\nFast Base64 implementation\n==========================\n\n|license-status| |pypi-status| |python-versions| |rtd-status| |gha-status| |codecov-status|\n\nThis project is a wrapper on `libbase64 <https://github.com/aklomp/base64>`_.\n\nIt aims to provide a fast base64 implementation for base64 encoding/decoding.\n\nInstallation\n============\n\n.. code::\n\n    pip install pybase64\n\nUsage\n=====\n\n``pybase64`` uses the same API as Python base64 \"modern interface\" (introduced in Python 2.4) for an easy integration.\n\nTo get the fastest decoding, it is recommended to use the ``pybase64.b64decode`` and ``validate=True`` when possible.\n\n.. code:: python\n\n    import pybase64\n\n    print(pybase64.b64encode(b'>>>foo???', altchars='_:'))\n    # b'Pj4_Zm9vPz8:'\n    print(pybase64.b64decode(b'Pj4_Zm9vPz8:', altchars='_:', validate=True))\n    # b'>>>foo???'\n\n    # Standard encoding helpers\n    print(pybase64.standard_b64encode(b'>>>foo???'))\n    # b'Pj4+Zm9vPz8/'\n    print(pybase64.standard_b64decode(b'Pj4+Zm9vPz8/'))\n    # b'>>>foo???'\n\n    # URL safe encoding helpers\n    print(pybase64.urlsafe_b64encode(b'>>>foo???'))\n    # b'Pj4-Zm9vPz8_'\n    print(pybase64.urlsafe_b64decode(b'Pj4-Zm9vPz8_'))\n    # b'>>>foo???'\n\n.. begin cli\n\nA command-line tool is also provided. It has encode, decode and benchmark subcommands.\n\n.. code::\n\n    usage: pybase64 [-h] [-V] {benchmark,encode,decode} ...\n\n    pybase64 command-line tool.\n\n    positional arguments:\n      {benchmark,encode,decode}\n                            tool help\n        benchmark           -h for usage\n        encode              -h for usage\n        decode              -h for usage\n\n    optional arguments:\n      -h, --help            show this help message and exit\n      -V, --version         show program's version number and exit\n\n.. end cli\n\nFull documentation on `Read the Docs <http://pybase64.readthedocs.io/en/stable/?badge=stable>`_.\n\nBenchmark\n=========\n\n.. begin benchmark\n\nRunning Python 3.7.2, Apple LLVM version 10.0.0 (clang-1000.11.45.5), Mac OS X 10.14.2 on an Intel Core i7-4870HQ @ 2.50GHz\n\n.. code::\n\n    pybase64 0.5.0 (C extension active - AVX2)\n    bench: altchars=None, validate=False\n    pybase64._pybase64.encodebytes:   1734.776 MB/s (13,271,472 bytes -> 17,928,129 bytes)\n    pybase64._pybase64.b64encode:     4039.539 MB/s (13,271,472 bytes -> 17,695,296 bytes)\n    pybase64._pybase64.b64decode:     1854.423 MB/s (17,695,296 bytes -> 13,271,472 bytes)\n    base64.encodebytes:                 78.352 MB/s (13,271,472 bytes -> 17,928,129 bytes)\n    base64.b64encode:                  539.840 MB/s (13,271,472 bytes -> 17,695,296 bytes)\n    base64.b64decode:                  287.826 MB/s (17,695,296 bytes -> 13,271,472 bytes)\n    bench: altchars=None, validate=True\n    pybase64._pybase64.b64encode:     4156.607 MB/s (13,271,472 bytes -> 17,695,296 bytes)\n    pybase64._pybase64.b64decode:     4107.997 MB/s (17,695,296 bytes -> 13,271,472 bytes)\n    base64.b64encode:                  559.342 MB/s (13,271,472 bytes -> 17,695,296 bytes)\n    base64.b64decode:                  143.674 MB/s (17,695,296 bytes -> 13,271,472 bytes)\n    bench: altchars=b'-_', validate=False\n    pybase64._pybase64.b64encode:     2786.776 MB/s (13,271,472 bytes -> 17,695,296 bytes)\n    pybase64._pybase64.b64decode:     1124.136 MB/s (17,695,296 bytes -> 13,271,472 bytes)\n    base64.b64encode:                  322.427 MB/s (13,271,472 bytes -> 17,695,296 bytes)\n    base64.b64decode:                  205.195 MB/s (17,695,296 bytes -> 13,271,472 bytes)\n    bench: altchars=b'-_', validate=True\n    pybase64._pybase64.b64encode:     2806.271 MB/s (13,271,472 bytes -> 17,695,296 bytes)\n    pybase64._pybase64.b64decode:     2740.456 MB/s (17,695,296 bytes -> 13,271,472 bytes)\n    base64.b64encode:                  314.709 MB/s (13,271,472 bytes -> 17,695,296 bytes)\n    base64.b64decode:                  121.803 MB/s (17,695,296 bytes -> 13,271,472 bytes)\n\n.. end benchmark\n\n.. begin changelog\n\nChangelog\n=========\n1.3.2\n-----\n- Update base64 library\n- PyPy: fix wrong outcome with non C-contiguous buffer\n\n1.3.1\n-----\n- Add missing py.typed marker\n\n1.3.0\n-----\n- Update base64 library\n- Add AVX512-VBMI implementation\n- Rework extension build to remove adherence on distutils\n- Publish python 3.12 wheels\n- Documentation now uses furo theme\n\n1.2.3\n-----\n- Update base64 library\n- Publish python 3.11 wheels\n\n1.2.2\n-----\n- Update base64 library\n- Fix C extension build on musl distros\n- Publish musllinux wheels\n\n1.2.1\n-----\n- Publish PyPy 3.8 (pypy38_pp73) wheels\n\n1.2.0\n-----\n- Release the GIL\n- Publish CPython 3.10 wheels\n- Drop python 3.5 support\n\n1.1.4\n-----\n- Add macOS arm64 wheel\n\n1.1.3\n-----\n- GitHub Actions: fix build on tag\n\n1.1.2\n-----\n- Add PyPy wheels\n- Add aarch64, ppc64le & s390x manylinux wheels\n\n1.1.1\n-----\n- Move CI from TravisCI/AppVeyor to GitHub Actions\n- Fix publication of Linux/macOS wheels\n\n1.1.0\n-----\n- Add b64encode_as_string, same as b64encode but returns a str object instead of a bytes object\n- Add b64decode_as_bytearray, same as b64decode but returns a bytarray object instead of a bytes object\n- Speed-Up decoding from UCS1 strings\n\n1.0.2\n-----\n- Update base64 library\n- Publish python 3.9 wheels\n\n1.0.1\n-----\n- Publish python 3.8 wheels\n\n1.0.0\n-----\n- Drop python 3.4 support\n- Drop python 2.7 support\n\n0.5.0\n-----\n- Publish python 3.7 wheels\n- Drop python 3.3 support\n\n0.4.0\n-----\n- Speed-up decoding when validate==False\n\n0.3.1\n-----\n- Fix deployment issues\n\n0.3.0\n-----\n- Add encodebytes function\n\n0.2.1\n-----\n- Fixed invalid results on Windows\n\n0.2.0\n-----\n- Added documentation\n- Added subcommands to the main script:\n\n    * help\n    * version\n    * encode\n    * decode\n    * benchmark\n\n0.1.2\n-----\n- Updated base64 native library\n\n0.1.1\n-----\n- Fixed deployment issues\n\n0.1.0\n-----\n- First public release\n\n.. end changelog\n",
    "bugtrack_url": null,
    "license": "BSD-2-Clause",
    "summary": "Fast Base64 encoding/decoding",
    "version": "1.3.2",
    "project_urls": {
        "Documentation": "https://pybase64.readthedocs.io/en/stable",
        "Homepage": "https://github.com/mayeut/pybase64",
        "Source": "https://github.com/mayeut/pybase64",
        "Tracker": "https://github.com/mayeut/pybase64/issues"
    },
    "split_keywords": [
        "base64"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b179533c64464bb50563821525e5de0961981a6c76768ca4e4e2d0d2f98c9375",
                "md5": "f071db802bad06415dc2724c31889044",
                "sha256": "3f89501c77883568612d9133be6684e36d60c098f30f4d5d6844d3130757c961"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f071db802bad06415dc2724c31889044",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 36126,
            "upload_time": "2024-01-01T16:12:51",
            "upload_time_iso_8601": "2024-01-01T16:12:51.238125Z",
            "url": "https://files.pythonhosted.org/packages/b1/79/533c64464bb50563821525e5de0961981a6c76768ca4e4e2d0d2f98c9375/pybase64-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b254c6a85d743b660bd6f191879dbf2fde3082f95b1754482c2b6ba1c91c8f48",
                "md5": "4a833f7168987429a9a1b0278e484423",
                "sha256": "1da5c376605397e1ff862ec414151eac183af7bd4843527022739144b302b8a9"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a833f7168987429a9a1b0278e484423",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 29482,
            "upload_time": "2024-01-01T16:12:53",
            "upload_time_iso_8601": "2024-01-01T16:12:53.228629Z",
            "url": "https://files.pythonhosted.org/packages/b2/54/c6a85d743b660bd6f191879dbf2fde3082f95b1754482c2b6ba1c91c8f48/pybase64-1.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6beffffaa55d8b655276e595d379350bef0669f52b49d21b6e87b1c2a8f0a52",
                "md5": "cb6e85d958998abcac5a82246f7d17e9",
                "sha256": "cc61af2d33b2103af8507c549932fecb41b25e6d5c2916e0da92532378e3d639"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cb6e85d958998abcac5a82246f7d17e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 54353,
            "upload_time": "2024-01-01T16:12:54",
            "upload_time_iso_8601": "2024-01-01T16:12:54.819447Z",
            "url": "https://files.pythonhosted.org/packages/f6/be/ffffaa55d8b655276e595d379350bef0669f52b49d21b6e87b1c2a8f0a52/pybase64-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec54660d76c8711a03fe270795b09fa7196027e37bf728b4159297911ee12d63",
                "md5": "d77daca3cad040fa84ca9e24ff90acf4",
                "sha256": "2fecde2c7d2bec98f585b57d33a48a54deaeb7dfc01df11e67926d44ddbdb235"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d77daca3cad040fa84ca9e24ff90acf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 52783,
            "upload_time": "2024-01-01T16:12:56",
            "upload_time_iso_8601": "2024-01-01T16:12:56.555673Z",
            "url": "https://files.pythonhosted.org/packages/ec/54/660d76c8711a03fe270795b09fa7196027e37bf728b4159297911ee12d63/pybase64-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01b8983b2ac8a9d041b6118ba4167b2f5f4b5e9d7cacc9f8bc9bef7ba65c2067",
                "md5": "b1c006406d3397d374fac945b0043c3f",
                "sha256": "c4436edcff0cad586fd265d469696d1058ae4ec6b56cc96b180e2a8bcb3eab44"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b1c006406d3397d374fac945b0043c3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 50233,
            "upload_time": "2024-01-01T16:12:58",
            "upload_time_iso_8601": "2024-01-01T16:12:58.073869Z",
            "url": "https://files.pythonhosted.org/packages/01/b8/983b2ac8a9d041b6118ba4167b2f5f4b5e9d7cacc9f8bc9bef7ba65c2067/pybase64-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85942b08e8d962bd9e446f91eaffd2095d8f1cccff386f4a78f93dc3a18fa34a",
                "md5": "c844efe7e3e1323eec9f1ea8df000a10",
                "sha256": "b9c919d38e70b7047f92210de8571422d7ba9df7fb74e35ae43be6e08c6842c9"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c844efe7e3e1323eec9f1ea8df000a10",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 62631,
            "upload_time": "2024-01-01T16:12:59",
            "upload_time_iso_8601": "2024-01-01T16:12:59.767288Z",
            "url": "https://files.pythonhosted.org/packages/85/94/2b08e8d962bd9e446f91eaffd2095d8f1cccff386f4a78f93dc3a18fa34a/pybase64-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66a16eabf3c521d3a4c57bb82cb118ff65ac49a93597c2975728a2c46e19126b",
                "md5": "b313917b44494d0975e27ef55fa7cb75",
                "sha256": "9af3f1700b4bdac7a3dfd3242af14d30b87e21e5940d95430c7ad576c79be101"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b313917b44494d0975e27ef55fa7cb75",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 65991,
            "upload_time": "2024-01-01T16:13:00",
            "upload_time_iso_8601": "2024-01-01T16:13:00.902739Z",
            "url": "https://files.pythonhosted.org/packages/66/a1/6eabf3c521d3a4c57bb82cb118ff65ac49a93597c2975728a2c46e19126b/pybase64-1.3.2-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": {
                "blake2b_256": "d4af81866f0a4fa8af24b1c4d31dc9f3c9cdfaef1c44d7e41f96e3508c075483",
                "md5": "fad00528aaa035bb000d12be79fc772a",
                "sha256": "812f2f8264a7f5e6bbb7605e0df9a2f827cfe2af994b92353bd4183480338104"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fad00528aaa035bb000d12be79fc772a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 55853,
            "upload_time": "2024-01-01T16:13:02",
            "upload_time_iso_8601": "2024-01-01T16:13:02.619470Z",
            "url": "https://files.pythonhosted.org/packages/d4/af/81866f0a4fa8af24b1c4d31dc9f3c9cdfaef1c44d7e41f96e3508c075483/pybase64-1.3.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "392be51a307dc82a520ad60173a0f27af6df90649a8681ac779eb46b96a3cb19",
                "md5": "5b4022dea0ca42e465eb6edb331c49e3",
                "sha256": "fdfbe910e666c6d8b05356668ee6fee8848bfa09fc5d326e58466c30ef8db6c1"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5b4022dea0ca42e465eb6edb331c49e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 60756,
            "upload_time": "2024-01-01T16:13:04",
            "upload_time_iso_8601": "2024-01-01T16:13:04.432387Z",
            "url": "https://files.pythonhosted.org/packages/39/2b/e51a307dc82a520ad60173a0f27af6df90649a8681ac779eb46b96a3cb19/pybase64-1.3.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e8a714398c56df8b3c5a0543a755e7f8009fe1408a85dd02496ecd3da869cef",
                "md5": "bed2537c51f0c0b71932ffa9c3b728ac",
                "sha256": "c99ae0e46bd7bec2c66bd1b5a9115911f15935202c55f71d64cd58dede018c52"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bed2537c51f0c0b71932ffa9c3b728ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 56832,
            "upload_time": "2024-01-01T16:13:06",
            "upload_time_iso_8601": "2024-01-01T16:13:06.182153Z",
            "url": "https://files.pythonhosted.org/packages/8e/8a/714398c56df8b3c5a0543a755e7f8009fe1408a85dd02496ecd3da869cef/pybase64-1.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fca9c8751ace7dd19f5b0656c4ab00c8ecac8d01ec5d086ce89d760d43bc3e14",
                "md5": "544d5637cc48cc6eef2210624075edf7",
                "sha256": "1e52cd080d22960491688b0512d11108da58e8a3e0a28756afef4d201399f932"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "544d5637cc48cc6eef2210624075edf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 54035,
            "upload_time": "2024-01-01T16:13:07",
            "upload_time_iso_8601": "2024-01-01T16:13:07.939975Z",
            "url": "https://files.pythonhosted.org/packages/fc/a9/c8751ace7dd19f5b0656c4ab00c8ecac8d01ec5d086ce89d760d43bc3e14/pybase64-1.3.2-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec64ae11bfd1519271d8afb3ed8d6debe7300c9695802cee51a6c5ccb75c13a4",
                "md5": "23cc31f08c71b2d1178e78aa499d15bc",
                "sha256": "4ae3659c92447d229fd272a90d215b0b3defe88c16ce5be784c8ecff77b4e2b4"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "23cc31f08c71b2d1178e78aa499d15bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 69421,
            "upload_time": "2024-01-01T16:13:09",
            "upload_time_iso_8601": "2024-01-01T16:13:09.037263Z",
            "url": "https://files.pythonhosted.org/packages/ec/64/ae11bfd1519271d8afb3ed8d6debe7300c9695802cee51a6c5ccb75c13a4/pybase64-1.3.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "134dd91de7d8347b305e890af61cb0e5c2b5fee8a762bbe49ded098596f74ab9",
                "md5": "b4fc5b1d384898859f1f6f67791c490f",
                "sha256": "ca3278ea46f026400bad43bf2780bb69d851b4931c99996f6d3172d30e224694"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b4fc5b1d384898859f1f6f67791c490f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 32761,
            "upload_time": "2024-01-01T16:13:10",
            "upload_time_iso_8601": "2024-01-01T16:13:10.193764Z",
            "url": "https://files.pythonhosted.org/packages/13/4d/d91de7d8347b305e890af61cb0e5c2b5fee8a762bbe49ded098596f74ab9/pybase64-1.3.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d024991c47a6e3fff2643eab09f2308e90017f5dd7d699612ea5a9d937c078cc",
                "md5": "5c08872d9b8eac0738f6a9a3830225f0",
                "sha256": "06fc379c0bbb03ce12afbcb11c1dd89943dc297d2eb7f38f17da86567c1e2da9"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5c08872d9b8eac0738f6a9a3830225f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 34750,
            "upload_time": "2024-01-01T16:13:11",
            "upload_time_iso_8601": "2024-01-01T16:13:11.815471Z",
            "url": "https://files.pythonhosted.org/packages/d0/24/991c47a6e3fff2643eab09f2308e90017f5dd7d699612ea5a9d937c078cc/pybase64-1.3.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7db297cef9741f98f34c1f96b9e2b2a0870e77503a38e6fee296b4bd85634392",
                "md5": "71f0569895907ac7ff8ac15223da4ffb",
                "sha256": "db8bdddb2aaa57a1dfbb7133d431bd2f5c2f67b3638f0fe28f6c63a5ce52a03d"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "71f0569895907ac7ff8ac15223da4ffb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 27913,
            "upload_time": "2024-01-01T16:13:13",
            "upload_time_iso_8601": "2024-01-01T16:13:13.367119Z",
            "url": "https://files.pythonhosted.org/packages/7d/b2/97cef9741f98f34c1f96b9e2b2a0870e77503a38e6fee296b4bd85634392/pybase64-1.3.2-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05fc8fabc01a51846ba3c9a96aaec39d443eddeda0e3dca2eeb8765d0c107bf0",
                "md5": "82ee7392c2340ba1f8b07590d8ea8a69",
                "sha256": "1aef411095a3e53ecb232da05cce23518230bbf40b3b4b633b11b98d0f0c5621"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82ee7392c2340ba1f8b07590d8ea8a69",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 36186,
            "upload_time": "2024-01-01T16:13:14",
            "upload_time_iso_8601": "2024-01-01T16:13:14.419121Z",
            "url": "https://files.pythonhosted.org/packages/05/fc/8fabc01a51846ba3c9a96aaec39d443eddeda0e3dca2eeb8765d0c107bf0/pybase64-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfaf648d77a16c3d48c1e8f123221d6cde6802acc18f49bec01d1ee9326c120c",
                "md5": "c38d10e3ebff9c527fd502a1d0985176",
                "sha256": "951a32cb5d280a0ffd50d9dfd74af2d66e9ba6a052200f7b42ab57efd3da4230"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c38d10e3ebff9c527fd502a1d0985176",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 29481,
            "upload_time": "2024-01-01T16:13:15",
            "upload_time_iso_8601": "2024-01-01T16:13:15.485833Z",
            "url": "https://files.pythonhosted.org/packages/cf/af/648d77a16c3d48c1e8f123221d6cde6802acc18f49bec01d1ee9326c120c/pybase64-1.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ccc473f2b598978aa5e9e35ea513220cfbfa9de130859a37fff9ed6092f825c",
                "md5": "b808cf39ae82f0f413070e761a36cf4a",
                "sha256": "21ddd131cf0bbf0ff18138089268fa9e658b205ac9b31cb9fabae6b16b31e2ff"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b808cf39ae82f0f413070e761a36cf4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 56721,
            "upload_time": "2024-01-01T16:13:16",
            "upload_time_iso_8601": "2024-01-01T16:13:16.627450Z",
            "url": "https://files.pythonhosted.org/packages/6c/cc/473f2b598978aa5e9e35ea513220cfbfa9de130859a37fff9ed6092f825c/pybase64-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa427e3e15041fe97a5c9e4d4ec8ea02bde2a7305e64102563f227bfe842abef",
                "md5": "148ee027eff0f4e3660530b61964e3d8",
                "sha256": "31b796e74d691ee75903e38cc6008bfa9163c80814c148b71efb43473ee406ed"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "148ee027eff0f4e3660530b61964e3d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 55147,
            "upload_time": "2024-01-01T16:13:17",
            "upload_time_iso_8601": "2024-01-01T16:13:17.805781Z",
            "url": "https://files.pythonhosted.org/packages/fa/42/7e3e15041fe97a5c9e4d4ec8ea02bde2a7305e64102563f227bfe842abef/pybase64-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a612c359568efae0c3f00b184365071ffba65727be57afe245317c9c81e35476",
                "md5": "8fe577aabfbd10ba7762ff06bf12b64d",
                "sha256": "8bf72833e16eae9e44ae46409b9a32a030bb5e26bc5cf4413dc74241cf2e845a"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8fe577aabfbd10ba7762ff06bf12b64d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 52629,
            "upload_time": "2024-01-01T16:13:18",
            "upload_time_iso_8601": "2024-01-01T16:13:18.992513Z",
            "url": "https://files.pythonhosted.org/packages/a6/12/c359568efae0c3f00b184365071ffba65727be57afe245317c9c81e35476/pybase64-1.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bec25caf624b8292bd0ac0507d13fbad27e9180d11d6cc279897f33d8caffdbe",
                "md5": "2910fa05ca45756f16c48f7a6017952f",
                "sha256": "227e1b6c31d5306ba2820680b61ba7739fbc92a46ba1c6335d4e9abeff2338da"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2910fa05ca45756f16c48f7a6017952f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 65064,
            "upload_time": "2024-01-01T16:13:20",
            "upload_time_iso_8601": "2024-01-01T16:13:20.831324Z",
            "url": "https://files.pythonhosted.org/packages/be/c2/5caf624b8292bd0ac0507d13fbad27e9180d11d6cc279897f33d8caffdbe/pybase64-1.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d97f681a3af77eef85ceb1478504110b4b4c522008fca50a629036c590f5ffd4",
                "md5": "44a3581f5e929a5f20eb24ebd1b482b5",
                "sha256": "19f3a2ade62217ee42e36b43d781589b9e265556191c30b72cf05f3f64aa9f2f"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44a3581f5e929a5f20eb24ebd1b482b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 68315,
            "upload_time": "2024-01-01T16:13:21",
            "upload_time_iso_8601": "2024-01-01T16:13:21.969747Z",
            "url": "https://files.pythonhosted.org/packages/d9/7f/681a3af77eef85ceb1478504110b4b4c522008fca50a629036c590f5ffd4/pybase64-1.3.2-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": {
                "blake2b_256": "cf860e238e04b76c2aa0336e737f0003fe605e935597baf916c01317f6450473",
                "md5": "d1addd3756bcc37f16e00a214150981f",
                "sha256": "1d67fdb1ef66f154d2d116a1e74fb4f60a3812cc43fd0907dd9fc05526fae763"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d1addd3756bcc37f16e00a214150981f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 58134,
            "upload_time": "2024-01-01T16:13:23",
            "upload_time_iso_8601": "2024-01-01T16:13:23.200198Z",
            "url": "https://files.pythonhosted.org/packages/cf/86/0e238e04b76c2aa0336e737f0003fe605e935597baf916c01317f6450473/pybase64-1.3.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e537559f28c582f825ad7b8e464e76cdd4ac47e23ffdf39b019266488efe52af",
                "md5": "38654ebf5a4c061d020523008372b0dd",
                "sha256": "bbfa7795782ff5079ddf183ffed6a67ec149a543cb0edf4902f875c31857a8ee"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "38654ebf5a4c061d020523008372b0dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 62992,
            "upload_time": "2024-01-01T16:13:24",
            "upload_time_iso_8601": "2024-01-01T16:13:24.450710Z",
            "url": "https://files.pythonhosted.org/packages/e5/37/559f28c582f825ad7b8e464e76cdd4ac47e23ffdf39b019266488efe52af/pybase64-1.3.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98b1ff84492a6f3788a26c764a3754ac14955606a999c58f382421b9470f3a6c",
                "md5": "56ee302183ef57e1f8d3ea38fc493374",
                "sha256": "9ca4bb2efce3de2179adf57dafe2a7f7cf5dcc5361d04f9a2e8c58e93cca6741"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "56ee302183ef57e1f8d3ea38fc493374",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 59136,
            "upload_time": "2024-01-01T16:13:25",
            "upload_time_iso_8601": "2024-01-01T16:13:25.619054Z",
            "url": "https://files.pythonhosted.org/packages/98/b1/ff84492a6f3788a26c764a3754ac14955606a999c58f382421b9470f3a6c/pybase64-1.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58f55fb41efed27af782c7b6b4d1c4501b0b91c88bb3b444a48bc2c1b3502b1e",
                "md5": "16772798a4a4bdfe77b34d879dadc441",
                "sha256": "d5ee9f5e7dabc4921abd8b5408fc6f9f330e9383d62fe69b142c403f3632ecd1"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "16772798a4a4bdfe77b34d879dadc441",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 56493,
            "upload_time": "2024-01-01T16:13:26",
            "upload_time_iso_8601": "2024-01-01T16:13:26.722934Z",
            "url": "https://files.pythonhosted.org/packages/58/f5/5fb41efed27af782c7b6b4d1c4501b0b91c88bb3b444a48bc2c1b3502b1e/pybase64-1.3.2-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb4414bc773dde707289e0e5b6ace677c2679d04b9e0fbb4d8aa158142bdf2da",
                "md5": "5a313fbfd4d2874b07d1bd91ca376757",
                "sha256": "f0ab56e017acaa59de96aa0a8e5f3aab88d3831d873426e003e11d39a91e7a84"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a313fbfd4d2874b07d1bd91ca376757",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 71811,
            "upload_time": "2024-01-01T16:13:28",
            "upload_time_iso_8601": "2024-01-01T16:13:28.171931Z",
            "url": "https://files.pythonhosted.org/packages/eb/44/14bc773dde707289e0e5b6ace677c2679d04b9e0fbb4d8aa158142bdf2da/pybase64-1.3.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b97e3f22466db925d5be081d9ece9070e805e52e7dd809bcd09cedc0179f88a",
                "md5": "b0f1181d5e95a30bbedbd503ef5cbbe8",
                "sha256": "7b6358d0cc13f3d1764cccdce0af563ec6abc79835fa7f25d1b7aa45da6393e4"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "b0f1181d5e95a30bbedbd503ef5cbbe8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 32748,
            "upload_time": "2024-01-01T16:13:30",
            "upload_time_iso_8601": "2024-01-01T16:13:30.044304Z",
            "url": "https://files.pythonhosted.org/packages/6b/97/e3f22466db925d5be081d9ece9070e805e52e7dd809bcd09cedc0179f88a/pybase64-1.3.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ffc14fb1f5ae473b5d18063acc24494e2d4c32a4d65d7ac3ebd4cd178c10341",
                "md5": "3745a37ac2c49246e2a287cfdc1df251",
                "sha256": "98b186d0f3cad2ac164970e3a68a6a46c6b9c5c3f3c4d925f6181883d2a62470"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3745a37ac2c49246e2a287cfdc1df251",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 34757,
            "upload_time": "2024-01-01T16:13:32",
            "upload_time_iso_8601": "2024-01-01T16:13:32.099958Z",
            "url": "https://files.pythonhosted.org/packages/7f/fc/14fb1f5ae473b5d18063acc24494e2d4c32a4d65d7ac3ebd4cd178c10341/pybase64-1.3.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3b8eb36609c5bb8678d96b07a371c91c711ffcaca3a397be22925154ce02843",
                "md5": "471c0897d225a5e0cf50bf1fa4bdcc85",
                "sha256": "26f3153652bf4da3f7e634f13d44c4bb48b780551a6abd8f98d54745d3a83404"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "471c0897d225a5e0cf50bf1fa4bdcc85",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 27918,
            "upload_time": "2024-01-01T16:13:33",
            "upload_time_iso_8601": "2024-01-01T16:13:33.155463Z",
            "url": "https://files.pythonhosted.org/packages/e3/b8/eb36609c5bb8678d96b07a371c91c711ffcaca3a397be22925154ce02843/pybase64-1.3.2-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d22f96fddef34521c2f971cc92f8beeda2fcedb0669154cf8baf39d79dc8b639",
                "md5": "adb24a25616961bead27b315c2115942",
                "sha256": "dc7f4628dafb04aa338bf14535e9db3579796f49bdebb03f9250d0a12b1f36cc"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "adb24a25616961bead27b315c2115942",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 36203,
            "upload_time": "2024-01-01T16:13:34",
            "upload_time_iso_8601": "2024-01-01T16:13:34.614272Z",
            "url": "https://files.pythonhosted.org/packages/d2/2f/96fddef34521c2f971cc92f8beeda2fcedb0669154cf8baf39d79dc8b639/pybase64-1.3.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f5642a34846b1e70ad7e63c990f46d49e5912daf64cd7cc689c01e75a8a8818",
                "md5": "7b57d5b9f4521d358e2cc31871003746",
                "sha256": "e47bc67434a7e76fac34170f8d6091086acc1807fdad8fdf2069b516d73e9e38"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7b57d5b9f4521d358e2cc31871003746",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 29448,
            "upload_time": "2024-01-01T16:13:36",
            "upload_time_iso_8601": "2024-01-01T16:13:36.263858Z",
            "url": "https://files.pythonhosted.org/packages/2f/56/42a34846b1e70ad7e63c990f46d49e5912daf64cd7cc689c01e75a8a8818/pybase64-1.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a84c6a74369e5aa7c763f14bef707fc756a9cd37eb502203ef35215fe314c80",
                "md5": "4d626f1cc64e14a0d461777ead861c97",
                "sha256": "349c3b6705ab7fd1f94c042d03482c66ff819274d3642ee6f7ec6978553da7b3"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4d626f1cc64e14a0d461777ead861c97",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 56559,
            "upload_time": "2024-01-01T16:13:37",
            "upload_time_iso_8601": "2024-01-01T16:13:37.351461Z",
            "url": "https://files.pythonhosted.org/packages/1a/84/c6a74369e5aa7c763f14bef707fc756a9cd37eb502203ef35215fe314c80/pybase64-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5847d71b8fb760f5f361935fc951d203ef1c7b73afc45315d64d7d4846fe83c",
                "md5": "8a5ccc558f09102c423c74be6145dad8",
                "sha256": "b9d45188090f5af2948baab32624f8da87d569fa27f769b05264554c54be1f49"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8a5ccc558f09102c423c74be6145dad8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 55084,
            "upload_time": "2024-01-01T16:13:38",
            "upload_time_iso_8601": "2024-01-01T16:13:38.521107Z",
            "url": "https://files.pythonhosted.org/packages/b5/84/7d71b8fb760f5f361935fc951d203ef1c7b73afc45315d64d7d4846fe83c/pybase64-1.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46231c24c132cbf5f37761784448f54f254fe4ad6f0db659f8807442af9b2ec7",
                "md5": "271210d3558ac363c8993f7aa1c79fc3",
                "sha256": "fb2d1526fa41631673aa92290195b38015e4dea8fb265a7f9a7bb4d17eb98a8f"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "271210d3558ac363c8993f7aa1c79fc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 52595,
            "upload_time": "2024-01-01T16:13:39",
            "upload_time_iso_8601": "2024-01-01T16:13:39.671561Z",
            "url": "https://files.pythonhosted.org/packages/46/23/1c24c132cbf5f37761784448f54f254fe4ad6f0db659f8807442af9b2ec7/pybase64-1.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f77f19cb4e7d9b15729493026ebe4f1884ea2b4db94155024182da47257ecc94",
                "md5": "da5858e75a22997acd6fda60d116c4fa",
                "sha256": "3f038d3da111399a4246bc3f9c588956bc666e48192281759b9d310c423fcbcb"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "da5858e75a22997acd6fda60d116c4fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 64790,
            "upload_time": "2024-01-01T16:13:41",
            "upload_time_iso_8601": "2024-01-01T16:13:41.164802Z",
            "url": "https://files.pythonhosted.org/packages/f7/7f/19cb4e7d9b15729493026ebe4f1884ea2b4db94155024182da47257ecc94/pybase64-1.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "785b95c84d6cba025cc990d963b1dfe3354d8600b3f640f9b428b31a6a8a0223",
                "md5": "049baef4114c525c442129f643eb7232",
                "sha256": "a6f34260036cd94b83c450dadb0d9316cdd468dfddd0aadb20837cb7f3e4b3d4"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "049baef4114c525c442129f643eb7232",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 68116,
            "upload_time": "2024-01-01T16:13:42",
            "upload_time_iso_8601": "2024-01-01T16:13:42.914195Z",
            "url": "https://files.pythonhosted.org/packages/78/5b/95c84d6cba025cc990d963b1dfe3354d8600b3f640f9b428b31a6a8a0223/pybase64-1.3.2-cp312-cp312-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": {
                "blake2b_256": "d78926581089f65a21b13e6372c179716dad10fd01a113e9842018f15fc9bce4",
                "md5": "2091686c34aa909ffee808b3de8f0493",
                "sha256": "8c1dabbcfbc09d2cd41b02f0c9caaa5afc9282855b4b32451cb03af3fc5ff6ff"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2091686c34aa909ffee808b3de8f0493",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 58091,
            "upload_time": "2024-01-01T16:13:44",
            "upload_time_iso_8601": "2024-01-01T16:13:44.151548Z",
            "url": "https://files.pythonhosted.org/packages/d7/89/26581089f65a21b13e6372c179716dad10fd01a113e9842018f15fc9bce4/pybase64-1.3.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b38dd9451d5522b9a5e24debdeaa41e95a0209b7e4e3d02346babb553e750d40",
                "md5": "5dee83424525fda968d6fcaece03af11",
                "sha256": "2c07669c87f66a164aba142cd812f1efb84b8bbb616c2cc35a28bd5c66d6414b"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5dee83424525fda968d6fcaece03af11",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 62900,
            "upload_time": "2024-01-01T16:13:45",
            "upload_time_iso_8601": "2024-01-01T16:13:45.853513Z",
            "url": "https://files.pythonhosted.org/packages/b3/8d/d9451d5522b9a5e24debdeaa41e95a0209b7e4e3d02346babb553e750d40/pybase64-1.3.2-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7ab91e3a3c00d5c2a80bb4714ccbad498fe5df3d62f819aa85c54e0fd12f82d",
                "md5": "6a9c01ccea04b4285eb2cd6a41bbf967",
                "sha256": "609b5c1fe84251b519e5f7e5c73c25635f4b722243b36f9aefe98a27d8b96938"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6a9c01ccea04b4285eb2cd6a41bbf967",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 59102,
            "upload_time": "2024-01-01T16:13:47",
            "upload_time_iso_8601": "2024-01-01T16:13:47.415903Z",
            "url": "https://files.pythonhosted.org/packages/c7/ab/91e3a3c00d5c2a80bb4714ccbad498fe5df3d62f819aa85c54e0fd12f82d/pybase64-1.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e0a197fde32f3ee28a877bbc03f4797d9e3e244eeae5ede68d165c94b22c7f1",
                "md5": "ac8af251cecba8a6b88f9ac061daad41",
                "sha256": "736b0163926b2eb4e592dee7b41f89a29c2d3d0bcf93cb34fa9b84cfff948258"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "ac8af251cecba8a6b88f9ac061daad41",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 56347,
            "upload_time": "2024-01-01T16:13:49",
            "upload_time_iso_8601": "2024-01-01T16:13:49.236936Z",
            "url": "https://files.pythonhosted.org/packages/3e/0a/197fde32f3ee28a877bbc03f4797d9e3e244eeae5ede68d165c94b22c7f1/pybase64-1.3.2-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7845ade01b7112eb72cddd959f3affc1f2d5f48ab8dbe647b734804a0fc7f6c8",
                "md5": "fbf5d8d1c9e401f9d4ded7505f0d2692",
                "sha256": "5f6a6b9dbb8257de1aac18c7b25e0d8849f3016a067743124e18de436e930f00"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbf5d8d1c9e401f9d4ded7505f0d2692",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 71658,
            "upload_time": "2024-01-01T16:13:50",
            "upload_time_iso_8601": "2024-01-01T16:13:50.416676Z",
            "url": "https://files.pythonhosted.org/packages/78/45/ade01b7112eb72cddd959f3affc1f2d5f48ab8dbe647b734804a0fc7f6c8/pybase64-1.3.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3364514afe689a3477372decc8552faba390fcc0b3b1942297048195bff85065",
                "md5": "c0c2f5d813b39bc80a85d76d9a070c23",
                "sha256": "fbacb2f79e4dabf3abe25c247bea8000360fd0babb5b87579427310d852c8325"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "c0c2f5d813b39bc80a85d76d9a070c23",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 32814,
            "upload_time": "2024-01-01T16:13:51",
            "upload_time_iso_8601": "2024-01-01T16:13:51.535463Z",
            "url": "https://files.pythonhosted.org/packages/33/64/514afe689a3477372decc8552faba390fcc0b3b1942297048195bff85065/pybase64-1.3.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f08a49a4d5a397eb30c363d0b5ae2f6972760aabf4a512493c53435623daa80f",
                "md5": "c6ce3ad18a59e316d4b0e5e7afb6dd3c",
                "sha256": "e8aec2d73a622ddf3c532ea860de6aebfaab646a6a6bb6ffeca295de106235e9"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c6ce3ad18a59e316d4b0e5e7afb6dd3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 34794,
            "upload_time": "2024-01-01T16:13:52",
            "upload_time_iso_8601": "2024-01-01T16:13:52.804088Z",
            "url": "https://files.pythonhosted.org/packages/f0/8a/49a4d5a397eb30c363d0b5ae2f6972760aabf4a512493c53435623daa80f/pybase64-1.3.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef8dda915e46768ebf62ca936422ee7dee103f1c7e6a2b4de2497007d45943ee",
                "md5": "ba753e2bd90975c75218de334eba0b8f",
                "sha256": "9cd58fc35b81ccf647ae2d570fc957182b3a3b3f9b48b1f1d6d97e8cebd4c8d6"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "ba753e2bd90975c75218de334eba0b8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 27910,
            "upload_time": "2024-01-01T16:13:53",
            "upload_time_iso_8601": "2024-01-01T16:13:53.838884Z",
            "url": "https://files.pythonhosted.org/packages/ef/8d/da915e46768ebf62ca936422ee7dee103f1c7e6a2b4de2497007d45943ee/pybase64-1.3.2-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a25961b50be89f886275a80f03c9eff7ea7432f286d8e02205c8a79d375ab918",
                "md5": "b97a4a26ed7804fdc86406a8756a12f8",
                "sha256": "7a919d5129a543033a40cce7c4d26760953bb0108c1550b99961d7497131c60f"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b97a4a26ed7804fdc86406a8756a12f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 36055,
            "upload_time": "2024-01-01T16:13:55",
            "upload_time_iso_8601": "2024-01-01T16:13:55.216931Z",
            "url": "https://files.pythonhosted.org/packages/a2/59/61b50be89f886275a80f03c9eff7ea7432f286d8e02205c8a79d375ab918/pybase64-1.3.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cbeb3c35b09df684c2a49cbebed820e7170c91ed1188d9d0159b2417c2739ac",
                "md5": "3fcb52ecbb80f58ca5c6fb6fa5dedb08",
                "sha256": "88ca827cc2fca05b22e61bfebbe5ba85e9fb5d4ce5c376ad630a52b30bf20456"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3fcb52ecbb80f58ca5c6fb6fa5dedb08",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 54199,
            "upload_time": "2024-01-01T16:13:56",
            "upload_time_iso_8601": "2024-01-01T16:13:56.956376Z",
            "url": "https://files.pythonhosted.org/packages/0c/be/b3c35b09df684c2a49cbebed820e7170c91ed1188d9d0159b2417c2739ac/pybase64-1.3.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99bf713a56b55779e71aff25fa3474cd267cab44a2838c9a864ee2eeee365077",
                "md5": "d70b4689eb655ba317d4ca99a4b22644",
                "sha256": "28e3ec4f74042352a85efb3c19ed9b115ff968bd16cc916a7fd70e6ae99cf67d"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d70b4689eb655ba317d4ca99a4b22644",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 52537,
            "upload_time": "2024-01-01T16:13:58",
            "upload_time_iso_8601": "2024-01-01T16:13:58.195463Z",
            "url": "https://files.pythonhosted.org/packages/99/bf/713a56b55779e71aff25fa3474cd267cab44a2838c9a864ee2eeee365077/pybase64-1.3.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5043a2b6a1a7fc1a185f8cf5ce40aeeaf3508d74a367fec2242e09d948af7b74",
                "md5": "48f0035323bcddad3690b5b47624fa9c",
                "sha256": "76662aa43a7a3d8ae2d51779c5a223fbaa4fa07925dead4c234316fc938084c2"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "48f0035323bcddad3690b5b47624fa9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 50001,
            "upload_time": "2024-01-01T16:13:59",
            "upload_time_iso_8601": "2024-01-01T16:13:59.959490Z",
            "url": "https://files.pythonhosted.org/packages/50/43/a2b6a1a7fc1a185f8cf5ce40aeeaf3508d74a367fec2242e09d948af7b74/pybase64-1.3.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e73d116836f0db42a2393cdcc8c9e656d884b8c9b727db66058d710b8ab12f1f",
                "md5": "84e187d2d638ea1d0c66b5dc2b472d03",
                "sha256": "b95141be248c37a055deac1730d41f2a1715d41355a330b44738b2e4d3de28b8"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "84e187d2d638ea1d0c66b5dc2b472d03",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 62322,
            "upload_time": "2024-01-01T16:14:01",
            "upload_time_iso_8601": "2024-01-01T16:14:01.577758Z",
            "url": "https://files.pythonhosted.org/packages/e7/3d/116836f0db42a2393cdcc8c9e656d884b8c9b727db66058d710b8ab12f1f/pybase64-1.3.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5be7bb1166a97950b1939441796f075b8410259e15e545eb0fed5e47701d770a",
                "md5": "abab70a21df6fe31bdf8baaa58643fc3",
                "sha256": "48f778c3bf3080d4a6230cd65eb06f0c0d3e05bb587fa7910db60e99815958a4"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "abab70a21df6fe31bdf8baaa58643fc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 65547,
            "upload_time": "2024-01-01T16:14:02",
            "upload_time_iso_8601": "2024-01-01T16:14:02.919460Z",
            "url": "https://files.pythonhosted.org/packages/5b/e7/bb1166a97950b1939441796f075b8410259e15e545eb0fed5e47701d770a/pybase64-1.3.2-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": {
                "blake2b_256": "8d83a98f2cec3b5d7a93b5f38a1193d6a98b785e6866b689ed438cc365e12a89",
                "md5": "1417808ad4e1bce6ae72b9e9cdc55157",
                "sha256": "fde83acf303fe3a73f6ef4841866211c4ec7b4dc94b7439e1079089896efe8e0"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1417808ad4e1bce6ae72b9e9cdc55157",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 55438,
            "upload_time": "2024-01-01T16:14:04",
            "upload_time_iso_8601": "2024-01-01T16:14:04.833402Z",
            "url": "https://files.pythonhosted.org/packages/8d/83/a98f2cec3b5d7a93b5f38a1193d6a98b785e6866b689ed438cc365e12a89/pybase64-1.3.2-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b57ed88f7f9c6f6f2171ae8a83ef53c55201f1190968c49a361e2ee7b450478",
                "md5": "107b5baa021e446107ebeb8d0b13cde6",
                "sha256": "4f8c20fb576bc9b54b547da8b3ce26e43e2447983d67197e13bc21e6874ed8ef"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "107b5baa021e446107ebeb8d0b13cde6",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 60111,
            "upload_time": "2024-01-01T16:14:06",
            "upload_time_iso_8601": "2024-01-01T16:14:06.041381Z",
            "url": "https://files.pythonhosted.org/packages/7b/57/ed88f7f9c6f6f2171ae8a83ef53c55201f1190968c49a361e2ee7b450478/pybase64-1.3.2-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37d63498ca16b6f4e99c4321013905f03c7be3655ed13875535f27b1aa30560a",
                "md5": "98197084a3a71f2f1c795c7e901f7e69",
                "sha256": "c0c8be6e23c28f98ec5d8f35a638676f983129651a37dc08c676e8edd7f2cf20"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "98197084a3a71f2f1c795c7e901f7e69",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 56154,
            "upload_time": "2024-01-01T16:14:07",
            "upload_time_iso_8601": "2024-01-01T16:14:07.247992Z",
            "url": "https://files.pythonhosted.org/packages/37/d6/3498ca16b6f4e99c4321013905f03c7be3655ed13875535f27b1aa30560a/pybase64-1.3.2-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3d90f7858a94d3ea8bd02314f7b7ebf6cc21a7068f98468ab4f32bed67804c8",
                "md5": "215bb47fc738259b22167b8b3a301b9e",
                "sha256": "e0f65f6d682d72316d877c86b677793abaa65b391a3692767a077faced4b7802"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "215bb47fc738259b22167b8b3a301b9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 53468,
            "upload_time": "2024-01-01T16:14:08",
            "upload_time_iso_8601": "2024-01-01T16:14:08.405565Z",
            "url": "https://files.pythonhosted.org/packages/e3/d9/0f7858a94d3ea8bd02314f7b7ebf6cc21a7068f98468ab4f32bed67804c8/pybase64-1.3.2-cp36-cp36m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c187e69182a58602999c2eaeec0ce90efb7dfdf9bf867cae27654ffa08fe452",
                "md5": "9a0eb7415e0ce155581eea34328ca4e9",
                "sha256": "4876c26f59c1ed4e1d63f947cefd5536a3511f74bc3c85afeaf81f75bcd21ff3"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a0eb7415e0ce155581eea34328ca4e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 68775,
            "upload_time": "2024-01-01T16:14:10",
            "upload_time_iso_8601": "2024-01-01T16:14:10.126860Z",
            "url": "https://files.pythonhosted.org/packages/2c/18/7e69182a58602999c2eaeec0ce90efb7dfdf9bf867cae27654ffa08fe452/pybase64-1.3.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5f96a30c9e6ae4c90b0669ac85f2dc656e2aa9decd7903cddf42fd04d0ee776",
                "md5": "777f13088b3384e824c340c0faa12fee",
                "sha256": "a52a28b1f7b1f8a28c960637ec5c6e7fd90dadd5958b6c52632db704b6fa01a3"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "777f13088b3384e824c340c0faa12fee",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 33125,
            "upload_time": "2024-01-01T16:14:11",
            "upload_time_iso_8601": "2024-01-01T16:14:11.858138Z",
            "url": "https://files.pythonhosted.org/packages/d5/f9/6a30c9e6ae4c90b0669ac85f2dc656e2aa9decd7903cddf42fd04d0ee776/pybase64-1.3.2-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6b74b4218df5e910a5fec9b6d2420c248ce923f0fb9d367363c39cf3a03fc41",
                "md5": "9b4fe46e8cc16700a547942851d7339c",
                "sha256": "9ef6f22fc4223c8fd92cce2bf2d5fb4e26940319dec28ed5ac0e525076df2068"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9b4fe46e8cc16700a547942851d7339c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 35323,
            "upload_time": "2024-01-01T16:14:13",
            "upload_time_iso_8601": "2024-01-01T16:14:13.115497Z",
            "url": "https://files.pythonhosted.org/packages/a6/b7/4b4218df5e910a5fec9b6d2420c248ce923f0fb9d367363c39cf3a03fc41/pybase64-1.3.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77d542be46c00cade73d9786919092b1e5525534b8aae29f3b183fc8110b129c",
                "md5": "97cb6e1d9bcac0af60fea015882a810f",
                "sha256": "e19c6fe8ce448402137e8906bb4b4ec193a3152bd492e9bb2889b2ac705e8a17"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97cb6e1d9bcac0af60fea015882a810f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 36045,
            "upload_time": "2024-01-01T16:14:14",
            "upload_time_iso_8601": "2024-01-01T16:14:14.844632Z",
            "url": "https://files.pythonhosted.org/packages/77/d5/42be46c00cade73d9786919092b1e5525534b8aae29f3b183fc8110b129c/pybase64-1.3.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92e088f5d1fa5a8aa1c5a18afac0b43ddacc7bdd7df7c7fff98e5f39fc7896a4",
                "md5": "1ead9cb3472dc43afd69423300530855",
                "sha256": "0f07fb1f4884acc86272d7fe93f0475c85632d38806e03c69a03188b4367edec"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1ead9cb3472dc43afd69423300530855",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 55206,
            "upload_time": "2024-01-01T16:14:16",
            "upload_time_iso_8601": "2024-01-01T16:14:16.582857Z",
            "url": "https://files.pythonhosted.org/packages/92/e0/88f5d1fa5a8aa1c5a18afac0b43ddacc7bdd7df7c7fff98e5f39fc7896a4/pybase64-1.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24ddbd4a2525180a77bab29aecf617380b7c7cbf593f723f4b322cb9a24866f2",
                "md5": "77d986039cb89f3a56e19b2bb1db23d9",
                "sha256": "bc6a436a0cb2e8e78c92d1a98b2cb37bccb05bdf62225c0a1cda482ffa33a71a"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "77d986039cb89f3a56e19b2bb1db23d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 53509,
            "upload_time": "2024-01-01T16:14:17",
            "upload_time_iso_8601": "2024-01-01T16:14:17.789384Z",
            "url": "https://files.pythonhosted.org/packages/24/dd/bd4a2525180a77bab29aecf617380b7c7cbf593f723f4b322cb9a24866f2/pybase64-1.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c00dd38ad68cfdaeb45515df968d39bdb7ad7ba0d454e1b8a5332e7bc5a3b3d6",
                "md5": "3ef45ea599ed8044ddfbc8ec4cb1bf26",
                "sha256": "bb7420858e1c0608b895910495c664ac586dadef22cec5a2194e71a8917ec92e"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3ef45ea599ed8044ddfbc8ec4cb1bf26",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 51001,
            "upload_time": "2024-01-01T16:14:19",
            "upload_time_iso_8601": "2024-01-01T16:14:19.958452Z",
            "url": "https://files.pythonhosted.org/packages/c0/0d/d38ad68cfdaeb45515df968d39bdb7ad7ba0d454e1b8a5332e7bc5a3b3d6/pybase64-1.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c99b0f875d833c8906b335c61362e99c1006a61b0e9f5eface90826bb918fe84",
                "md5": "1fd7e59366894431836b85867f6ae378",
                "sha256": "085f0d8b7e593f5374f32483e5dcf543715a9a9fc1ea310f8d2ed664dabf7cdb"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1fd7e59366894431836b85867f6ae378",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 63306,
            "upload_time": "2024-01-01T16:14:21",
            "upload_time_iso_8601": "2024-01-01T16:14:21.175708Z",
            "url": "https://files.pythonhosted.org/packages/c9/9b/0f875d833c8906b335c61362e99c1006a61b0e9f5eface90826bb918fe84/pybase64-1.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20597d7c68495feb26cefb22a1d2baf644f69f00ae2f5f283d98a1e5e700e1f9",
                "md5": "4f5421be9d62aba273dc9fa15b1c0846",
                "sha256": "894415376efe88f9a22d45b6bfc06d9d594daac76c2acab3655afe3225987d37"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f5421be9d62aba273dc9fa15b1c0846",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 66549,
            "upload_time": "2024-01-01T16:14:22",
            "upload_time_iso_8601": "2024-01-01T16:14:22.946960Z",
            "url": "https://files.pythonhosted.org/packages/20/59/7d7c68495feb26cefb22a1d2baf644f69f00ae2f5f283d98a1e5e700e1f9/pybase64-1.3.2-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": {
                "blake2b_256": "f21286f507d6651fb9b0d9078f419dc3ec9843d503b8a79ae60e70cb5b440ae8",
                "md5": "74fd2f8e41c6f9a7a10561f9acc2257a",
                "sha256": "0784181bf9368842ae9ff12c68c452e9ed6aeadb459b8e675201f4e4ba2444ff"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74fd2f8e41c6f9a7a10561f9acc2257a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 56306,
            "upload_time": "2024-01-01T16:14:24",
            "upload_time_iso_8601": "2024-01-01T16:14:24.208443Z",
            "url": "https://files.pythonhosted.org/packages/f2/12/86f507d6651fb9b0d9078f419dc3ec9843d503b8a79ae60e70cb5b440ae8/pybase64-1.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "624dda137e56ad5cc9a9f03977e2bcf1a8353bf0d9f1891161405b98993da9a6",
                "md5": "2070aa3263816dc82c7640cf64372742",
                "sha256": "755377cf87e76d7b48d7ff8d5814e114e9f153f22ae2636b5a875189824cf4ff"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2070aa3263816dc82c7640cf64372742",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 61006,
            "upload_time": "2024-01-01T16:14:25",
            "upload_time_iso_8601": "2024-01-01T16:14:25.929393Z",
            "url": "https://files.pythonhosted.org/packages/62/4d/da137e56ad5cc9a9f03977e2bcf1a8353bf0d9f1891161405b98993da9a6/pybase64-1.3.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16bee4e61fe9b3d8ac11a5d8efdf3810d7d57569df34d21c5c572dacb8659146",
                "md5": "7d780fed7d41a571bd40e42f91afabb7",
                "sha256": "1f65c78b257beda1579d01836b27a89bc2f526b047998d328f010ecd078b73ee"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7d780fed7d41a571bd40e42f91afabb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 57075,
            "upload_time": "2024-01-01T16:14:27",
            "upload_time_iso_8601": "2024-01-01T16:14:27.170148Z",
            "url": "https://files.pythonhosted.org/packages/16/be/e4e61fe9b3d8ac11a5d8efdf3810d7d57569df34d21c5c572dacb8659146/pybase64-1.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a094a3df5a54be1579afaf9cf86e4ca3e0a5ba4ed30d54d51320376eec066464",
                "md5": "2f4d5264a23086f669a87011d20d097e",
                "sha256": "0a0dcd173c7d4d1e971c94e15a246a4445955b0686e1488e78d18c05d3b71d9a"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "2f4d5264a23086f669a87011d20d097e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 54415,
            "upload_time": "2024-01-01T16:14:28",
            "upload_time_iso_8601": "2024-01-01T16:14:28.479672Z",
            "url": "https://files.pythonhosted.org/packages/a0/94/a3df5a54be1579afaf9cf86e4ca3e0a5ba4ed30d54d51320376eec066464/pybase64-1.3.2-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c7b1f1457dceeccd5c9556174bee6308c36d688023c20f2c0c92b310ba26ad8",
                "md5": "1ade20fe79659d188d3e6d6424eb8af1",
                "sha256": "059d326412e5dbd786065dc525dbc53fc24656b3327de7ab70af41d432561a2f"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ade20fe79659d188d3e6d6424eb8af1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 69672,
            "upload_time": "2024-01-01T16:14:30",
            "upload_time_iso_8601": "2024-01-01T16:14:30.289954Z",
            "url": "https://files.pythonhosted.org/packages/0c/7b/1f1457dceeccd5c9556174bee6308c36d688023c20f2c0c92b310ba26ad8/pybase64-1.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "440dab6c39e047d08a192b1ffaa366321e97e121de50025cfe7a20d51664b692",
                "md5": "a751343f470f03301254753c0645e755",
                "sha256": "0b5f570f0d52a4d21c1adc762552a4aa0f9e8bc92f9ecd6b6b69c833eedfe8b9"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "a751343f470f03301254753c0645e755",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 32659,
            "upload_time": "2024-01-01T16:14:31",
            "upload_time_iso_8601": "2024-01-01T16:14:31.483022Z",
            "url": "https://files.pythonhosted.org/packages/44/0d/ab6c39e047d08a192b1ffaa366321e97e121de50025cfe7a20d51664b692/pybase64-1.3.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9af0f890ddbbe386444d1f5ebeccfb22c3f1f6bce9939f18b00540593d5af11f",
                "md5": "b186265e093dc6feca39f9a2deb96f95",
                "sha256": "025b613650939d618a4aef5473137bacc3346a71ed82e947551816e2bb06987f"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b186265e093dc6feca39f9a2deb96f95",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 34750,
            "upload_time": "2024-01-01T16:14:32",
            "upload_time_iso_8601": "2024-01-01T16:14:32.654483Z",
            "url": "https://files.pythonhosted.org/packages/9a/f0/f890ddbbe386444d1f5ebeccfb22c3f1f6bce9939f18b00540593d5af11f/pybase64-1.3.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92a81182e437b8bbfbfff4e0d2e05099bf12f337c740fb0d1f28d5c2d2c457b1",
                "md5": "1a88543e6df2633932f81b93f670f99a",
                "sha256": "1e427957de7428446820a227bf483a3bca0351473e9ff3bbd831fca95f814a35"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a88543e6df2633932f81b93f670f99a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 36122,
            "upload_time": "2024-01-01T16:14:33",
            "upload_time_iso_8601": "2024-01-01T16:14:33.801674Z",
            "url": "https://files.pythonhosted.org/packages/92/a8/1182e437b8bbfbfff4e0d2e05099bf12f337c740fb0d1f28d5c2d2c457b1/pybase64-1.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53f1dd9b73cb3f4958e4aa2599e3cb517a08a67cd611f3ac4805a31157bc9ba9",
                "md5": "bb8b32ba826fb4e4d5904939609748c3",
                "sha256": "28591a028683dec543b5e9573ecad97ff72aa74c94b0ec62d0ee9c82cda8fa38"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bb8b32ba826fb4e4d5904939609748c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 29482,
            "upload_time": "2024-01-01T16:14:34",
            "upload_time_iso_8601": "2024-01-01T16:14:34.981553Z",
            "url": "https://files.pythonhosted.org/packages/53/f1/dd9b73cb3f4958e4aa2599e3cb517a08a67cd611f3ac4805a31157bc9ba9/pybase64-1.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1bd94df5f53ee7e8a60e1177dfa6489c0ad518127d940b961ed2363ad286c42",
                "md5": "e85c588459a4d42286f214cd6ec9efc2",
                "sha256": "06d919d1279825e757a53b80396306c54c2512cf3169567746c7768fb68b7cee"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e85c588459a4d42286f214cd6ec9efc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 54993,
            "upload_time": "2024-01-01T16:14:36",
            "upload_time_iso_8601": "2024-01-01T16:14:36.271022Z",
            "url": "https://files.pythonhosted.org/packages/e1/bd/94df5f53ee7e8a60e1177dfa6489c0ad518127d940b961ed2363ad286c42/pybase64-1.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e646449a9ea5a4a8afb4c554ee11cb9ab525840a05e332861c425ea40aaef92f",
                "md5": "5590d7f1c61e2b3df0ef2f8e815d41a1",
                "sha256": "879a41a64713068bfad2d6bc7c522b8f697527446658df97d061e79e5bb3c45c"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5590d7f1c61e2b3df0ef2f8e815d41a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 53519,
            "upload_time": "2024-01-01T16:14:37",
            "upload_time_iso_8601": "2024-01-01T16:14:37.847694Z",
            "url": "https://files.pythonhosted.org/packages/e6/46/449a9ea5a4a8afb4c554ee11cb9ab525840a05e332861c425ea40aaef92f/pybase64-1.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b00989a164011ae866cb9d43915d82d99eca0e450cf471a982b684edcfaefab",
                "md5": "8d145a8736642f9e40aeaea2301b21b9",
                "sha256": "c7f7b2f072c8c7ab63c61e7a35f0685fb460600df820b950f2b690b1d4647ee6"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8d145a8736642f9e40aeaea2301b21b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 50769,
            "upload_time": "2024-01-01T16:14:39",
            "upload_time_iso_8601": "2024-01-01T16:14:39.234379Z",
            "url": "https://files.pythonhosted.org/packages/9b/00/989a164011ae866cb9d43915d82d99eca0e450cf471a982b684edcfaefab/pybase64-1.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4c86bfeae6291ee8cc1614aab0132de384a435d4857da67a24c63ea37b8c71e",
                "md5": "96b8dd09d48660b3dcea7b0f41969032",
                "sha256": "5126e7f0d53ce17e004439e928b3a4212a11f31d91b03c56408d2b385570eada"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "96b8dd09d48660b3dcea7b0f41969032",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 63193,
            "upload_time": "2024-01-01T16:14:41",
            "upload_time_iso_8601": "2024-01-01T16:14:41.009799Z",
            "url": "https://files.pythonhosted.org/packages/b4/c8/6bfeae6291ee8cc1614aab0132de384a435d4857da67a24c63ea37b8c71e/pybase64-1.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aef1b310bee1c88159c2df061bad7c0df7fb7be3722be11122096c81a35bf355",
                "md5": "c7cdabf8a3e10ee0aee098931ff64002",
                "sha256": "f906b295210d5f6bc8cfe87445e92bc1a290d2b89bff1a74069e3a412eb7602a"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c7cdabf8a3e10ee0aee098931ff64002",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 66520,
            "upload_time": "2024-01-01T16:14:42",
            "upload_time_iso_8601": "2024-01-01T16:14:42.206561Z",
            "url": "https://files.pythonhosted.org/packages/ae/f1/b310bee1c88159c2df061bad7c0df7fb7be3722be11122096c81a35bf355/pybase64-1.3.2-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": {
                "blake2b_256": "d1bc9eb3b8764707f21bad6c73633393f6461a0826d472d5fa5929054752c02e",
                "md5": "8889fc0b5021c464b295a05d31adb078",
                "sha256": "cdd036423e0cd121eee3b5b7ea9e52413409c64537bd5f94bdfa615583229ea3"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8889fc0b5021c464b295a05d31adb078",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 56261,
            "upload_time": "2024-01-01T16:14:43",
            "upload_time_iso_8601": "2024-01-01T16:14:43.392203Z",
            "url": "https://files.pythonhosted.org/packages/d1/bc/9eb3b8764707f21bad6c73633393f6461a0826d472d5fa5929054752c02e/pybase64-1.3.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "047279fed345e53b1763341e0d76848fefc5af2059b9e29ad622d0af5161432f",
                "md5": "25ff598d4923aa0f492d9d3773a41af7",
                "sha256": "af4688d8554b7b0f20e3cd4cb167eab62d2b8886683f26b634301ac259b6c1f4"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "25ff598d4923aa0f492d9d3773a41af7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 61041,
            "upload_time": "2024-01-01T16:14:44",
            "upload_time_iso_8601": "2024-01-01T16:14:44.580626Z",
            "url": "https://files.pythonhosted.org/packages/04/72/79fed345e53b1763341e0d76848fefc5af2059b9e29ad622d0af5161432f/pybase64-1.3.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31ea907b0b2bb35bd269cd8e1c9767398386a8fced78f1caaf702ed85605e63d",
                "md5": "0b55143a0c7d2f6e5a53890eedb3ef3f",
                "sha256": "7bc5fc155935fd0d204bed726507aa04f7ef49885a79b93c347037c437fa45a3"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0b55143a0c7d2f6e5a53890eedb3ef3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 57442,
            "upload_time": "2024-01-01T16:14:46",
            "upload_time_iso_8601": "2024-01-01T16:14:46.371493Z",
            "url": "https://files.pythonhosted.org/packages/31/ea/907b0b2bb35bd269cd8e1c9767398386a8fced78f1caaf702ed85605e63d/pybase64-1.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c7835e2d1e3c51fe8630e0a5dafec600aff7426d51ecd4956062aac9574fa91",
                "md5": "c17dc3ac88adbaf81a2de4994dd40a25",
                "sha256": "9bc5f4866a6b9940bd10a5a1f8be139bb46728b40c48c5af8dd590eb170e8fb1"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "c17dc3ac88adbaf81a2de4994dd40a25",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 54425,
            "upload_time": "2024-01-01T16:14:48",
            "upload_time_iso_8601": "2024-01-01T16:14:48.198151Z",
            "url": "https://files.pythonhosted.org/packages/5c/78/35e2d1e3c51fe8630e0a5dafec600aff7426d51ecd4956062aac9574fa91/pybase64-1.3.2-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b79c787db5e0bb984c3c8a774f9b96d1a53d8490c90dfa1ca442f1979a225fe2",
                "md5": "56b71af8ca17db7ead73960deb6406f9",
                "sha256": "c1ec8154e6e867b2c2a6de9abbe50115d7c2d426d69e7791e1f4337270304497"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56b71af8ca17db7ead73960deb6406f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 69769,
            "upload_time": "2024-01-01T16:14:49",
            "upload_time_iso_8601": "2024-01-01T16:14:49.455317Z",
            "url": "https://files.pythonhosted.org/packages/b7/9c/787db5e0bb984c3c8a774f9b96d1a53d8490c90dfa1ca442f1979a225fe2/pybase64-1.3.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4df119c2eabfef1056e874e59de2b3ae1ce44bde435b08d3f553be784c57a31",
                "md5": "bc7199019ccf4fbc155efc76def93c92",
                "sha256": "651c4e07c507f7756179aa75de3b1b802346a195fa40991c75ced57da45ba761"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "bc7199019ccf4fbc155efc76def93c92",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 32751,
            "upload_time": "2024-01-01T16:14:51",
            "upload_time_iso_8601": "2024-01-01T16:14:51.300040Z",
            "url": "https://files.pythonhosted.org/packages/d4/df/119c2eabfef1056e874e59de2b3ae1ce44bde435b08d3f553be784c57a31/pybase64-1.3.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e74013dc98e0c3a5d42f38885613f09358cc16b5bd23d30c97b683092a5d125f",
                "md5": "3d76146cc25c125d07c6bd21fc7f73d7",
                "sha256": "11b4971af5aa3926115cdacc7e837d018c6cc9b6cfe0b93c839c29a0af5be2b2"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3d76146cc25c125d07c6bd21fc7f73d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 34754,
            "upload_time": "2024-01-01T16:14:52",
            "upload_time_iso_8601": "2024-01-01T16:14:52.435839Z",
            "url": "https://files.pythonhosted.org/packages/e7/40/13dc98e0c3a5d42f38885613f09358cc16b5bd23d30c97b683092a5d125f/pybase64-1.3.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "263f77b0bb84ee6258eab50e58fe46a46b772e86357bbf3890522e4b5866b94b",
                "md5": "a820e21ab01e5dbc12982590ce88a58f",
                "sha256": "0bf75f63bc16b68152ac31b552a09313dc54c2dca171a7a8c27f4505a8e91104"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a820e21ab01e5dbc12982590ce88a58f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 36121,
            "upload_time": "2024-01-01T16:14:53",
            "upload_time_iso_8601": "2024-01-01T16:14:53.590094Z",
            "url": "https://files.pythonhosted.org/packages/26/3f/77b0bb84ee6258eab50e58fe46a46b772e86357bbf3890522e4b5866b94b/pybase64-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e36ed42ac0edb387324fc398915ba77d71ccd1bdd417e24ebbf581139d3c680c",
                "md5": "31bb5b9adfe93d08d1d4ae30094be534",
                "sha256": "81cd93debccda870834adadca7c7923bd5c276e1ef544cf62ee9a5d1c4045f68"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "31bb5b9adfe93d08d1d4ae30094be534",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 29479,
            "upload_time": "2024-01-01T16:14:54",
            "upload_time_iso_8601": "2024-01-01T16:14:54.812249Z",
            "url": "https://files.pythonhosted.org/packages/e3/6e/d42ac0edb387324fc398915ba77d71ccd1bdd417e24ebbf581139d3c680c/pybase64-1.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8797e8d14c1c734db7577d22b06bc8982b54c61b0882d09da4c21691f1f98563",
                "md5": "3f06a60de3e01b7b112a94b8da55cf76",
                "sha256": "2758adcbebd18fefb325a2c2caa6698a9ede6dee3dd97439cc17e9354bceb8bb"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3f06a60de3e01b7b112a94b8da55cf76",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 54138,
            "upload_time": "2024-01-01T16:14:56",
            "upload_time_iso_8601": "2024-01-01T16:14:56.016570Z",
            "url": "https://files.pythonhosted.org/packages/87/97/e8d14c1c734db7577d22b06bc8982b54c61b0882d09da4c21691f1f98563/pybase64-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab1616f556b213c2c0fadb8d473df3a0cb741dac4eb61a74ce98508afa571628",
                "md5": "3028379f220e7f6ca3ffc331212d3f99",
                "sha256": "f9d3f645c7c74321273a5851504fab90fbee9e013b1069d066c8aec2613ce4f6"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3028379f220e7f6ca3ffc331212d3f99",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 52503,
            "upload_time": "2024-01-01T16:14:57",
            "upload_time_iso_8601": "2024-01-01T16:14:57.774290Z",
            "url": "https://files.pythonhosted.org/packages/ab/16/16f556b213c2c0fadb8d473df3a0cb741dac4eb61a74ce98508afa571628/pybase64-1.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "126dfc6791456e475e54e765819fca195155f66ef863c5f4ff1ba9e91a9cc0c1",
                "md5": "c251b934078e7ac0c90962091dc24b92",
                "sha256": "cc0fe1a2a54958ff268d04582b0b942208c7ce020e81f581625b5a0281a0da29"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c251b934078e7ac0c90962091dc24b92",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 49984,
            "upload_time": "2024-01-01T16:14:59",
            "upload_time_iso_8601": "2024-01-01T16:14:59.247030Z",
            "url": "https://files.pythonhosted.org/packages/12/6d/fc6791456e475e54e765819fca195155f66ef863c5f4ff1ba9e91a9cc0c1/pybase64-1.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4d302c4f5e7cf4da9d058fcd2c8460442c3182ecdb8d895a35c416da0dc2ae6",
                "md5": "2e2160c30fe44d725e4838f24a1ab680",
                "sha256": "9622442f217bd2ec12d4188eb942a3210b0a5bdb9e295e252cca099a703001ce"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2e2160c30fe44d725e4838f24a1ab680",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 62420,
            "upload_time": "2024-01-01T16:15:01",
            "upload_time_iso_8601": "2024-01-01T16:15:01.496669Z",
            "url": "https://files.pythonhosted.org/packages/f4/d3/02c4f5e7cf4da9d058fcd2c8460442c3182ecdb8d895a35c416da0dc2ae6/pybase64-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb6e806f65747a79882977af9066390820c93f02ad009eb63cbc9e2ba6edd2ab",
                "md5": "986f2b319b8155d790e01367bf74fa3d",
                "sha256": "11114b6b3c7f4d6668b20b473fae88a92214389a86bda3c98914c8a2fa376556"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "986f2b319b8155d790e01367bf74fa3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 65756,
            "upload_time": "2024-01-01T16:15:03",
            "upload_time_iso_8601": "2024-01-01T16:15:03.223491Z",
            "url": "https://files.pythonhosted.org/packages/cb/6e/806f65747a79882977af9066390820c93f02ad009eb63cbc9e2ba6edd2ab/pybase64-1.3.2-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": {
                "blake2b_256": "bf0f7f3a701e6300d6f04720557a75c37577f2b142197c3cc9fcd19e2bad3a27",
                "md5": "3d047c8221a975a86b29f9e35ef387be",
                "sha256": "a19312ced969d8f7b712ed3201fcf803eefdf882891977037596391ab11da26b"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3d047c8221a975a86b29f9e35ef387be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 55628,
            "upload_time": "2024-01-01T16:15:04",
            "upload_time_iso_8601": "2024-01-01T16:15:04.927984Z",
            "url": "https://files.pythonhosted.org/packages/bf/0f/7f3a701e6300d6f04720557a75c37577f2b142197c3cc9fcd19e2bad3a27/pybase64-1.3.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57014ba46c055a851f9bebb30684eae176e2d2a2e9284f7e7c42345d428b7a6f",
                "md5": "1c0bf0a96d14699f9ed3bcf9a8702518",
                "sha256": "e0a8518e6b01aa89a274b7a833cde079ace40c16cdd9573a7dfa6166f904a3fb"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1c0bf0a96d14699f9ed3bcf9a8702518",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 60534,
            "upload_time": "2024-01-01T16:15:06",
            "upload_time_iso_8601": "2024-01-01T16:15:06.391469Z",
            "url": "https://files.pythonhosted.org/packages/57/01/4ba46c055a851f9bebb30684eae176e2d2a2e9284f7e7c42345d428b7a6f/pybase64-1.3.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6a96d5b96d387ca4d09221c24aec1fd40d3e4451ce8397f1571b2a0fee411a9",
                "md5": "d47b1c373d775002a6b40416dfcd9af1",
                "sha256": "47afc5ae22fef448142db84f0cf631fe9f86160055f018f9002f816a3b63ef15"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d47b1c373d775002a6b40416dfcd9af1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 56587,
            "upload_time": "2024-01-01T16:15:07",
            "upload_time_iso_8601": "2024-01-01T16:15:07.871152Z",
            "url": "https://files.pythonhosted.org/packages/b6/a9/6d5b96d387ca4d09221c24aec1fd40d3e4451ce8397f1571b2a0fee411a9/pybase64-1.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "910ff635816ac62eb747f3fb9ee7c5918e3943a4f381fb45845c4a28773ce0df",
                "md5": "cbc7c44fe8c7ce0004103a61c8a349c1",
                "sha256": "41a177b58e3b2dbb93fe03c6aa14798142e1cd16ae0257cb844c44e42cd25144"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "cbc7c44fe8c7ce0004103a61c8a349c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 53795,
            "upload_time": "2024-01-01T16:15:10",
            "upload_time_iso_8601": "2024-01-01T16:15:10.032927Z",
            "url": "https://files.pythonhosted.org/packages/91/0f/f635816ac62eb747f3fb9ee7c5918e3943a4f381fb45845c4a28773ce0df/pybase64-1.3.2-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b82cbccc0598cb60fc9f006db0d846f42ac227499265691b8806b0e2650dbfc8",
                "md5": "fb37ad20d06cc11a505c450bc4311d24",
                "sha256": "6f3188bfa49e4bd27a7bf120d17da891ad4d190be44e45aca0abb95c4b7ab656"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb37ad20d06cc11a505c450bc4311d24",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 69190,
            "upload_time": "2024-01-01T16:15:11",
            "upload_time_iso_8601": "2024-01-01T16:15:11.631701Z",
            "url": "https://files.pythonhosted.org/packages/b8/2c/bccc0598cb60fc9f006db0d846f42ac227499265691b8806b0e2650dbfc8/pybase64-1.3.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f91cc65976dd36880c2f2180cbadf131290e59cc6d04aef5fe2b88f9c797aebd",
                "md5": "dec8dcbd5da2f4fe7763260d3a27a70a",
                "sha256": "f0190a9b9e30aa448221fb6ca6c9a4359b28ffe769c4a8c08c1d2457e04093c8"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "dec8dcbd5da2f4fe7763260d3a27a70a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 32755,
            "upload_time": "2024-01-01T16:15:13",
            "upload_time_iso_8601": "2024-01-01T16:15:13.003724Z",
            "url": "https://files.pythonhosted.org/packages/f9/1c/c65976dd36880c2f2180cbadf131290e59cc6d04aef5fe2b88f9c797aebd/pybase64-1.3.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "844953cddb130ef9ad851db92de9e4447d4851043f4472ac5a12334625f3349a",
                "md5": "9201f79bfd57a8b296914b0d8ec7f132",
                "sha256": "9499f665dcc86713332e5759b1552d141b6d4770da4206094b869eb7c001337c"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9201f79bfd57a8b296914b0d8ec7f132",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 34749,
            "upload_time": "2024-01-01T16:15:14",
            "upload_time_iso_8601": "2024-01-01T16:15:14.304111Z",
            "url": "https://files.pythonhosted.org/packages/84/49/53cddb130ef9ad851db92de9e4447d4851043f4472ac5a12334625f3349a/pybase64-1.3.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c4d43b4a18c00f62bc71e0fc99b621902917cd165faf0afc7bdff1aaa78df33",
                "md5": "7aa717da311a8f2602f2875a04e72e1c",
                "sha256": "15b844e29b6bb08949ffb07021383e3182e6651436708130d1d528e42aeacab5"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "7aa717da311a8f2602f2875a04e72e1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 27921,
            "upload_time": "2024-01-01T16:15:15",
            "upload_time_iso_8601": "2024-01-01T16:15:15.479699Z",
            "url": "https://files.pythonhosted.org/packages/6c/4d/43b4a18c00f62bc71e0fc99b621902917cd165faf0afc7bdff1aaa78df33/pybase64-1.3.2-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec71420af2f9209072fa6a548acedac211c1e5d354eb4ef08002810a939b5ee9",
                "md5": "31b16213091f6a0e5ac04bd8af0cb061",
                "sha256": "b9f7e26e2c5c4c73755a6cd13979cba0fcfa8efcefa68d5baf6766cd86de200f"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31b16213091f6a0e5ac04bd8af0cb061",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 36090,
            "upload_time": "2024-01-01T16:15:16",
            "upload_time_iso_8601": "2024-01-01T16:15:16.820726Z",
            "url": "https://files.pythonhosted.org/packages/ec/71/420af2f9209072fa6a548acedac211c1e5d354eb4ef08002810a939b5ee9/pybase64-1.3.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd6ae137d28e27bb712f6491393c546610c4255807ce83409768f34943079d56",
                "md5": "d676a22548cc0dfd892a33b6383ed530",
                "sha256": "f2be5ec28edf2ba01fd12b1d04ff4c06208bf2a0eb81812db4966eef83bb2d68"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d676a22548cc0dfd892a33b6383ed530",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 33078,
            "upload_time": "2024-01-01T16:15:18",
            "upload_time_iso_8601": "2024-01-01T16:15:18.851531Z",
            "url": "https://files.pythonhosted.org/packages/cd/6a/e137d28e27bb712f6491393c546610c4255807ce83409768f34943079d56/pybase64-1.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8279d09df3bf9481d22e2debb370bb1a7e42296166902f2124df929f98fdc4f",
                "md5": "b1da4a601d08060be30750cfb8d80927",
                "sha256": "bbd9419835e8723691c536ca17c5b4f928837a709ca8abb8a25ab5667ae7f081"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b1da4a601d08060be30750cfb8d80927",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 38801,
            "upload_time": "2024-01-01T16:15:20",
            "upload_time_iso_8601": "2024-01-01T16:15:20.098183Z",
            "url": "https://files.pythonhosted.org/packages/a8/27/9d09df3bf9481d22e2debb370bb1a7e42296166902f2124df929f98fdc4f/pybase64-1.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72325d5f66f96a1c76ec382f87410910a5b86a0e30f51ae51267196442af1eaf",
                "md5": "a997073b4c85e95d395f9b1c8e0aa8b9",
                "sha256": "d23b6ccbb5244bd853a33428dd9b1e37e187c51ccc98e5a54b202c8ecd9a0780"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a997073b4c85e95d395f9b1c8e0aa8b9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 40449,
            "upload_time": "2024-01-01T16:15:21",
            "upload_time_iso_8601": "2024-01-01T16:15:21.411041Z",
            "url": "https://files.pythonhosted.org/packages/72/32/5d5f66f96a1c76ec382f87410910a5b86a0e30f51ae51267196442af1eaf/pybase64-1.3.2-pp310-pypy310_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": {
                "blake2b_256": "3231b4c2e26733b96772d821f61ad1ff2495c0c4c5a32f0a1f346461ba3ce693",
                "md5": "ca2e37d1b381d32f803370be5722077b",
                "sha256": "7f5c52598f4cb2c45f15cba9c823f3af469408837dea2cb105b53a0cce862b0b"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ca2e37d1b381d32f803370be5722077b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 35025,
            "upload_time": "2024-01-01T16:15:22",
            "upload_time_iso_8601": "2024-01-01T16:15:22.948806Z",
            "url": "https://files.pythonhosted.org/packages/32/31/b4c2e26733b96772d821f61ad1ff2495c0c4c5a32f0a1f346461ba3ce693/pybase64-1.3.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b442cf44c97b673e053239b868baa2baf747f8b941a6e21bd7850fa91c514e2",
                "md5": "3b4179084904d8c1afabef296accb929",
                "sha256": "72d7044ea0137a9f8936b65f40817490fc2dab34fa7715f60034f8fca556748d"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b4179084904d8c1afabef296accb929",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 36087,
            "upload_time": "2024-01-01T16:15:24",
            "upload_time_iso_8601": "2024-01-01T16:15:24.339295Z",
            "url": "https://files.pythonhosted.org/packages/2b/44/2cf44c97b673e053239b868baa2baf747f8b941a6e21bd7850fa91c514e2/pybase64-1.3.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97d190b3c70eb86cc78c3bbcdebbf55fc3662f6703cd79760dc0f5a5cf0cf72f",
                "md5": "52fa3fb299c2ca664d7a26590197c8d8",
                "sha256": "fea73a50e8f236aa60cb87ccb5a85778e64db8bc7446c3f89226dd79ed23894f"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "52fa3fb299c2ca664d7a26590197c8d8",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 33116,
            "upload_time": "2024-01-01T16:15:25",
            "upload_time_iso_8601": "2024-01-01T16:15:25.599467Z",
            "url": "https://files.pythonhosted.org/packages/97/d1/90b3c70eb86cc78c3bbcdebbf55fc3662f6703cd79760dc0f5a5cf0cf72f/pybase64-1.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "096f1b433fd6ae06450c5e302b03e3acfcf5b8c1dd54dd34cc9150ff6e8da12f",
                "md5": "10c318042dad63c29b98d393adc71da5",
                "sha256": "5ba5ab04d84db9963610bcada4a46bf654b12ea7934795c2781667c1694ae60d"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "10c318042dad63c29b98d393adc71da5",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 38978,
            "upload_time": "2024-01-01T16:15:26",
            "upload_time_iso_8601": "2024-01-01T16:15:26.864252Z",
            "url": "https://files.pythonhosted.org/packages/09/6f/1b433fd6ae06450c5e302b03e3acfcf5b8c1dd54dd34cc9150ff6e8da12f/pybase64-1.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03b90bb29d2183a35f551bf3955e6ef7cc3ed7849b63935889699a23a841f9cf",
                "md5": "8c3ead2e2b649ece802390b8e2da95f5",
                "sha256": "d4f5974ada99be1f0222e0e17f5584df07a8ccd8b025b739ae66006127718bb1"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-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": "8c3ead2e2b649ece802390b8e2da95f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 40508,
            "upload_time": "2024-01-01T16:15:28",
            "upload_time_iso_8601": "2024-01-01T16:15:28.163467Z",
            "url": "https://files.pythonhosted.org/packages/03/b9/0bb29d2183a35f551bf3955e6ef7cc3ed7849b63935889699a23a841f9cf/pybase64-1.3.2-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": {
                "blake2b_256": "4ad0b649b501dfb6de5a2e9b3499dd7ebdd41faf10f21b496fdc660b75d19cd5",
                "md5": "514e5ecafff2242be7776286671e895f",
                "sha256": "48292d202b134ec320e6ec2212199f8a5ea3b58ae83cba2b30201040e7733904"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "514e5ecafff2242be7776286671e895f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 35016,
            "upload_time": "2024-01-01T16:15:29",
            "upload_time_iso_8601": "2024-01-01T16:15:29.703547Z",
            "url": "https://files.pythonhosted.org/packages/4a/d0/b649b501dfb6de5a2e9b3499dd7ebdd41faf10f21b496fdc660b75d19cd5/pybase64-1.3.2-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43af1ad1ce56e866b97b0ac9002aaa4e79c13c9e53fb5087061d66be5d968f13",
                "md5": "79b4c7d6d1bd71e283e1d7d03cd7940d",
                "sha256": "03b1d733116cf6f77ad7c3b286b793ed0fbb8363d2e4a031bd3d120dcbdbe9c7"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79b4c7d6d1bd71e283e1d7d03cd7940d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 36088,
            "upload_time": "2024-01-01T16:15:31",
            "upload_time_iso_8601": "2024-01-01T16:15:31.359339Z",
            "url": "https://files.pythonhosted.org/packages/43/af/1ad1ce56e866b97b0ac9002aaa4e79c13c9e53fb5087061d66be5d968f13/pybase64-1.3.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e92d624e1425ce6d3e9b77ed92619272dfe564b72fb379648a4b0a85bbc0fa9",
                "md5": "ef50ca29cf608beeb618e9d5c06bee3f",
                "sha256": "f109a6aba9c235406f994d80083f5680a81b52358102751c23b8f2e1da57b231"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef50ca29cf608beeb618e9d5c06bee3f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 33084,
            "upload_time": "2024-01-01T16:15:32",
            "upload_time_iso_8601": "2024-01-01T16:15:32.621159Z",
            "url": "https://files.pythonhosted.org/packages/9e/92/d624e1425ce6d3e9b77ed92619272dfe564b72fb379648a4b0a85bbc0fa9/pybase64-1.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57b59227ef915198ddf81876f05183d4aab644e2bd168b53e9a18000c35109f6",
                "md5": "dafb9db966af40eee97ce2bab6f2b523",
                "sha256": "915c4eb35bc339f100749856eac74a145639ea7c2bb7b83e5a14d4ef70c6af7a"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dafb9db966af40eee97ce2bab6f2b523",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 38821,
            "upload_time": "2024-01-01T16:15:33",
            "upload_time_iso_8601": "2024-01-01T16:15:33.869706Z",
            "url": "https://files.pythonhosted.org/packages/57/b5/9227ef915198ddf81876f05183d4aab644e2bd168b53e9a18000c35109f6/pybase64-1.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5828c95fc357459064d01aa030c8a635f97a4717a1ecacac38271a9f438edcd",
                "md5": "f8173ccbe6ee855cf6813a5ccc2d14cb",
                "sha256": "71b65b78197ed6bc009cb84418a484ecc568dafc9329d4bac90b8eff21ca8cb4"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-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": "f8173ccbe6ee855cf6813a5ccc2d14cb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 40451,
            "upload_time": "2024-01-01T16:15:35",
            "upload_time_iso_8601": "2024-01-01T16:15:35.072584Z",
            "url": "https://files.pythonhosted.org/packages/d5/82/8c95fc357459064d01aa030c8a635f97a4717a1ecacac38271a9f438edcd/pybase64-1.3.2-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": {
                "blake2b_256": "d24bfa71ac5d7ad2bb8986d5003e3a9da2fa38f8bbdc1a649087adad1a2193c7",
                "md5": "748a8d9447b56960ba4829732c3edf2a",
                "sha256": "33f11c42ce14fbb2eeb41b76b6f4f7acfdd970c16a609ae0a26fa283761f06f3"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "748a8d9447b56960ba4829732c3edf2a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 35018,
            "upload_time": "2024-01-01T16:15:36",
            "upload_time_iso_8601": "2024-01-01T16:15:36.293225Z",
            "url": "https://files.pythonhosted.org/packages/d2/4b/fa71ac5d7ad2bb8986d5003e3a9da2fa38f8bbdc1a649087adad1a2193c7/pybase64-1.3.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcd0bf375a3051c364450f3ecb6ff6b83dd4c081c948ca28ba7aebb3b36c877c",
                "md5": "04f95b7a9e45985b53b4d15eaaa97469",
                "sha256": "91da83c784f86254eb05c1aa134b91952f90c82e336bbbc54d59d15af8023f1f"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04f95b7a9e45985b53b4d15eaaa97469",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 36083,
            "upload_time": "2024-01-01T16:15:37",
            "upload_time_iso_8601": "2024-01-01T16:15:37.592555Z",
            "url": "https://files.pythonhosted.org/packages/bc/d0/bf375a3051c364450f3ecb6ff6b83dd4c081c948ca28ba7aebb3b36c877c/pybase64-1.3.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efcee1dfe86e8b064453560fb4eab2fbdea7a1dc08aa05dcf68375eeee3c87a2",
                "md5": "cce69083ac2eed6bfe72b2ba8651572b",
                "sha256": "0b54d33adca9e96408dc8ecabf7f880bb86ce15c7e2e00e3919e8b45e6e0ec07"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cce69083ac2eed6bfe72b2ba8651572b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 33074,
            "upload_time": "2024-01-01T16:15:38",
            "upload_time_iso_8601": "2024-01-01T16:15:38.826796Z",
            "url": "https://files.pythonhosted.org/packages/ef/ce/e1dfe86e8b064453560fb4eab2fbdea7a1dc08aa05dcf68375eeee3c87a2/pybase64-1.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fe538368fc723d2a97f3ad16e6faeb865771d3dfa3569d6548dcf933d8dc51c",
                "md5": "3a64f797cc8926766c77af218ed468d6",
                "sha256": "bac1442c9c4de1c4d977adaa67a2410838fa8c3150149f32b0596731e0b7babb"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3a64f797cc8926766c77af218ed468d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 38799,
            "upload_time": "2024-01-01T16:15:40",
            "upload_time_iso_8601": "2024-01-01T16:15:40.290018Z",
            "url": "https://files.pythonhosted.org/packages/7f/e5/38368fc723d2a97f3ad16e6faeb865771d3dfa3569d6548dcf933d8dc51c/pybase64-1.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "542c6c8c47d1ecc2b292f801ad9d0090597073ce228a4ea4bf3e53e789846fe6",
                "md5": "2b8a6c561400425bfdbe55517dbc4000",
                "sha256": "266466931e324706eee0c3a12d032ae8b80d1b3895e17686c41176755c7c3684"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-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": "2b8a6c561400425bfdbe55517dbc4000",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 40445,
            "upload_time": "2024-01-01T16:15:41",
            "upload_time_iso_8601": "2024-01-01T16:15:41.739462Z",
            "url": "https://files.pythonhosted.org/packages/54/2c/6c8c47d1ecc2b292f801ad9d0090597073ce228a4ea4bf3e53e789846fe6/pybase64-1.3.2-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": {
                "blake2b_256": "10b7d4c7e12387772a91f25990d6cb85f5262ae6218dc64d4061e79d3245847a",
                "md5": "da1341fe8764eca71179a184d001db39",
                "sha256": "1b722174c06c204dff14852f3a968ee448698cf9af0c0c31a5d15343ccb19ef3"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "da1341fe8764eca71179a184d001db39",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 35023,
            "upload_time": "2024-01-01T16:15:43",
            "upload_time_iso_8601": "2024-01-01T16:15:43.185600Z",
            "url": "https://files.pythonhosted.org/packages/10/b7/d4c7e12387772a91f25990d6cb85f5262ae6218dc64d4061e79d3245847a/pybase64-1.3.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46ced334f13e90d6874d785812c94e9fd3e50148a6b0beecd34a999063f61d9a",
                "md5": "6236c45b137efb6b693d3f0e413b0efb",
                "sha256": "32ef993c55821dac9abd767ee4656a5013b2ed8bf1125cabbae7e84d2b991038"
            },
            "downloads": -1,
            "filename": "pybase64-1.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "6236c45b137efb6b693d3f0e413b0efb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 129277,
            "upload_time": "2024-01-01T16:15:44",
            "upload_time_iso_8601": "2024-01-01T16:15:44.761994Z",
            "url": "https://files.pythonhosted.org/packages/46/ce/d334f13e90d6874d785812c94e9fd3e50148a6b0beecd34a999063f61d9a/pybase64-1.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-01 16:15:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mayeut",
    "github_project": "pybase64",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pybase64"
}
        
Elapsed time: 0.17450s