.. 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.4.0
-----
- Publish python 3.13 wheels
- Add support for free-threaded builds
- Add MSYS2 support for C-extension
- Better logging on base64 build failure when C-extension build is optional
- Drop python 3.6 & 3.7 support
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": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "base64",
"author": "Matthieu Darbois",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/e9/3b/10fe20bd63304550914f077bac75710a7da9d668b9e9b5a74571dd0f4990/pybase64-1.4.0.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.4.0\n-----\n- Publish python 3.13 wheels\n- Add support for free-threaded builds\n- Add MSYS2 support for C-extension\n- Better logging on base64 build failure when C-extension build is optional\n- Drop python 3.6 & 3.7 support\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.4.0",
"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": "9538e4f5600ebc009160eb5ea35172f1a49c13b2d4a2d26dbc46290cc6dfb5f8",
"md5": "36a6d46767e9391504d72f45eb8748b1",
"sha256": "53588d4343c867329830a68c305da771f151e3e850962991b28e8e946ac359c7"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "36a6d46767e9391504d72f45eb8748b1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 37939,
"upload_time": "2024-08-04T16:55:02",
"upload_time_iso_8601": "2024-08-04T16:55:02.748649Z",
"url": "https://files.pythonhosted.org/packages/95/38/e4f5600ebc009160eb5ea35172f1a49c13b2d4a2d26dbc46290cc6dfb5f8/pybase64-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "210eb5d0c72a99b354e1bd489fe11dca6ff4c942952581f1d81bf0c19258c867",
"md5": "d0cbef1f998dc77154a3863a15cc5385",
"sha256": "68d3143f14cb91459f5ab942dc8ec717e84b45a20108832603815257b65319f2"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d0cbef1f998dc77154a3863a15cc5385",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 31373,
"upload_time": "2024-08-04T16:55:04",
"upload_time_iso_8601": "2024-08-04T16:55:04.090674Z",
"url": "https://files.pythonhosted.org/packages/21/0e/b5d0c72a99b354e1bd489fe11dca6ff4c942952581f1d81bf0c19258c867/pybase64-1.4.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04ffd42a2adcaf290cfc7bd4191a78763b675796d0103a66c5a5558ca57f0a2d",
"md5": "f10bd86ad9d78493f1dd8b0d4e0d19fd",
"sha256": "78b8eeddc5914cc407cf56aa70fb45142a4da60ce4c259b93a78f7ec28e4c086"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f10bd86ad9d78493f1dd8b0d4e0d19fd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 57448,
"upload_time": "2024-08-04T16:55:05",
"upload_time_iso_8601": "2024-08-04T16:55:05.485996Z",
"url": "https://files.pythonhosted.org/packages/04/ff/d42a2adcaf290cfc7bd4191a78763b675796d0103a66c5a5558ca57f0a2d/pybase64-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df3dbb20243ca31b063a58015ea4924cf6a022e6df2623da8edbe5f5df58e397",
"md5": "5b7254717f8c04a930ac7fa00084a75f",
"sha256": "7236b6da20d1264e7afe80c04e168c2346b1d92b6c040dc200ae15c8c85780d3"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5b7254717f8c04a930ac7fa00084a75f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 56148,
"upload_time": "2024-08-04T16:55:06",
"upload_time_iso_8601": "2024-08-04T16:55:06.968081Z",
"url": "https://files.pythonhosted.org/packages/df/3d/bb20243ca31b063a58015ea4924cf6a022e6df2623da8edbe5f5df58e397/pybase64-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6631bf763af0aa31a66855eef70be30e7a7a460a97dbf020fe9a9752396e9dcf",
"md5": "b74421c7821abace9c82d40914509b06",
"sha256": "f8fb055b149cef84c238bfe83405d4e16a85717b5ee3b7196a90e75ce6d3e062"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b74421c7821abace9c82d40914509b06",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 53915,
"upload_time": "2024-08-04T16:55:08",
"upload_time_iso_8601": "2024-08-04T16:55:08.084096Z",
"url": "https://files.pythonhosted.org/packages/66/31/bf763af0aa31a66855eef70be30e7a7a460a97dbf020fe9a9752396e9dcf/pybase64-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f259171d76e8f6050770d5b16b82432be4336f84f8d5460febd8c3880b89d27",
"md5": "c3d434d1a09357b985f7ff40f53bb8ec",
"sha256": "cff5181ae5c01d4a00e5cd4d76c571f696bbc61c4dde448cc3ccf00e6efe0aba"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c3d434d1a09357b985f7ff40f53bb8ec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 66100,
"upload_time": "2024-08-04T16:55:09",
"upload_time_iso_8601": "2024-08-04T16:55:09.737615Z",
"url": "https://files.pythonhosted.org/packages/5f/25/9171d76e8f6050770d5b16b82432be4336f84f8d5460febd8c3880b89d27/pybase64-1.4.0-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": "49947e6b57a6f831a3f1e06d6b5c8f8038f16438485ce810bba7f17cca600a09",
"md5": "9fe8f03059acf7786d34e87ff943929b",
"sha256": "46e423377492ddedca1ea5a6c1790de194421be0635652b05b3e9dac14e6843f"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9fe8f03059acf7786d34e87ff943929b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 69116,
"upload_time": "2024-08-04T16:55:10",
"upload_time_iso_8601": "2024-08-04T16:55:10.804149Z",
"url": "https://files.pythonhosted.org/packages/49/94/7e6b57a6f831a3f1e06d6b5c8f8038f16438485ce810bba7f17cca600a09/pybase64-1.4.0-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": "8208e2bdcf86dc0940d6e54300863c7620d6d6ecce14c20c857c13a499e8c7e7",
"md5": "29e7fa51123caecaefaba3b0f8976663",
"sha256": "fd6ad3539c0c649856f7eeb92beb279087b25a1c1b67c1a6937eeac53035e972"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "29e7fa51123caecaefaba3b0f8976663",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 56281,
"upload_time": "2024-08-04T16:55:12",
"upload_time_iso_8601": "2024-08-04T16:55:12.276685Z",
"url": "https://files.pythonhosted.org/packages/82/08/e2bdcf86dc0940d6e54300863c7620d6d6ecce14c20c857c13a499e8c7e7/pybase64-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7448f779be494e053f7c6dc97cf76d8a79269a20ae0178883aed4b7dad5722de",
"md5": "40e69ae0acbec1c5577ecddf7ae79f38",
"sha256": "6b1271d3c4952eb0668e1252e46457ed6b30d6e1c7e678b02fdb3dcee237559b"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "40e69ae0acbec1c5577ecddf7ae79f38",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 66864,
"upload_time": "2024-08-04T16:55:14",
"upload_time_iso_8601": "2024-08-04T16:55:14.282512Z",
"url": "https://files.pythonhosted.org/packages/74/48/f779be494e053f7c6dc97cf76d8a79269a20ae0178883aed4b7dad5722de/pybase64-1.4.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb8684de426050a61c1f1edaef2720c45e362e5c5f4d8c0574d0042d7b49b449",
"md5": "bf327321bdc4a12356d423f01768722f",
"sha256": "7343b9488c2a141bf139ac479aa39be895c75d1813e10062a9ba445d83d77fc1"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "bf327321bdc4a12356d423f01768722f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 55090,
"upload_time": "2024-08-04T16:55:15",
"upload_time_iso_8601": "2024-08-04T16:55:15.481970Z",
"url": "https://files.pythonhosted.org/packages/fb/86/84de426050a61c1f1edaef2720c45e362e5c5f4d8c0574d0042d7b49b449/pybase64-1.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ab74f7ccecdd2cf39709f71b59d6305cb7b9f2f896b7083eee7852b77f6af77",
"md5": "c2bb9a5d5ccaec7085a00a739664d46b",
"sha256": "4956588c464e267627b9260443834ffb10033e4ca28725595c58f0894847f327"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "c2bb9a5d5ccaec7085a00a739664d46b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 53655,
"upload_time": "2024-08-04T16:55:16",
"upload_time_iso_8601": "2024-08-04T16:55:16.554164Z",
"url": "https://files.pythonhosted.org/packages/8a/b7/4f7ccecdd2cf39709f71b59d6305cb7b9f2f896b7083eee7852b77f6af77/pybase64-1.4.0-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e042b855ae97d66b7347183bc20b5901cde8b04cd62c74e3345158b1cd9782e",
"md5": "c2d00b52513786e352df2aae51b0f8d4",
"sha256": "7e0d8d16f608e613fff5481200ce17ea159ef08519344cd6d3b4e9096124e44f"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c2d00b52513786e352df2aae51b0f8d4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 68700,
"upload_time": "2024-08-04T16:55:17",
"upload_time_iso_8601": "2024-08-04T16:55:17.881748Z",
"url": "https://files.pythonhosted.org/packages/2e/04/2b855ae97d66b7347183bc20b5901cde8b04cd62c74e3345158b1cd9782e/pybase64-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "037580a27b5d79c29ebeb6cc05452b59f606ec99b87c01bb7fe7b23eedc9ad00",
"md5": "b866d211eb6f6cd957bd19ea292f1c47",
"sha256": "8683400369296f920f1546437be6ef46e3a9f446b199c6c372504a0e09e19e83"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "b866d211eb6f6cd957bd19ea292f1c47",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 34118,
"upload_time": "2024-08-04T16:55:19",
"upload_time_iso_8601": "2024-08-04T16:55:19.448916Z",
"url": "https://files.pythonhosted.org/packages/03/75/80a27b5d79c29ebeb6cc05452b59f606ec99b87c01bb7fe7b23eedc9ad00/pybase64-1.4.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd85543d012743d6c1ba3697a7ea81be0fabc31f987660caefa689e7ec3ebc11",
"md5": "6aee47bb3ddfd2562275005aa432cad6",
"sha256": "ce3d5dd91ec1673cc92b36f4fe1c1476cfc7ac1305c8f3ac1b2327ae186093bb"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "6aee47bb3ddfd2562275005aa432cad6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 36313,
"upload_time": "2024-08-04T16:55:20",
"upload_time_iso_8601": "2024-08-04T16:55:20.449410Z",
"url": "https://files.pythonhosted.org/packages/bd/85/543d012743d6c1ba3697a7ea81be0fabc31f987660caefa689e7ec3ebc11/pybase64-1.4.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41fa2063989a1ef8fc90eb95db4b5c6dfeaddbdfc316bf3057c7afa0984e1543",
"md5": "a912add7feaa9b09369b323440eebd7a",
"sha256": "6fb1932336d3f413ce0497a7ff73cfce8cc90991e3724811d83147c3199b85d5"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp310-cp310-win_arm64.whl",
"has_sig": false,
"md5_digest": "a912add7feaa9b09369b323440eebd7a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 29531,
"upload_time": "2024-08-04T16:55:21",
"upload_time_iso_8601": "2024-08-04T16:55:21.433898Z",
"url": "https://files.pythonhosted.org/packages/41/fa/2063989a1ef8fc90eb95db4b5c6dfeaddbdfc316bf3057c7afa0984e1543/pybase64-1.4.0-cp310-cp310-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9dab2e5172ad133bfbb3269645b1bcfd239407109f153017ddb64b2ffda214fe",
"md5": "ba2971704c8b90cc0b6bf0c276d2db7a",
"sha256": "a0d09663dae7999b3efac87561cf469d1c394b683f59d8e233db587c3a2b4c35"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ba2971704c8b90cc0b6bf0c276d2db7a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 37936,
"upload_time": "2024-08-04T16:55:23",
"upload_time_iso_8601": "2024-08-04T16:55:23.017714Z",
"url": "https://files.pythonhosted.org/packages/9d/ab/2e5172ad133bfbb3269645b1bcfd239407109f153017ddb64b2ffda214fe/pybase64-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea209ae9cc87424900dbba542557905bba6807827a6a577d6e954757aed85d51",
"md5": "d8c917e23fdd2e4bbf14ed7df2b9f5db",
"sha256": "e7427a5d51d99791165c1f1b0113e9eb2699043fa4b0686ffd8465dc015c5eb2"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d8c917e23fdd2e4bbf14ed7df2b9f5db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 31374,
"upload_time": "2024-08-04T16:55:24",
"upload_time_iso_8601": "2024-08-04T16:55:24.079757Z",
"url": "https://files.pythonhosted.org/packages/ea/20/9ae9cc87424900dbba542557905bba6807827a6a577d6e954757aed85d51/pybase64-1.4.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fbadad27a1e59aa4a2fa75579eb3f3e4ccca7f7db107b589587f6ab51a31514",
"md5": "2ec6097d88be26f6a128476656728f8d",
"sha256": "2590ecc24ff7325457f37c742b7e48aeb87444f23773dfd6a9c12e5d2e8f363f"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2ec6097d88be26f6a128476656728f8d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 59662,
"upload_time": "2024-08-04T16:55:25",
"upload_time_iso_8601": "2024-08-04T16:55:25.501833Z",
"url": "https://files.pythonhosted.org/packages/7f/ba/dad27a1e59aa4a2fa75579eb3f3e4ccca7f7db107b589587f6ab51a31514/pybase64-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73c8a43530066426b6f5ab8124cdf64f24e28a40ee1631945aaa941f6f4821dc",
"md5": "43c5fb762c152d5a44e97d3eacb28c40",
"sha256": "e581031d510431213168a6c9c735d74bf24f6dd0b92a2a82413aded8cb31cac4"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "43c5fb762c152d5a44e97d3eacb28c40",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 58367,
"upload_time": "2024-08-04T16:55:26",
"upload_time_iso_8601": "2024-08-04T16:55:26.846355Z",
"url": "https://files.pythonhosted.org/packages/73/c8/a43530066426b6f5ab8124cdf64f24e28a40ee1631945aaa941f6f4821dc/pybase64-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "362a9cb1b5f2178fe35bf1f0d94b71eec70463d925658022acdd5bbf2086f969",
"md5": "1030d2f79f2aba6cab5667b3d422b4c3",
"sha256": "618e1c7fce64223e8fdca9360d7f23d8da0d31d3ab8b6afed034c9c3ba566860"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1030d2f79f2aba6cab5667b3d422b4c3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 56495,
"upload_time": "2024-08-04T16:55:27",
"upload_time_iso_8601": "2024-08-04T16:55:27.916642Z",
"url": "https://files.pythonhosted.org/packages/36/2a/9cb1b5f2178fe35bf1f0d94b71eec70463d925658022acdd5bbf2086f969/pybase64-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5855b53c42e2a85996e40d34189b5683dbe54436515e3b2a94bcc65e6f68a2d7",
"md5": "f7ce96997d0de9480f8f028cbe95feed",
"sha256": "916591bcd8d1858f27be636d984e4c0713c7c1f0a651cf18529a8fc0cbc9c6d9"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f7ce96997d0de9480f8f028cbe95feed",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 68432,
"upload_time": "2024-08-04T16:55:29",
"upload_time_iso_8601": "2024-08-04T16:55:29.026743Z",
"url": "https://files.pythonhosted.org/packages/58/55/b53c42e2a85996e40d34189b5683dbe54436515e3b2a94bcc65e6f68a2d7/pybase64-1.4.0-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": "0fada57f0195862000b422ba797957bd28994bc385183c51f7edcfab1fc6ad15",
"md5": "15da54969052b2ba19c9104bae5a80f5",
"sha256": "288a5d00500faf13ead83c6611dc265304cc04fd85013ed23eb730ccf9e54399"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "15da54969052b2ba19c9104bae5a80f5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 71431,
"upload_time": "2024-08-04T16:55:30",
"upload_time_iso_8601": "2024-08-04T16:55:30.444992Z",
"url": "https://files.pythonhosted.org/packages/0f/ad/a57f0195862000b422ba797957bd28994bc385183c51f7edcfab1fc6ad15/pybase64-1.4.0-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": "e226d3f8f2362a146ea6a53e0910921ecffb6b6405ba2485c379ff259f64454d",
"md5": "4211a222415c98c44838768d2266e6bd",
"sha256": "30df6f3f6f3b5485dcea9f0dfa4807a9ec41e186824e16f37a300a08e13ba836"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4211a222415c98c44838768d2266e6bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 58729,
"upload_time": "2024-08-04T16:55:31",
"upload_time_iso_8601": "2024-08-04T16:55:31.638880Z",
"url": "https://files.pythonhosted.org/packages/e2/26/d3f8f2362a146ea6a53e0910921ecffb6b6405ba2485c379ff259f64454d/pybase64-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fb1e07320feb49d6fde53883fecab3ae30085c6157e98ff6e12fb148824af52",
"md5": "f104f293bc2e71566d2bab33ab5823ad",
"sha256": "853a00a9f43d1410c57399fc23e8bba0c705fb46abcba7604a0e59d0d6426161"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f104f293bc2e71566d2bab33ab5823ad",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 69250,
"upload_time": "2024-08-04T16:55:32",
"upload_time_iso_8601": "2024-08-04T16:55:32.694107Z",
"url": "https://files.pythonhosted.org/packages/7f/b1/e07320feb49d6fde53883fecab3ae30085c6157e98ff6e12fb148824af52/pybase64-1.4.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1fda1793867af0665b89eabdf1bbb70b81dca8e889809914d3820fb990d3a11",
"md5": "07cd474e52e22f0b937c5b1b32090a7d",
"sha256": "e2515dd6cfbd204cb5cdcc94f34bf70ca380dfecaf750867fd2b211620ba5b3e"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "07cd474e52e22f0b937c5b1b32090a7d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 57362,
"upload_time": "2024-08-04T16:55:33",
"upload_time_iso_8601": "2024-08-04T16:55:33.767543Z",
"url": "https://files.pythonhosted.org/packages/b1/fd/a1793867af0665b89eabdf1bbb70b81dca8e889809914d3820fb990d3a11/pybase64-1.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96324766f2a6fa83f8dbee5aaa3f15e0be00de40f3a592a9788677e27bf93bd5",
"md5": "2d0fbaef4214d0f76d5d0d6b83bc07a0",
"sha256": "8d5678655a84633a7044bab2b6cb09bfd0735862b9f1092539e7718a6bba782a"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "2d0fbaef4214d0f76d5d0d6b83bc07a0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 56002,
"upload_time": "2024-08-04T16:55:35",
"upload_time_iso_8601": "2024-08-04T16:55:35.215424Z",
"url": "https://files.pythonhosted.org/packages/96/32/4766f2a6fa83f8dbee5aaa3f15e0be00de40f3a592a9788677e27bf93bd5/pybase64-1.4.0-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b3a0394d2bfb3843957b184a03a8f72cd3fa5ab146282402369e000308a99b87",
"md5": "968ff6c70488d21db25b560a9405ebb5",
"sha256": "cc9aa578ab7810b282c2426904db5b2cb86a3e36e51732118fe3340921ade360"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "968ff6c70488d21db25b560a9405ebb5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 71089,
"upload_time": "2024-08-04T16:55:36",
"upload_time_iso_8601": "2024-08-04T16:55:36.249420Z",
"url": "https://files.pythonhosted.org/packages/b3/a0/394d2bfb3843957b184a03a8f72cd3fa5ab146282402369e000308a99b87/pybase64-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "027bf15a5793e29cd2448b0dc1d3fa444a2e62ea81880ed650e992f24518e42b",
"md5": "362077782f54d4e23431d6455250566b",
"sha256": "b9beab673f09203201db6e03bf7dd285250e075b5f66d5b337f4a08c11a587c7"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "362077782f54d4e23431d6455250566b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 34094,
"upload_time": "2024-08-04T16:55:37",
"upload_time_iso_8601": "2024-08-04T16:55:37.403516Z",
"url": "https://files.pythonhosted.org/packages/02/7b/f15a5793e29cd2448b0dc1d3fa444a2e62ea81880ed650e992f24518e42b/pybase64-1.4.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19536bafb0d3d95a3fdc5c220084990c0df89c4373c897512f975fa422448cfa",
"md5": "5d64076b8127c784cbda8170ed97a5e3",
"sha256": "6d8366e268cb9743cf73b7351c31c2f03270c0e9cb397e5f00daa1824f453bb7"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "5d64076b8127c784cbda8170ed97a5e3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 36312,
"upload_time": "2024-08-04T16:55:38",
"upload_time_iso_8601": "2024-08-04T16:55:38.437963Z",
"url": "https://files.pythonhosted.org/packages/19/53/6bafb0d3d95a3fdc5c220084990c0df89c4373c897512f975fa422448cfa/pybase64-1.4.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b771d96fb924e9ed6530f38040d434d08948a143ab618dfe8638bef39ec4637",
"md5": "f2da7c4eef3be8e758a5661b8b0edadf",
"sha256": "d8d8133ad82c1584be15e59b3c8c590da9160eb698298c59aa4e60983c9f73a8"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "f2da7c4eef3be8e758a5661b8b0edadf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 29535,
"upload_time": "2024-08-04T16:55:39",
"upload_time_iso_8601": "2024-08-04T16:55:39.454605Z",
"url": "https://files.pythonhosted.org/packages/9b/77/1d96fb924e9ed6530f38040d434d08948a143ab618dfe8638bef39ec4637/pybase64-1.4.0-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "332599ac93b5ed03e6b67ed415f6c400ed6e9c800becbe085239677456c3572a",
"md5": "c259c17ec8e258dd857aaa6e2a1ee81b",
"sha256": "51a3aa66a989affa85b311ad88c05bf16ef3803e60e84cd821f7231c83b22d7f"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c259c17ec8e258dd857aaa6e2a1ee81b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 38045,
"upload_time": "2024-08-04T16:55:40",
"upload_time_iso_8601": "2024-08-04T16:55:40.776675Z",
"url": "https://files.pythonhosted.org/packages/33/25/99ac93b5ed03e6b67ed415f6c400ed6e9c800becbe085239677456c3572a/pybase64-1.4.0-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0734e0e95a5d2092bb66eb9ba4bbc955dcba19a6b0284b1db0e8372207ba25b",
"md5": "d9a04b749b8070d456c3a479e1ab28b3",
"sha256": "2607bfdda2c582a870dc5b18fbc121434278712a78e41249caf7ea1a9f1266ce"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d9a04b749b8070d456c3a479e1ab28b3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 31374,
"upload_time": "2024-08-04T16:55:42",
"upload_time_iso_8601": "2024-08-04T16:55:42.142343Z",
"url": "https://files.pythonhosted.org/packages/a0/73/4e0e95a5d2092bb66eb9ba4bbc955dcba19a6b0284b1db0e8372207ba25b/pybase64-1.4.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af160b0d0cdaee2f55bb96787f3b0d6725edda4eadc28b698257101b38d67c8a",
"md5": "43bb356fb0fec8b7e1d2a6ce050234af",
"sha256": "0eb2ddaa008e53944cf62b927f18e7800d629c7b71ab77f87d3293f937a40abb"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "43bb356fb0fec8b7e1d2a6ce050234af",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 59653,
"upload_time": "2024-08-04T16:55:43",
"upload_time_iso_8601": "2024-08-04T16:55:43.461363Z",
"url": "https://files.pythonhosted.org/packages/af/16/0b0d0cdaee2f55bb96787f3b0d6725edda4eadc28b698257101b38d67c8a/pybase64-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b383e4fbe9056b4da413e132c76fd0bd056f40e0d59f01f9d1af067b541ade30",
"md5": "7e1a8c6f0e303499a2f277a690dcda04",
"sha256": "c9b73d2b3cb9107f78a77ad98501f075c58823604f0de27f59216f19b68ed0fc"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7e1a8c6f0e303499a2f277a690dcda04",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 58394,
"upload_time": "2024-08-04T16:55:44",
"upload_time_iso_8601": "2024-08-04T16:55:44.902238Z",
"url": "https://files.pythonhosted.org/packages/b3/83/e4fbe9056b4da413e132c76fd0bd056f40e0d59f01f9d1af067b541ade30/pybase64-1.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c97f40c7f49d13b51cffa6351d443b88b99e77fc5a4ac268530d579852659e0",
"md5": "b8181a99e39372e5774064b10bd9d7b1",
"sha256": "c50cba5cea82c86ac0a3c7eb30e74a25ac24f42de18e48e1ff2fe60ca82bc2b3"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b8181a99e39372e5774064b10bd9d7b1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 56434,
"upload_time": "2024-08-04T16:55:46",
"upload_time_iso_8601": "2024-08-04T16:55:46.131506Z",
"url": "https://files.pythonhosted.org/packages/4c/97/f40c7f49d13b51cffa6351d443b88b99e77fc5a4ac268530d579852659e0/pybase64-1.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aff7ffad79867be40606c672d0a5cc62464f1092ace5ab47c2845758a9958c4d",
"md5": "21e8caf9c62d32bac9f2d765531523a9",
"sha256": "c56a3a43b9a6b9d8917724cab65bdd59f72ed7a66c73bf55abdb31fa0ee1ce7f"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "21e8caf9c62d32bac9f2d765531523a9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 68430,
"upload_time": "2024-08-04T16:55:47",
"upload_time_iso_8601": "2024-08-04T16:55:47.212000Z",
"url": "https://files.pythonhosted.org/packages/af/f7/ffad79867be40606c672d0a5cc62464f1092ace5ab47c2845758a9958c4d/pybase64-1.4.0-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": "97211f3208b506eae6a98afd5cab322a5fd329b1c9a4c26dea01613340364489",
"md5": "f614259bfd6db2256d06abe0403eb11c",
"sha256": "35c018a191be4f7ac2f4cf404843ed30832da11643251fe9536ef9067577325a"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f614259bfd6db2256d06abe0403eb11c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 71670,
"upload_time": "2024-08-04T16:55:48",
"upload_time_iso_8601": "2024-08-04T16:55:48.282431Z",
"url": "https://files.pythonhosted.org/packages/97/21/1f3208b506eae6a98afd5cab322a5fd329b1c9a4c26dea01613340364489/pybase64-1.4.0-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": "57c2a1e3d55ac23f6896b291bcb51c256621fb9aa8c35a432659d63c9787d9f2",
"md5": "f8f29dea5275d2d1f836c6e5fe971495",
"sha256": "dab702ba6723dcbf82bdcac9c080bac949eaecba1591ba50e1925fd8f8cde159"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f8f29dea5275d2d1f836c6e5fe971495",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 58782,
"upload_time": "2024-08-04T16:55:49",
"upload_time_iso_8601": "2024-08-04T16:55:49.346615Z",
"url": "https://files.pythonhosted.org/packages/57/c2/a1e3d55ac23f6896b291bcb51c256621fb9aa8c35a432659d63c9787d9f2/pybase64-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7d6d0b9050873ffd9b545770fe6321aaab51b0d6eefb58f268204e9229dd00d",
"md5": "4be069cd9de5eda3bc574d54580b06bb",
"sha256": "030441e07c410c011431c97df4906fda79a333fd984c4170eec23cb6d6d89fc1"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4be069cd9de5eda3bc574d54580b06bb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 69266,
"upload_time": "2024-08-04T16:55:50",
"upload_time_iso_8601": "2024-08-04T16:55:50.967004Z",
"url": "https://files.pythonhosted.org/packages/d7/d6/d0b9050873ffd9b545770fe6321aaab51b0d6eefb58f268204e9229dd00d/pybase64-1.4.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4e0ec74d1e0940052b25b865aab10210be07e8a8cd821da6756796d56093b53",
"md5": "595ef32f1d6b74022bf96129039ea3c6",
"sha256": "24a4e1bfb41dea3e88487dee9d46c634505e907ddf5429fa80692453d6ae3541"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "595ef32f1d6b74022bf96129039ea3c6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 57306,
"upload_time": "2024-08-04T16:55:52",
"upload_time_iso_8601": "2024-08-04T16:55:52.567575Z",
"url": "https://files.pythonhosted.org/packages/f4/e0/ec74d1e0940052b25b865aab10210be07e8a8cd821da6756796d56093b53/pybase64-1.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0b46a8289c5f7fbd364b60fd04526500343d59f1b6bac273855a0248b84f2119",
"md5": "6fa1586fb704b850ff88b60c7c0bcbe9",
"sha256": "03d5aab98b6d529e0fa48eefd1db5c5bc0c931853eb3fb527beb3d0478ccd04e"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "6fa1586fb704b850ff88b60c7c0bcbe9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 56307,
"upload_time": "2024-08-04T16:55:54",
"upload_time_iso_8601": "2024-08-04T16:55:54.444270Z",
"url": "https://files.pythonhosted.org/packages/0b/46/a8289c5f7fbd364b60fd04526500343d59f1b6bac273855a0248b84f2119/pybase64-1.4.0-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ed1b354cdf7dce81555cd6a3064e14332d03b73712f790df9e9e24e652a0cc4",
"md5": "7bf51165d683f74aaaeaf616bfc1cb25",
"sha256": "8612a3701fb5a33ce14128f2fbe7e3603e6347cbdeb256910d96b25e431b9323"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7bf51165d683f74aaaeaf616bfc1cb25",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 71221,
"upload_time": "2024-08-04T16:55:55",
"upload_time_iso_8601": "2024-08-04T16:55:55.826475Z",
"url": "https://files.pythonhosted.org/packages/4e/d1/b354cdf7dce81555cd6a3064e14332d03b73712f790df9e9e24e652a0cc4/pybase64-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f14e2e7164818a5cd19a50c51ef286c440d8ca7f729b2677c29fc8cc18ef8ba",
"md5": "15c64242f97f2c2ea0baf0416e28f5c1",
"sha256": "6d9901f0b6f0c6873856ce59ffc0b53135b4078e04e0ceb0ecc050138c6ba71e"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "15c64242f97f2c2ea0baf0416e28f5c1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 34174,
"upload_time": "2024-08-04T16:55:56",
"upload_time_iso_8601": "2024-08-04T16:55:56.897951Z",
"url": "https://files.pythonhosted.org/packages/2f/14/e2e7164818a5cd19a50c51ef286c440d8ca7f729b2677c29fc8cc18ef8ba/pybase64-1.4.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "023f706a84c26f5e6c38a37d93fb5054d399e8d48cba02530d4384078e9ceb6f",
"md5": "56e83f230124f8bdea53aa3f1a20b87d",
"sha256": "c0f8bd2321724f386020b1b0a00f546a4b7c49b86c6a81cbb5afb601b44e5131"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "56e83f230124f8bdea53aa3f1a20b87d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 36389,
"upload_time": "2024-08-04T16:55:57",
"upload_time_iso_8601": "2024-08-04T16:55:57.874068Z",
"url": "https://files.pythonhosted.org/packages/02/3f/706a84c26f5e6c38a37d93fb5054d399e8d48cba02530d4384078e9ceb6f/pybase64-1.4.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebd8e40bc78be06a6ea1be4798d50cb9c15ae3cf1094aa78231bd1951a5d634b",
"md5": "0200a4d717437e442c453a478246781f",
"sha256": "23ef9e0d02818f2d3ee5f84bba0dec591c67b7fde74c6c40c8eae4a3030a4d8a"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "0200a4d717437e442c453a478246781f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 29589,
"upload_time": "2024-08-04T16:55:59",
"upload_time_iso_8601": "2024-08-04T16:55:59.498416Z",
"url": "https://files.pythonhosted.org/packages/eb/d8/e40bc78be06a6ea1be4798d50cb9c15ae3cf1094aa78231bd1951a5d634b/pybase64-1.4.0-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b771e508e9f6a02d90741added36462be42d99de5a99f560569e2dfe410de100",
"md5": "d7b695b80696b29c28f227ecb0dabd10",
"sha256": "4c1631af25e24d1643f18454f68649c0e07e9ba880553ef0e7b144b62b7551f9"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "d7b695b80696b29c28f227ecb0dabd10",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 38018,
"upload_time": "2024-08-04T16:56:00",
"upload_time_iso_8601": "2024-08-04T16:56:00.963140Z",
"url": "https://files.pythonhosted.org/packages/b7/71/e508e9f6a02d90741added36462be42d99de5a99f560569e2dfe410de100/pybase64-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd29bf9e6590ba67d23bb22bcd03355ae63400f6906d663470dec44405c18549",
"md5": "f4b08a37cc7cdd8beca61f826e33bf00",
"sha256": "ac9005d947c5680dde42b120b6ccc18461bd203cba52cfb32e2d20dbe3c149e0"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f4b08a37cc7cdd8beca61f826e33bf00",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 31377,
"upload_time": "2024-08-04T16:56:01",
"upload_time_iso_8601": "2024-08-04T16:56:01.916994Z",
"url": "https://files.pythonhosted.org/packages/fd/29/bf9e6590ba67d23bb22bcd03355ae63400f6906d663470dec44405c18549/pybase64-1.4.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb23f33dd1274fdbc43f1ec93c464b047f8bea94fca72612a02b1cca116c8f7b",
"md5": "c787bda4fdbb86d018e5611cc4407215",
"sha256": "81767f59b639bb6b481bcef0add94fc9ff4434ab65b694f46224654874c8d888"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c787bda4fdbb86d018e5611cc4407215",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 59573,
"upload_time": "2024-08-04T16:56:02",
"upload_time_iso_8601": "2024-08-04T16:56:02.896537Z",
"url": "https://files.pythonhosted.org/packages/bb/23/f33dd1274fdbc43f1ec93c464b047f8bea94fca72612a02b1cca116c8f7b/pybase64-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "500ff977c1f865c8dd1c1239ef649e100d2e80673a797b250506f8f980e479f7",
"md5": "c1fac314c56f1da3b845fcf42031f0b6",
"sha256": "158263489efbce7ef7b4d70771e8882650810440a2386e53e17af1753d70e1e5"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "c1fac314c56f1da3b845fcf42031f0b6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 58330,
"upload_time": "2024-08-04T16:56:04",
"upload_time_iso_8601": "2024-08-04T16:56:04.254488Z",
"url": "https://files.pythonhosted.org/packages/50/0f/f977c1f865c8dd1c1239ef649e100d2e80673a797b250506f8f980e479f7/pybase64-1.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "813e064eb593fd2c4e6e43942b469db1dede9fe7b1f0bcc3a8031dc663040b38",
"md5": "30b686d819e64f1be10fcf9c6cf6ce26",
"sha256": "9946adae43bbffc3a62a943bc8dd467373ff27166cec59de113d2ce954343210"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "30b686d819e64f1be10fcf9c6cf6ce26",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 56409,
"upload_time": "2024-08-04T16:56:05",
"upload_time_iso_8601": "2024-08-04T16:56:05.678919Z",
"url": "https://files.pythonhosted.org/packages/81/3e/064eb593fd2c4e6e43942b469db1dede9fe7b1f0bcc3a8031dc663040b38/pybase64-1.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4d2d05b8c21297e2574bd171eaf97cfc7bb86146352eb8d48307cba0cee7167",
"md5": "b7c88251a10054be1adf2bf80634d010",
"sha256": "407aa690d5ed8d9ddd06e83ce61e9be9fb33f52575db28bc935eba42f65d3b0d"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b7c88251a10054be1adf2bf80634d010",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 68389,
"upload_time": "2024-08-04T16:56:06",
"upload_time_iso_8601": "2024-08-04T16:56:06.895029Z",
"url": "https://files.pythonhosted.org/packages/d4/d2/d05b8c21297e2574bd171eaf97cfc7bb86146352eb8d48307cba0cee7167/pybase64-1.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29ee3868453d04340ef8aaa7a04514732cf7ec3d53d06b117b23c0bdb8a649f5",
"md5": "96f4aeec524cc3c244d414c533a9085e",
"sha256": "b7c173a645a28ddecaf991f0dda7a7f789a026ebbb56580aa3e761470b15fa8c"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "96f4aeec524cc3c244d414c533a9085e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 71642,
"upload_time": "2024-08-04T16:56:07",
"upload_time_iso_8601": "2024-08-04T16:56:07.894973Z",
"url": "https://files.pythonhosted.org/packages/29/ee/3868453d04340ef8aaa7a04514732cf7ec3d53d06b117b23c0bdb8a649f5/pybase64-1.4.0-cp313-cp313-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": "bd1af8692da89b66bea253e6dd0e8fb3ca61a49260fdecb8d662cb97ce7b5e7c",
"md5": "2af6b39ccd3ac88b596b05f62b9c893b",
"sha256": "5bbf14daab52a6340ed9b9473a74ff91564110466f5e295ab1ff85913eadcb7c"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2af6b39ccd3ac88b596b05f62b9c893b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 58797,
"upload_time": "2024-08-04T16:56:09",
"upload_time_iso_8601": "2024-08-04T16:56:09.045819Z",
"url": "https://files.pythonhosted.org/packages/bd/1a/f8692da89b66bea253e6dd0e8fb3ca61a49260fdecb8d662cb97ce7b5e7c/pybase64-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecbd151f13ee2038532741c3cb556e6991e51ca0b275c3ee383afa76314fefe3",
"md5": "1e4fc3206fa7bb3b60ee6dd8a8010482",
"sha256": "cea8377c2f24808fd9ed254bbaede2a96cead3df331fbc533c9efb6b425f3d1c"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1e4fc3206fa7bb3b60ee6dd8a8010482",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 69305,
"upload_time": "2024-08-04T16:56:10",
"upload_time_iso_8601": "2024-08-04T16:56:10.267544Z",
"url": "https://files.pythonhosted.org/packages/ec/bd/151f13ee2038532741c3cb556e6991e51ca0b275c3ee383afa76314fefe3/pybase64-1.4.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79c8de053c1decf640b7e0e02888a902ddd30483e39109f16c50b25ecd37caba",
"md5": "ce0db0c1438ecdf75a0c03baefa4cdeb",
"sha256": "b206fb7a1190e69b05c1469f78948ba770009e608e4e4ded1934ea87143c3a7e"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "ce0db0c1438ecdf75a0c03baefa4cdeb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 57342,
"upload_time": "2024-08-04T16:56:11",
"upload_time_iso_8601": "2024-08-04T16:56:11.286632Z",
"url": "https://files.pythonhosted.org/packages/79/c8/de053c1decf640b7e0e02888a902ddd30483e39109f16c50b25ecd37caba/pybase64-1.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b3852231209999140f2283e1852756e27109bbf10e976d94113d82425184fb6",
"md5": "92b4ccf010edf70f1cb4cffd846a605b",
"sha256": "1f68a13383d9f9ef55e9d316c6491d60b47e14ca7407bc43be9e991f03c2a969"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "92b4ccf010edf70f1cb4cffd846a605b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 56358,
"upload_time": "2024-08-04T16:56:12",
"upload_time_iso_8601": "2024-08-04T16:56:12.395272Z",
"url": "https://files.pythonhosted.org/packages/3b/38/52231209999140f2283e1852756e27109bbf10e976d94113d82425184fb6/pybase64-1.4.0-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3d7ccc1e287c76f3bc793eb16dda0a8e978cf9c3937efb330cd902e2cfe9fc11",
"md5": "3231a0765226905f1b21d88532cde45e",
"sha256": "7bf62a95a4ff55239a5094af69c528dfc926db27543bfc1676f620d9d90c21d5"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3231a0765226905f1b21d88532cde45e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 71263,
"upload_time": "2024-08-04T16:56:13",
"upload_time_iso_8601": "2024-08-04T16:56:13.498600Z",
"url": "https://files.pythonhosted.org/packages/3d/7c/cc1e287c76f3bc793eb16dda0a8e978cf9c3937efb330cd902e2cfe9fc11/pybase64-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e048407380b820cb45834980410456a932243d0309e5ed51e00f5d1b8f53526",
"md5": "d0d00e6b91522e6e45b415614b878694",
"sha256": "b88810395971b333c71920e3bd6387224a75aa6c3c2670cb1fd144a50426e84d"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "d0d00e6b91522e6e45b415614b878694",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 38374,
"upload_time": "2024-08-04T16:56:17",
"upload_time_iso_8601": "2024-08-04T16:56:17.781357Z",
"url": "https://files.pythonhosted.org/packages/8e/04/8407380b820cb45834980410456a932243d0309e5ed51e00f5d1b8f53526/pybase64-1.4.0-cp313-cp313t-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "461540595056b03204ece2ad882c344a1e95541e70cb2755379ff1e2d940561d",
"md5": "fc346e465778c58173564a96a5d05913",
"sha256": "6c7e1cf93dc692896481c0e60ccd44c2329e1bc14e7913fcaac0a671d011c7c4"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fc346e465778c58173564a96a5d05913",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 31780,
"upload_time": "2024-08-04T16:56:18",
"upload_time_iso_8601": "2024-08-04T16:56:18.802377Z",
"url": "https://files.pythonhosted.org/packages/46/15/40595056b03204ece2ad882c344a1e95541e70cb2755379ff1e2d940561d/pybase64-1.4.0-cp313-cp313t-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "787a07bec67c9027a011f03ce56aa00b185943fb7822c205a871c638982a289a",
"md5": "6ac8d3d6f931ee34e559ff1549758e6e",
"sha256": "ea61017577d5bbc39339f3af0ef0115d9c7c4317bf461d6e2cac4d0473e6afba"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6ac8d3d6f931ee34e559ff1549758e6e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 64334,
"upload_time": "2024-08-04T16:56:20",
"upload_time_iso_8601": "2024-08-04T16:56:20.057620Z",
"url": "https://files.pythonhosted.org/packages/78/7a/07bec67c9027a011f03ce56aa00b185943fb7822c205a871c638982a289a/pybase64-1.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ba22c555c3198b421ff5aca2f199f7eaa9a79ddf07fdc00680d02cf8db4efe63",
"md5": "db47cfb9512674a33eda62b1361ecf9b",
"sha256": "7227c049aa1399fb61827d27fcc2ba089ecbbc5b1a60e16ba7620ca246a60d17"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "db47cfb9512674a33eda62b1361ecf9b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 62905,
"upload_time": "2024-08-04T16:56:21",
"upload_time_iso_8601": "2024-08-04T16:56:21.196537Z",
"url": "https://files.pythonhosted.org/packages/ba/22/c555c3198b421ff5aca2f199f7eaa9a79ddf07fdc00680d02cf8db4efe63/pybase64-1.4.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8fcdcea94b0527a34ee7d8728eb456797c688bea291b2a0d7debac88dbb43174",
"md5": "1f0bd27e4371d227db559bb38450629a",
"sha256": "ed7d38b5d96eab31ea7e45cc3a5f586db023bfdf5df4b7ad096d63d6f70267dd"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1f0bd27e4371d227db559bb38450629a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 60717,
"upload_time": "2024-08-04T16:56:22",
"upload_time_iso_8601": "2024-08-04T16:56:22.708861Z",
"url": "https://files.pythonhosted.org/packages/8f/cd/cea94b0527a34ee7d8728eb456797c688bea291b2a0d7debac88dbb43174/pybase64-1.4.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6a43f48d8b8a92e70b5d41c29be7336846fe9d3794e0668b1413660e8eae3088",
"md5": "2d77a7891f8ee51f7d446165956e1cc6",
"sha256": "cae19e57eb8155ef68e770d8e0283384fb2a04c568f729f2d12e6bd3ffbee3a6"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2d77a7891f8ee51f7d446165956e1cc6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 72879,
"upload_time": "2024-08-04T16:56:23",
"upload_time_iso_8601": "2024-08-04T16:56:23.823495Z",
"url": "https://files.pythonhosted.org/packages/6a/43/f48d8b8a92e70b5d41c29be7336846fe9d3794e0668b1413660e8eae3088/pybase64-1.4.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94e59bf04b34722e25abdd16cf5ccd767569007201205a428000f60f2450bcd0",
"md5": "3aa44ff57051b8bbd3f642b82304592a",
"sha256": "0ced59a394de5d181bdf6493d72838b7603fb89898d12f2213a55f7175fc25ac"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3aa44ff57051b8bbd3f642b82304592a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 75993,
"upload_time": "2024-08-04T16:56:24",
"upload_time_iso_8601": "2024-08-04T16:56:24.855304Z",
"url": "https://files.pythonhosted.org/packages/94/e5/9bf04b34722e25abdd16cf5ccd767569007201205a428000f60f2450bcd0/pybase64-1.4.0-cp313-cp313t-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": "bf7f34923fc0d0260b669673ed98a558ea131c167e5198c15f8cd2d7f2aecc79",
"md5": "2cbf8fea31c058796f8eabfaa928bad8",
"sha256": "305798dff96d23621e10262a4c64dd641b39c5123289a119359941ab7c17dcfc"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2cbf8fea31c058796f8eabfaa928bad8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 63855,
"upload_time": "2024-08-04T16:56:25",
"upload_time_iso_8601": "2024-08-04T16:56:25.948984Z",
"url": "https://files.pythonhosted.org/packages/bf/7f/34923fc0d0260b669673ed98a558ea131c167e5198c15f8cd2d7f2aecc79/pybase64-1.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "63fafda4f84f1964d346c7b9506e7633d8791990a49e930b2dfca7f72576b2bb",
"md5": "56068ca5a11e949fba7091e24558853a",
"sha256": "acdad56404a0a17a8a240a21a55272b2165bb98f898cf76b0b35d219db1237fe"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "56068ca5a11e949fba7091e24558853a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 73519,
"upload_time": "2024-08-04T16:56:27",
"upload_time_iso_8601": "2024-08-04T16:56:27.095602Z",
"url": "https://files.pythonhosted.org/packages/63/fa/fda4f84f1964d346c7b9506e7633d8791990a49e930b2dfca7f72576b2bb/pybase64-1.4.0-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf7102bf95d427bcbe16e845f687781bc82d45f1823f77b124a123154be16976",
"md5": "ab7250450c11a06c0d5afe7f9bec2033",
"sha256": "c7052eebefb4a543a2a70e2dab1a717a431656a8831149c1a99dec39677ce4ca"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "ab7250450c11a06c0d5afe7f9bec2033",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 61581,
"upload_time": "2024-08-04T16:56:28",
"upload_time_iso_8601": "2024-08-04T16:56:28.258386Z",
"url": "https://files.pythonhosted.org/packages/bf/71/02bf95d427bcbe16e845f687781bc82d45f1823f77b124a123154be16976/pybase64-1.4.0-cp313-cp313t-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10adf63687d8e7eadb9e9e7822aed9c47b644d6e46d09000d8cc8bd217843289",
"md5": "cb56fb36c16aa9a714e7b8275c2e99d6",
"sha256": "669a6e55a4dcc0069524bca84702ae99645bfb5d9f6745379b9c043b424530e3"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "cb56fb36c16aa9a714e7b8275c2e99d6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 60634,
"upload_time": "2024-08-04T16:56:29",
"upload_time_iso_8601": "2024-08-04T16:56:29.743477Z",
"url": "https://files.pythonhosted.org/packages/10/ad/f63687d8e7eadb9e9e7822aed9c47b644d6e46d09000d8cc8bd217843289/pybase64-1.4.0-cp313-cp313t-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79932bf8f406b321f0efd49ac646ffcd979a54ca86063266824bc65edf65b05a",
"md5": "c8e3c2eb5f875db0807cb5a722263605",
"sha256": "c8abce1e40a2c0b2a332995cd716c16d9449e3aaea29c94f632643e7a66a54cb"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c8e3c2eb5f875db0807cb5a722263605",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 75410,
"upload_time": "2024-08-04T16:56:30",
"upload_time_iso_8601": "2024-08-04T16:56:30.828216Z",
"url": "https://files.pythonhosted.org/packages/79/93/2bf8f406b321f0efd49ac646ffcd979a54ca86063266824bc65edf65b05a/pybase64-1.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e1cc3eb2f65bb997e082fe7eaf3eb7ad9277adc57afea483bc3389385302517",
"md5": "09417cfd4a02371f0e10d2ce2c25941e",
"sha256": "62b19c962b0f205615766f49aaeab8e981173681a5762904794573a56d899ab7"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-win32.whl",
"has_sig": false,
"md5_digest": "09417cfd4a02371f0e10d2ce2c25941e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 34441,
"upload_time": "2024-08-04T16:56:32",
"upload_time_iso_8601": "2024-08-04T16:56:32.237932Z",
"url": "https://files.pythonhosted.org/packages/3e/1c/c3eb2f65bb997e082fe7eaf3eb7ad9277adc57afea483bc3389385302517/pybase64-1.4.0-cp313-cp313t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e948080679a695456433e44ec10d937f5ff414d7520eb6bdf598a37c0ba65e6",
"md5": "c8ac6730e4a29094ed42281c7639e11e",
"sha256": "af0349c823aa0e605dbf2cfaaf0b89212123158421a2968a3c3565dd6771e57f"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "c8ac6730e4a29094ed42281c7639e11e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 36801,
"upload_time": "2024-08-04T16:56:33",
"upload_time_iso_8601": "2024-08-04T16:56:33.315928Z",
"url": "https://files.pythonhosted.org/packages/3e/94/8080679a695456433e44ec10d937f5ff414d7520eb6bdf598a37c0ba65e6/pybase64-1.4.0-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c17c6b47ce6557993b02e2b7bf7a583c74380d5878ec93e5d5a489274ca5ba3c",
"md5": "6f9e793df3ef22386e97518eaac20467",
"sha256": "9dc05a62222395a3f4b7f3860792612f8b06e448e3bf483e316ce1361e6f338e"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313t-win_arm64.whl",
"has_sig": false,
"md5_digest": "6f9e793df3ef22386e97518eaac20467",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 29859,
"upload_time": "2024-08-04T16:56:34",
"upload_time_iso_8601": "2024-08-04T16:56:34.320571Z",
"url": "https://files.pythonhosted.org/packages/c1/7c/6b47ce6557993b02e2b7bf7a583c74380d5878ec93e5d5a489274ca5ba3c/pybase64-1.4.0-cp313-cp313t-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96f05e79d419291361628e307ae2224ae287048ec0bbdebea10b6ffca504f2b5",
"md5": "ddaf34c1ba6ca37e6c01d6eaa791f489",
"sha256": "d81a28738a28678eb637f1798e43e9e700b336ae69c46e397f84a3168c8dc8cc"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "ddaf34c1ba6ca37e6c01d6eaa791f489",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 34167,
"upload_time": "2024-08-04T16:56:14",
"upload_time_iso_8601": "2024-08-04T16:56:14.571560Z",
"url": "https://files.pythonhosted.org/packages/96/f0/5e79d419291361628e307ae2224ae287048ec0bbdebea10b6ffca504f2b5/pybase64-1.4.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "528bcc776da32cd465ce685e1748ab7b812ff330b10653ae94ff520468c6089c",
"md5": "06d1c405432f0999647133fcac33a529",
"sha256": "4d711d8c840e8d684ac31b21c79db4722fb6fd7610f544827448f7a0c6695ea2"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "06d1c405432f0999647133fcac33a529",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 36384,
"upload_time": "2024-08-04T16:56:15",
"upload_time_iso_8601": "2024-08-04T16:56:15.808687Z",
"url": "https://files.pythonhosted.org/packages/52/8b/cc776da32cd465ce685e1748ab7b812ff330b10653ae94ff520468c6089c/pybase64-1.4.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "226a2bbc1b20dcd45c70d2beb00fb2ffe1ba3e015b820a768e270e9af814db67",
"md5": "0d02028c9e4ec421bd0a2670fbf98b2c",
"sha256": "fb8b219b4eecd935f1f0c9deebee9b8b0b4b50cf4ab603b9e2eeaf9ed278d909"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "0d02028c9e4ec421bd0a2670fbf98b2c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 29586,
"upload_time": "2024-08-04T16:56:16",
"upload_time_iso_8601": "2024-08-04T16:56:16.799066Z",
"url": "https://files.pythonhosted.org/packages/22/6a/2bbc1b20dcd45c70d2beb00fb2ffe1ba3e015b820a768e270e9af814db67/pybase64-1.4.0-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8442d117faa03c3199585380ea4a81b4abb590527720cd1364e48ed5745590cb",
"md5": "a7ea7d7aff517d9043aa86a9669cb2ff",
"sha256": "322a93f1dcbe4d4e0c9a7499c761b835969a84d5e5f30d2bce73b511bc3d660d"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a7ea7d7aff517d9043aa86a9669cb2ff",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 37931,
"upload_time": "2024-08-04T16:56:35",
"upload_time_iso_8601": "2024-08-04T16:56:35.401850Z",
"url": "https://files.pythonhosted.org/packages/84/42/d117faa03c3199585380ea4a81b4abb590527720cd1364e48ed5745590cb/pybase64-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "747ba00f610042b43bafefd1fe59496d20ad6b16ab67a4d2e6c2100d0455e598",
"md5": "5f87b223942cb649fc5494b0bc69e530",
"sha256": "a64823e3b83f3cd14a781e5ff1f49ca91cf48238df21241222a129e8d41d1368"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5f87b223942cb649fc5494b0bc69e530",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 31373,
"upload_time": "2024-08-04T16:56:36",
"upload_time_iso_8601": "2024-08-04T16:56:36.446381Z",
"url": "https://files.pythonhosted.org/packages/74/7b/a00f610042b43bafefd1fe59496d20ad6b16ab67a4d2e6c2100d0455e598/pybase64-1.4.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e6a993b55d983e9be185cd9aa1696cd6f97fb3565651b9534830dbbda78f696b",
"md5": "f2acd9d88e01346ebd0dc54e87cb8c81",
"sha256": "470e7d5103b421a481ad5676013c2ddfd0c07d086ff86e3c8f4b0c71bbeb00f5"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f2acd9d88e01346ebd0dc54e87cb8c81",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 58026,
"upload_time": "2024-08-04T16:56:37",
"upload_time_iso_8601": "2024-08-04T16:56:37.477656Z",
"url": "https://files.pythonhosted.org/packages/e6/a9/93b55d983e9be185cd9aa1696cd6f97fb3565651b9534830dbbda78f696b/pybase64-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f1122141d4fae4e893f98105ca80e9408815b0634f0225f292650c0bc4e994d",
"md5": "dbc37f3850a4fa6028c13fb77caff8b0",
"sha256": "66c865421e30a277ee4dcd1a9ec4628d0dc04bfe0f4c22802ad0db3b1e0247d4"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dbc37f3850a4fa6028c13fb77caff8b0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 56932,
"upload_time": "2024-08-04T16:56:38",
"upload_time_iso_8601": "2024-08-04T16:56:38.790812Z",
"url": "https://files.pythonhosted.org/packages/7f/11/22141d4fae4e893f98105ca80e9408815b0634f0225f292650c0bc4e994d/pybase64-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a04a4e6ca7355c859e8c7c55bd3fbe09f6b03cafabcfa2f08ed0060443987581",
"md5": "094733483f7f55f0b4b20f3fd4984f06",
"sha256": "c1146c303f02e9f1996e1e926fde932090499473d143362265b1b771fec45418"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "094733483f7f55f0b4b20f3fd4984f06",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 54642,
"upload_time": "2024-08-04T16:56:39",
"upload_time_iso_8601": "2024-08-04T16:56:39.829586Z",
"url": "https://files.pythonhosted.org/packages/a0/4a/4e6ca7355c859e8c7c55bd3fbe09f6b03cafabcfa2f08ed0060443987581/pybase64-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5886e5d057169deb04cdbeeafc7a28dfd94eeb8da4f091e403dffd4464f1145b",
"md5": "5d3c899a099834657069abe60d22d678",
"sha256": "4d307fd11a16266375f9c9032445498faa101abe54ba65b422fb34bab83aa147"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5d3c899a099834657069abe60d22d678",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 66717,
"upload_time": "2024-08-04T16:56:40",
"upload_time_iso_8601": "2024-08-04T16:56:40.937021Z",
"url": "https://files.pythonhosted.org/packages/58/86/e5d057169deb04cdbeeafc7a28dfd94eeb8da4f091e403dffd4464f1145b/pybase64-1.4.0-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": "095802e35c74479bef1836945ec5d8bda8168dff9d78cac0b6867bec61189df3",
"md5": "33ae2cfda924d6f86aa587f5e46e00ee",
"sha256": "89d7c5ac318d4c832f0d07c9cfb323fbdec60b3138d3cf94df622d56628aaffb"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "33ae2cfda924d6f86aa587f5e46e00ee",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 69754,
"upload_time": "2024-08-04T16:56:42",
"upload_time_iso_8601": "2024-08-04T16:56:42.217762Z",
"url": "https://files.pythonhosted.org/packages/09/58/02e35c74479bef1836945ec5d8bda8168dff9d78cac0b6867bec61189df3/pybase64-1.4.0-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": "4394a4f0a9d6e963268c9d7cd945d3ce89e523fdc18c78462d7c6d7b5976da9a",
"md5": "8d12afe6bec2edef70f2ceb2fca76839",
"sha256": "1ad8afea87817744fd5ea0d61cc3bb9ab0023e2a1f9741df578d347fc106cfd4"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8d12afe6bec2edef70f2ceb2fca76839",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 56453,
"upload_time": "2024-08-04T16:56:43",
"upload_time_iso_8601": "2024-08-04T16:56:43.394906Z",
"url": "https://files.pythonhosted.org/packages/43/94/a4f0a9d6e963268c9d7cd945d3ce89e523fdc18c78462d7c6d7b5976da9a/pybase64-1.4.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d0932c8f30f760191ccbf43d38de39a5c27d280ff07cd4a203375bde59aa5808",
"md5": "2d855e3b04a09dc1a947f5e6027caaa7",
"sha256": "11f9c7edf1d221203938f8fb58be2b3e9b3ec87863bfeb215a783a228d305786"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2d855e3b04a09dc1a947f5e6027caaa7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 66974,
"upload_time": "2024-08-04T16:56:44",
"upload_time_iso_8601": "2024-08-04T16:56:44.548552Z",
"url": "https://files.pythonhosted.org/packages/d0/93/2c8f30f760191ccbf43d38de39a5c27d280ff07cd4a203375bde59aa5808/pybase64-1.4.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94ccc17bb85a7608b54e7bf25f4583319dc3821065331d1d8e07fced55f41539",
"md5": "7de7fdef0e363d987d067a4fe4ebb0d8",
"sha256": "09b8bc436c0f16e675fddb963d7d2be0fce3d0f8a28a39081c127d4aa3ffb1bf"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "7de7fdef0e363d987d067a4fe4ebb0d8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 55254,
"upload_time": "2024-08-04T16:56:45",
"upload_time_iso_8601": "2024-08-04T16:56:45.760833Z",
"url": "https://files.pythonhosted.org/packages/94/cc/c17bb85a7608b54e7bf25f4583319dc3821065331d1d8e07fced55f41539/pybase64-1.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c5b24b473232b6eeac26b12eee3ce9f27bd5eb392c0df9bb10e8715fa67b682",
"md5": "49d11d3195a7ad0ae8cfe21d9d786d9e",
"sha256": "ddf2f84779a338ad52d37594442c03109ab559cc6c9b437daaa745d6253d0bf9"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "49d11d3195a7ad0ae8cfe21d9d786d9e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 53742,
"upload_time": "2024-08-04T16:56:46",
"upload_time_iso_8601": "2024-08-04T16:56:46.811901Z",
"url": "https://files.pythonhosted.org/packages/0c/5b/24b473232b6eeac26b12eee3ce9f27bd5eb392c0df9bb10e8715fa67b682/pybase64-1.4.0-cp38-cp38-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4377c254f190d600fffddcb7960b024c2f830c5a909af2d54526b349c64dd923",
"md5": "8024a6e24e7dd8b8207e45be4e7ca265",
"sha256": "05f1f292a3926df58b8c5b38bdfc4cf4d5ad1499a07309df94a84e7111cf5075"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8024a6e24e7dd8b8207e45be4e7ca265",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 68813,
"upload_time": "2024-08-04T16:56:48",
"upload_time_iso_8601": "2024-08-04T16:56:48.124604Z",
"url": "https://files.pythonhosted.org/packages/43/77/c254f190d600fffddcb7960b024c2f830c5a909af2d54526b349c64dd923/pybase64-1.4.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af3e3bd2dfcd7ffd84dd582ca2f20e68b070d07f68d32a71655453107b08b060",
"md5": "f677181ab51458ad31f3131e61d1eaea",
"sha256": "b52cfeb6f2a4ec8281dafab9a304133c6b3c8c83d96af476d336b068597ecee2"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "f677181ab51458ad31f3131e61d1eaea",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 34118,
"upload_time": "2024-08-04T16:56:49",
"upload_time_iso_8601": "2024-08-04T16:56:49.166562Z",
"url": "https://files.pythonhosted.org/packages/af/3e/3bd2dfcd7ffd84dd582ca2f20e68b070d07f68d32a71655453107b08b060/pybase64-1.4.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e6cbf8694013a8055229713e997b9cfca7087f29321e44921255e9acfc7c1c8",
"md5": "fce3340c16a52c304388d68b2616a382",
"sha256": "ccc097310842d8054b91983481840cf52c85166b295d70348a59423b966cf965"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "fce3340c16a52c304388d68b2616a382",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 36307,
"upload_time": "2024-08-04T16:56:50",
"upload_time_iso_8601": "2024-08-04T16:56:50.140102Z",
"url": "https://files.pythonhosted.org/packages/6e/6c/bf8694013a8055229713e997b9cfca7087f29321e44921255e9acfc7c1c8/pybase64-1.4.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5fc003e62a5d55d5d88f68535f0b3f922c95338a19be8458652b50f06d03ea31",
"md5": "4f18c5eaddbc36f59d684b6de3b22e48",
"sha256": "420c5503b768b7aa0e454fd890915ffbc66bcf9653ee978486a90c4dd6c98a56"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "4f18c5eaddbc36f59d684b6de3b22e48",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 37932,
"upload_time": "2024-08-04T16:56:51",
"upload_time_iso_8601": "2024-08-04T16:56:51.269573Z",
"url": "https://files.pythonhosted.org/packages/5f/c0/03e62a5d55d5d88f68535f0b3f922c95338a19be8458652b50f06d03ea31/pybase64-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe06d5b19e18958145b710f581b7b4476f57b0f44697a24af696b6cf65e3f5b5",
"md5": "3f81b669defd9d046360e219de6ff21a",
"sha256": "957befeb3b23566f2e54dba8e2c0a15ceeb06c18fce63a3b834308e6e5b0ac29"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3f81b669defd9d046360e219de6ff21a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 31366,
"upload_time": "2024-08-04T16:56:52",
"upload_time_iso_8601": "2024-08-04T16:56:52.329766Z",
"url": "https://files.pythonhosted.org/packages/fe/06/d5b19e18958145b710f581b7b4476f57b0f44697a24af696b6cf65e3f5b5/pybase64-1.4.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "71e29a2dfe4b5c64312c2c84d5c0d13aec43d84e9a6cf48523831f3bf851c1d2",
"md5": "25bde7cac488d415e102cc78baa44cb2",
"sha256": "50b13c62ba0ce3bf19d01b736b43b93f89bc1477b1f75e7d5882048d2e0fb1f0"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "25bde7cac488d415e102cc78baa44cb2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 57236,
"upload_time": "2024-08-04T16:56:53",
"upload_time_iso_8601": "2024-08-04T16:56:53.388614Z",
"url": "https://files.pythonhosted.org/packages/71/e2/9a2dfe4b5c64312c2c84d5c0d13aec43d84e9a6cf48523831f3bf851c1d2/pybase64-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c9a2c0a229e7d780b8d06e054f06d68aeae0d2019e94dd63f7649b7561eca3d",
"md5": "d7d80491b061541603e0b58934011c22",
"sha256": "f855a2d52886fdf8c7edf3b0d6cfe00690337ae8cbf3f29ef40140b194c578c0"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d7d80491b061541603e0b58934011c22",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 55942,
"upload_time": "2024-08-04T16:56:54",
"upload_time_iso_8601": "2024-08-04T16:56:54.550799Z",
"url": "https://files.pythonhosted.org/packages/5c/9a/2c0a229e7d780b8d06e054f06d68aeae0d2019e94dd63f7649b7561eca3d/pybase64-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49e62347bc4725c247fc4be1c6efa251d5a128a942817a613badbe14dc022fae",
"md5": "3b78ec623de61773ec137cdecdfb611e",
"sha256": "976bb75cffeb87ca5d865cb1a5c4b96de420d6a0d9a7f8ed334f65d5f2785e8c"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3b78ec623de61773ec137cdecdfb611e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 53674,
"upload_time": "2024-08-04T16:56:55",
"upload_time_iso_8601": "2024-08-04T16:56:55.665011Z",
"url": "https://files.pythonhosted.org/packages/49/e6/2347bc4725c247fc4be1c6efa251d5a128a942817a613badbe14dc022fae/pybase64-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "097d6f3429943d480c0210e683eb056d0c4c3f63b320daf09d25c67d10f58816",
"md5": "e548f7b48327d2b1028a600e89f1eee6",
"sha256": "b1fbc82eed9c1f68277a8fd9b0f09b887b64bddacb1e2dd874c4ae1bf1aea6cf"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e548f7b48327d2b1028a600e89f1eee6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 65882,
"upload_time": "2024-08-04T16:56:56",
"upload_time_iso_8601": "2024-08-04T16:56:56.835964Z",
"url": "https://files.pythonhosted.org/packages/09/7d/6f3429943d480c0210e683eb056d0c4c3f63b320daf09d25c67d10f58816/pybase64-1.4.0-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": "effa48f315fa019ab8ac04f87a496c13dd7401dfa512108590b40e6c3077e2ba",
"md5": "77feef571fd35c50428f1b0b6aa54597",
"sha256": "ed6e3448ab5037d60e5568f5667a996704e889bdad0f460fbf521626cf81e6ee"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "77feef571fd35c50428f1b0b6aa54597",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 68883,
"upload_time": "2024-08-04T16:56:57",
"upload_time_iso_8601": "2024-08-04T16:56:57.926976Z",
"url": "https://files.pythonhosted.org/packages/ef/fa/48f315fa019ab8ac04f87a496c13dd7401dfa512108590b40e6c3077e2ba/pybase64-1.4.0-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": "1bc52f45289e60af2b4b66d118c6d086a7b59e6e53495463efb1bffaf280a82c",
"md5": "2618346cb9e005ee1dadfef2f599e202",
"sha256": "59729edf77dc96d7c8cfe4db46688af3e685b0f627e91aec0be2e631e1ed5735"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2618346cb9e005ee1dadfef2f599e202",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 56044,
"upload_time": "2024-08-04T16:56:59",
"upload_time_iso_8601": "2024-08-04T16:56:59.595162Z",
"url": "https://files.pythonhosted.org/packages/1b/c5/2f45289e60af2b4b66d118c6d086a7b59e6e53495463efb1bffaf280a82c/pybase64-1.4.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e0cb4dfa7cfa4d98c6c273cd36e34a373de57b5f9d25a08bb036dfa39e7950ee",
"md5": "50a07c8e93020b45353e6e6b838b7b8a",
"sha256": "7187ec5b97e5f2034335e340d92a8e0bd65b467497b209ee37770a5e80f9ab87"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "50a07c8e93020b45353e6e6b838b7b8a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 66626,
"upload_time": "2024-08-04T16:57:00",
"upload_time_iso_8601": "2024-08-04T16:57:00.722914Z",
"url": "https://files.pythonhosted.org/packages/e0/cb/4dfa7cfa4d98c6c273cd36e34a373de57b5f9d25a08bb036dfa39e7950ee/pybase64-1.4.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a75947dee832997996736cd2ff66863b2675fa9326eaeb9663d2c93e3b1dcce5",
"md5": "7a6b619d503b52c613bf9dbc1f87fb4d",
"sha256": "cbb69a4bda3d2ccb044eab060e5a3312931e80c0b1a438310e0494b80a7c2f8c"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "7a6b619d503b52c613bf9dbc1f87fb4d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 54879,
"upload_time": "2024-08-04T16:57:01",
"upload_time_iso_8601": "2024-08-04T16:57:01.857946Z",
"url": "https://files.pythonhosted.org/packages/a7/59/47dee832997996736cd2ff66863b2675fa9326eaeb9663d2c93e3b1dcce5/pybase64-1.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18a1ddf6557920ef2d7f7827ab11fb705ff9c424f4f1d09b9c60e05c829a39c5",
"md5": "7b05425d4c16f3e20ea8cdd97ba47ee6",
"sha256": "971c897a6844c7ca061d9abe61979c6cc5b8801511b6ebf3f147d2bfa7059c13"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "7b05425d4c16f3e20ea8cdd97ba47ee6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 53426,
"upload_time": "2024-08-04T16:57:03",
"upload_time_iso_8601": "2024-08-04T16:57:03.592496Z",
"url": "https://files.pythonhosted.org/packages/18/a1/ddf6557920ef2d7f7827ab11fb705ff9c424f4f1d09b9c60e05c829a39c5/pybase64-1.4.0-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c5a6e883e25974da978af59de66c3a4ff5eeb25bdd92ed58c67e8ad841f642c",
"md5": "ad4715c7b55a5a8126beba9aecbc8a7e",
"sha256": "f18bccbe275ae65953d44aa27fbde14412fbbe65d526a5862f15c59f4920a563"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ad4715c7b55a5a8126beba9aecbc8a7e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 68434,
"upload_time": "2024-08-04T16:57:04",
"upload_time_iso_8601": "2024-08-04T16:57:04.697737Z",
"url": "https://files.pythonhosted.org/packages/4c/5a/6e883e25974da978af59de66c3a4ff5eeb25bdd92ed58c67e8ad841f642c/pybase64-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "228447960bafb7ef799cb22405a67d58ee95e893c32e28d8a28f570c20eb4def",
"md5": "20524ec5d2d94cb00a3310aa85f3886a",
"sha256": "3ca60f2b6745e12b838854dcfc2e65a6d1d3cea0725a78f278b4ea8090563a6e"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "20524ec5d2d94cb00a3310aa85f3886a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 34116,
"upload_time": "2024-08-04T16:57:05",
"upload_time_iso_8601": "2024-08-04T16:57:05.771706Z",
"url": "https://files.pythonhosted.org/packages/22/84/47960bafb7ef799cb22405a67d58ee95e893c32e28d8a28f570c20eb4def/pybase64-1.4.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc4306f532c97bf13db5e704c83bd81846ce5fa90a71a643c70dd661e1755083",
"md5": "16a7848365aed15563565ff61d1c7ef1",
"sha256": "46825067ae83fda34d983ba89632191370919f9fd17186eee808f8f8b49043a0"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "16a7848365aed15563565ff61d1c7ef1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 36301,
"upload_time": "2024-08-04T16:57:06",
"upload_time_iso_8601": "2024-08-04T16:57:06.835325Z",
"url": "https://files.pythonhosted.org/packages/cc/43/06f532c97bf13db5e704c83bd81846ce5fa90a71a643c70dd661e1755083/pybase64-1.4.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb9af23c2a301cbd78f28c35f98f6b1da3d69170afda6010664b0e5d0efedd9b",
"md5": "c26d88c66936d10c2574ada4f64afb43",
"sha256": "de47017df163056f3124ec9bc4405db3df213e43b315204429d78fd3ce6a4299"
},
"downloads": -1,
"filename": "pybase64-1.4.0-cp39-cp39-win_arm64.whl",
"has_sig": false,
"md5_digest": "c26d88c66936d10c2574ada4f64afb43",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 29538,
"upload_time": "2024-08-04T16:57:07",
"upload_time_iso_8601": "2024-08-04T16:57:07.865022Z",
"url": "https://files.pythonhosted.org/packages/fb/9a/f23c2a301cbd78f28c35f98f6b1da3d69170afda6010664b0e5d0efedd9b/pybase64-1.4.0-cp39-cp39-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c577077d1a3b23f6c4057512f0d65462fe32a96fc229d2c2daf4188e423e48f",
"md5": "7f24d8fb31851b06f89f25bed56be5ea",
"sha256": "0f867d6b667e1f3a9acf602c3cdf9a477f75ed88e7496cd792470bb74a7c275d"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "7f24d8fb31851b06f89f25bed56be5ea",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 37914,
"upload_time": "2024-08-04T16:57:09",
"upload_time_iso_8601": "2024-08-04T16:57:09.312819Z",
"url": "https://files.pythonhosted.org/packages/2c/57/7077d1a3b23f6c4057512f0d65462fe32a96fc229d2c2daf4188e423e48f/pybase64-1.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d04b05d1c836d3da777e02b8603644b471575fcdfa966c9de606c7fb23978a99",
"md5": "7096d85a7dc9efefbc54603494eb9751",
"sha256": "de01468a6626c5056038b51d28748d3cae1765e3913c956d47469cced5aba353"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7096d85a7dc9efefbc54603494eb9751",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 31238,
"upload_time": "2024-08-04T16:57:10",
"upload_time_iso_8601": "2024-08-04T16:57:10.800395Z",
"url": "https://files.pythonhosted.org/packages/d0/4b/05d1c836d3da777e02b8603644b471575fcdfa966c9de606c7fb23978a99/pybase64-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd8ed7dd6439d4dea44cf8dd67e8c3b0d3f4f0dca801c8e0bd2c7027a4621736",
"md5": "27d72a6703371dcbf5a2fb83f0dad71d",
"sha256": "cc497c8c05fb00a3ee4b0946aba811c7c1e2153e11e26b91f31a65fb72820f71"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "27d72a6703371dcbf5a2fb83f0dad71d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 34822,
"upload_time": "2024-08-04T16:57:12",
"upload_time_iso_8601": "2024-08-04T16:57:12.133408Z",
"url": "https://files.pythonhosted.org/packages/bd/8e/d7dd6439d4dea44cf8dd67e8c3b0d3f4f0dca801c8e0bd2c7027a4621736/pybase64-1.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97d38442c43fd22e3d6203a94957243f42c7e1fbcd1a9b37aa0868251f610e01",
"md5": "f0f9b490888c2586961e5ba7761aa1cb",
"sha256": "974aab42844d33b5b3b98999e3a614705f5ad28f5cdcfd6bed2140e1d30bc187"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f0f9b490888c2586961e5ba7761aa1cb",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 40963,
"upload_time": "2024-08-04T16:57:13",
"upload_time_iso_8601": "2024-08-04T16:57:13.439434Z",
"url": "https://files.pythonhosted.org/packages/97/d3/8442c43fd22e3d6203a94957243f42c7e1fbcd1a9b37aa0868251f610e01/pybase64-1.4.0-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": "182e8a73f92dcc62a8203f1d79cbe9a099f65fcf4d386c8d10b917f7ea615d51",
"md5": "43509f14ff3dbfa9db9feb53692fcfdf",
"sha256": "528f23e78c5f9b116e828d7f3981bc35b102e9b4a46d14b1113973f217f7c03b"
},
"downloads": -1,
"filename": "pybase64-1.4.0-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": "43509f14ff3dbfa9db9feb53692fcfdf",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 42527,
"upload_time": "2024-08-04T16:57:14",
"upload_time_iso_8601": "2024-08-04T16:57:14.482933Z",
"url": "https://files.pythonhosted.org/packages/18/2e/8a73f92dcc62a8203f1d79cbe9a099f65fcf4d386c8d10b917f7ea615d51/pybase64-1.4.0-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": "c6a4cfe13aec1757c6536fc4e1a37d8e18a7206a4a46df6da5cb48ee058fec7c",
"md5": "0c25a783bf01d4e718b7b38dfec9db79",
"sha256": "a10dea4196cb44492137a31dcc5062b076f784eb7fd6160b329600942319e100"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "0c25a783bf01d4e718b7b38dfec9db79",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 36701,
"upload_time": "2024-08-04T16:57:16",
"upload_time_iso_8601": "2024-08-04T16:57:16.335867Z",
"url": "https://files.pythonhosted.org/packages/c6/a4/cfe13aec1757c6536fc4e1a37d8e18a7206a4a46df6da5cb48ee058fec7c/pybase64-1.4.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8550ebca4275740a42cceeb3e1fe402c42c0bf0eb7a5e32ced44dfe4b6c48ea0",
"md5": "f4c346c72751966a20642aea2a31402f",
"sha256": "371835babfa0119a809e60b18cd48e506db05a12717c96086e16b74856fcc186"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f4c346c72751966a20642aea2a31402f",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 37642,
"upload_time": "2024-08-04T16:57:17",
"upload_time_iso_8601": "2024-08-04T16:57:17.464899Z",
"url": "https://files.pythonhosted.org/packages/85/50/ebca4275740a42cceeb3e1fe402c42c0bf0eb7a5e32ced44dfe4b6c48ea0/pybase64-1.4.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47ae02c7f519a97bfdf0fb8eca9143ff61b83763537418815cde0340f710339d",
"md5": "49126f2aaec2c1a4fb8b88335765de4d",
"sha256": "9d1dd06136a5a1f7c1ea0c9fb0faf23ee333346a8667d462a537ca557b321e8f"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "49126f2aaec2c1a4fb8b88335765de4d",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 31236,
"upload_time": "2024-08-04T16:57:18",
"upload_time_iso_8601": "2024-08-04T16:57:18.566690Z",
"url": "https://files.pythonhosted.org/packages/47/ae/02c7f519a97bfdf0fb8eca9143ff61b83763537418815cde0340f710339d/pybase64-1.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06a438c258fabed98069b1c25d1abf4c48a939f50fd7de18e9be393687378532",
"md5": "543cbc5eb2f2408bfae31957dfc32449",
"sha256": "7920615b0db6e8b59ea3b3a0f831962819db96bc63583e918a6e97e2327b0218"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "543cbc5eb2f2408bfae31957dfc32449",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 34807,
"upload_time": "2024-08-04T16:57:20",
"upload_time_iso_8601": "2024-08-04T16:57:20.409793Z",
"url": "https://files.pythonhosted.org/packages/06/a4/38c258fabed98069b1c25d1abf4c48a939f50fd7de18e9be393687378532/pybase64-1.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5fccaf4700241f56954acba220491720974d4d1884f3e2d00369b98729796363",
"md5": "8148fbd8e5210eac01365cbf5237f853",
"sha256": "2b3a789d61e39bb84f5e894332c6db108c39acf68b2710b6339162ff90d7a615"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8148fbd8e5210eac01365cbf5237f853",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 40984,
"upload_time": "2024-08-04T16:57:21",
"upload_time_iso_8601": "2024-08-04T16:57:21.783134Z",
"url": "https://files.pythonhosted.org/packages/5f/cc/af4700241f56954acba220491720974d4d1884f3e2d00369b98729796363/pybase64-1.4.0-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": "13a1e4c9afbfd0761ad71d381e8bf08aca4581bf6cda919725e8c78f83668dee",
"md5": "a732dea166a8e1a495fed25f9e65a74a",
"sha256": "4a1357a4913b72b947877a13ef54cf0543978a1a5b55ae8983e5856bb8ff2e8e"
},
"downloads": -1,
"filename": "pybase64-1.4.0-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": "a732dea166a8e1a495fed25f9e65a74a",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 42598,
"upload_time": "2024-08-04T16:57:22",
"upload_time_iso_8601": "2024-08-04T16:57:22.869216Z",
"url": "https://files.pythonhosted.org/packages/13/a1/e4c9afbfd0761ad71d381e8bf08aca4581bf6cda919725e8c78f83668dee/pybase64-1.4.0-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": "b4f4d0bb54fee7210eff3f520438cc593f909f747efc53c98803a7fa04a7c78f",
"md5": "c1e0856310e45fa427cb43c2c52da1c8",
"sha256": "06fb8f4706f0148484788b0036e8ee77717a103d50854ac060d51b894735451a"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "c1e0856310e45fa427cb43c2c52da1c8",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": ">=3.8",
"size": 36681,
"upload_time": "2024-08-04T16:57:24",
"upload_time_iso_8601": "2024-08-04T16:57:24.690541Z",
"url": "https://files.pythonhosted.org/packages/b4/f4/d0bb54fee7210eff3f520438cc593f909f747efc53c98803a7fa04a7c78f/pybase64-1.4.0-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b41c1f484437713ceeeee15fe5881d30cb858f59fa26ac4c7cbe604765f27a2",
"md5": "77309acef20af625653447ab37b7be70",
"sha256": "ae9e00211374a3c0d16c557b157a6fbfaf76c976a55da5516ba952d3ff893422"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "77309acef20af625653447ab37b7be70",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 37910,
"upload_time": "2024-08-04T16:57:25",
"upload_time_iso_8601": "2024-08-04T16:57:25.895713Z",
"url": "https://files.pythonhosted.org/packages/2b/41/c1f484437713ceeeee15fe5881d30cb858f59fa26ac4c7cbe604765f27a2/pybase64-1.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb2d92a0f5fbccece2ccd985420b6abd918289f9c3ad2dfec59416038177fd00",
"md5": "7f40f760563c737a509bc3e24738dd2f",
"sha256": "5bd98d7b4467953c6b904ae946cf78443dca0f42ec44facb3e9db1800272ff45"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7f40f760563c737a509bc3e24738dd2f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 31233,
"upload_time": "2024-08-04T16:57:26",
"upload_time_iso_8601": "2024-08-04T16:57:26.993046Z",
"url": "https://files.pythonhosted.org/packages/cb/2d/92a0f5fbccece2ccd985420b6abd918289f9c3ad2dfec59416038177fd00/pybase64-1.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4aeb7e94aaabc224176ec1308a395404f29e72fbfb2b138e286d48cfe166ddd0",
"md5": "ba589b9ae8f724fba1a37347581bb531",
"sha256": "824d0d1c04cf0556b22a386b4a3dcefa22f288d15784dd04aa3240c0831efb51"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ba589b9ae8f724fba1a37347581bb531",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 34819,
"upload_time": "2024-08-04T16:57:28",
"upload_time_iso_8601": "2024-08-04T16:57:28.745532Z",
"url": "https://files.pythonhosted.org/packages/4a/eb/7e94aaabc224176ec1308a395404f29e72fbfb2b138e286d48cfe166ddd0/pybase64-1.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73ed8de793b5a351abc9c49b4a4202dbc3d2516e1b98f100359ced4585faca35",
"md5": "459ae8c96664f4c6e606583c3dfad39c",
"sha256": "7d03e7373b1b398bb6137ee1fe39fa2c328f9d6a92a0ea5c8b9b37767b7ff52d"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "459ae8c96664f4c6e606583c3dfad39c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 40957,
"upload_time": "2024-08-04T16:57:29",
"upload_time_iso_8601": "2024-08-04T16:57:29.855702Z",
"url": "https://files.pythonhosted.org/packages/73/ed/8de793b5a351abc9c49b4a4202dbc3d2516e1b98f100359ced4585faca35/pybase64-1.4.0-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": "e6abbb92126ebc6ebfa136c6306d447c753be35965e611f70f67a03564f1c9e0",
"md5": "d9cdb150808d42f97e0c8b8e676916f5",
"sha256": "e252a1a04fbbb7ed091150aed92ad1fbce378099e6ad385b0473e25f3a97a98e"
},
"downloads": -1,
"filename": "pybase64-1.4.0-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": "d9cdb150808d42f97e0c8b8e676916f5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 42524,
"upload_time": "2024-08-04T16:57:30",
"upload_time_iso_8601": "2024-08-04T16:57:30.977871Z",
"url": "https://files.pythonhosted.org/packages/e6/ab/bb92126ebc6ebfa136c6306d447c753be35965e611f70f67a03564f1c9e0/pybase64-1.4.0-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": "d29243716b23d69c3de4949510e7f3d6e8355f4960e1de3067932930ba6f497d",
"md5": "994a2a6132fdfc05401a81eec3b6111b",
"sha256": "c689e9aa56c7056eb42bfd7dd383d98f67852e3fc78c57747a11e049e0e1ba12"
},
"downloads": -1,
"filename": "pybase64-1.4.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "994a2a6132fdfc05401a81eec3b6111b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 36681,
"upload_time": "2024-08-04T16:57:32",
"upload_time_iso_8601": "2024-08-04T16:57:32.100639Z",
"url": "https://files.pythonhosted.org/packages/d2/92/43716b23d69c3de4949510e7f3d6e8355f4960e1de3067932930ba6f497d/pybase64-1.4.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e93b10fe20bd63304550914f077bac75710a7da9d668b9e9b5a74571dd0f4990",
"md5": "2152a4f8ef69a0e762289d2f60eea5e1",
"sha256": "714f021c3eaa287c1097ced68f2df4c5b2ecd2504551c2e71c843f54365aca03"
},
"downloads": -1,
"filename": "pybase64-1.4.0.tar.gz",
"has_sig": false,
"md5_digest": "2152a4f8ef69a0e762289d2f60eea5e1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 136347,
"upload_time": "2024-08-04T16:57:33",
"upload_time_iso_8601": "2024-08-04T16:57:33.253147Z",
"url": "https://files.pythonhosted.org/packages/e9/3b/10fe20bd63304550914f077bac75710a7da9d668b9e9b5a74571dd0f4990/pybase64-1.4.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-04 16:57:33",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "mayeut",
"github_project": "pybase64",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pybase64"
}