Skip to main content

Fast Base64 encoding/decoding

Project description

Fast Base64 implementation

license-status pypi-status python-versions Documentation Status gha-status codecov-status

This project is a wrapper on libbase64.

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

Installation

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.

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???'

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

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

Full documentation on Read the Docs.

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

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)

Changelog

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pybase64-1.2.3.tar.gz (117.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pybase64-1.2.3-pp39-pypy39_pp73-win_amd64.whl (38.8 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (38.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.2.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (41.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (38.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase64-1.2.3-pp38-pypy38_pp73-win_amd64.whl (38.8 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (38.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.2.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (41.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (38.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase64-1.2.3-pp37-pypy37_pp73-win_amd64.whl (38.8 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (38.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.2.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (41.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.2.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (42.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (38.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase64-1.2.3-cp311-cp311-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pybase64-1.2.3-cp311-cp311-win32.whl (37.1 kB view details)

Uploaded CPython 3.11Windows x86

pybase64-1.2.3-cp311-cp311-musllinux_1_1_x86_64.whl (174.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pybase64-1.2.3-cp311-cp311-musllinux_1_1_s390x.whl (71.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

pybase64-1.2.3-cp311-cp311-musllinux_1_1_ppc64le.whl (74.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

pybase64-1.2.3-cp311-cp311-musllinux_1_1_i686.whl (156.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

pybase64-1.2.3-cp311-cp311-musllinux_1_1_aarch64.whl (82.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pybase64-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (68.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pybase64-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (70.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pybase64-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (80.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pybase64-1.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (173.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (159.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.2.3-cp311-cp311-macosx_11_0_arm64.whl (35.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pybase64-1.2.3-cp311-cp311-macosx_10_9_x86_64.whl (40.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pybase64-1.2.3-cp310-cp310-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pybase64-1.2.3-cp310-cp310-win32.whl (37.1 kB view details)

Uploaded CPython 3.10Windows x86

pybase64-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl (172.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pybase64-1.2.3-cp310-cp310-musllinux_1_1_s390x.whl (69.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

pybase64-1.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl (72.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

pybase64-1.2.3-cp310-cp310-musllinux_1_1_i686.whl (154.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

pybase64-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl (79.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pybase64-1.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (65.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pybase64-1.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (68.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pybase64-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (78.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pybase64-1.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (171.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (156.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.2.3-cp310-cp310-macosx_11_0_arm64.whl (35.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pybase64-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl (39.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pybase64-1.2.3-cp39-cp39-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pybase64-1.2.3-cp39-cp39-win32.whl (37.1 kB view details)

Uploaded CPython 3.9Windows x86

pybase64-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl (172.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pybase64-1.2.3-cp39-cp39-musllinux_1_1_s390x.whl (68.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

pybase64-1.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl (71.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

pybase64-1.2.3-cp39-cp39-musllinux_1_1_i686.whl (153.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

pybase64-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl (79.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pybase64-1.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (65.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pybase64-1.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (68.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pybase64-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (77.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pybase64-1.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (156.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.2.3-cp39-cp39-macosx_11_0_arm64.whl (35.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pybase64-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl (39.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pybase64-1.2.3-cp38-cp38-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.8Windows x86-64

pybase64-1.2.3-cp38-cp38-win32.whl (37.1 kB view details)

Uploaded CPython 3.8Windows x86

pybase64-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl (172.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pybase64-1.2.3-cp38-cp38-musllinux_1_1_s390x.whl (69.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

pybase64-1.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl (72.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

pybase64-1.2.3-cp38-cp38-musllinux_1_1_i686.whl (154.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

pybase64-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl (80.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pybase64-1.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (66.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pybase64-1.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (69.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pybase64-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (78.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pybase64-1.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (171.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (157.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.2.3-cp38-cp38-macosx_11_0_arm64.whl (35.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybase64-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl (39.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pybase64-1.2.3-cp37-cp37m-win_amd64.whl (38.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

pybase64-1.2.3-cp37-cp37m-win32.whl (37.1 kB view details)

Uploaded CPython 3.7mWindows x86

pybase64-1.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl (172.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pybase64-1.2.3-cp37-cp37m-musllinux_1_1_s390x.whl (69.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

pybase64-1.2.3-cp37-cp37m-musllinux_1_1_ppc64le.whl (72.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

pybase64-1.2.3-cp37-cp37m-musllinux_1_1_i686.whl (154.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

pybase64-1.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl (80.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pybase64-1.2.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (66.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

pybase64-1.2.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (69.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pybase64-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (79.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pybase64-1.2.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (171.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (157.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl (39.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pybase64-1.2.3-cp36-cp36m-win_amd64.whl (42.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

pybase64-1.2.3-cp36-cp36m-win32.whl (39.3 kB view details)

Uploaded CPython 3.6mWindows x86

pybase64-1.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl (171.6 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

pybase64-1.2.3-cp36-cp36m-musllinux_1_1_s390x.whl (68.4 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ s390x

pybase64-1.2.3-cp36-cp36m-musllinux_1_1_ppc64le.whl (71.5 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ppc64le

pybase64-1.2.3-cp36-cp36m-musllinux_1_1_i686.whl (153.4 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

pybase64-1.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl (79.2 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

pybase64-1.2.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (65.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

pybase64-1.2.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (68.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

pybase64-1.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (77.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pybase64-1.2.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.2.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (156.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.2.3-cp36-cp36m-macosx_10_9_x86_64.whl (39.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pybase64-1.2.3.tar.gz.

File metadata

  • Download URL: pybase64-1.2.3.tar.gz
  • Upload date:
  • Size: 117.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3.tar.gz
Algorithm Hash digest
SHA256 76d074df9a7b989b3589926ab1946677bbb399ecfe230714b13157e2633611ed
MD5 600c0c5ee65a81d1c393b41388ea8d28
BLAKE2b-256 7ae59f5a1c62c5fe6aed890ba4ed068a4fce901ca6f8e10bcece5c755869400d

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5d00b0054345c347f8c38802e26bfa40fb28d29a481e333b849044decfdf519f
MD5 d6e2b654ec9ab70865b7024b06efda06
BLAKE2b-256 cec8df6f9448d6bda37d94e9275de63266119db11f82752f4736b865d2c7cef4

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72e4eeaa4170b123ad57071bab2b65cf69f2005d92ccfdebee0a1252cbc0576c
MD5 51ffbbe28beb61c95150f685c5f7ff86
BLAKE2b-256 b742a213732324f3c7f52b57474aa7ab7fd4b44e9e91d060709137d1b94b73e6

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6135c961a7d0a8ab839ee7ae6dae6e0b318e22e19b820e6f7aadbbac6bbb4d2a
MD5 30ad8ec66ad8d394bfdaa4a102c41b9e
BLAKE2b-256 ef4c7c0127402fabca6c198fcb57540f810ff246bcd73a894cd575a0c40d41a9

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47e2454298e1507546a6944c6a8aa23183e47aff1bab9a8233fc66d49cce0c87
MD5 e20391f75850105669f10bef1c83b0df
BLAKE2b-256 e447e3445ee703b9d8259332243e576c78697aa71d6dc97afd9e642b5be7b729

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0797f866300240b7af2092bd332bcf3d7d3925953bd5d8cd4e95d1c52adf6af
MD5 3b2e452ce83e0ae5646bf0eb6dda17b0
BLAKE2b-256 420e81b903d424c9f407effeed2e45bb27b476a1da786caed596bbecc16c34e0

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 90f07db08a87b7cc7ceb745954f284854393e110917bb6aed118d9c0e07c45ff
MD5 4e39463f7eb967b614c93e0fa254ca1c
BLAKE2b-256 6fa9e4808cb8e3fdf02d74220608aff40b67c51963612cc2566955f9885fb827

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed6cdfaa43905168ad7447ee01dcb6c168ade87ca8d58736f954c8739cc113f6
MD5 c5211149d07fea5f8039b4786e574f99
BLAKE2b-256 9cd7528558de6593333f54d373c0b1dd758e94f1ea64c8483ceeebf0a9aa8fa8

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0e703404e7b4afacccb09423b924d19b6e20eb3ac3e3755e5b4bcbd877e7fc2
MD5 ddb6b03b1f243e5b2f070416e6990c2b
BLAKE2b-256 efdacd244a60a2f5dcbc7b8a45c4fd18a60d02c497722c50d797ac70aaa79426

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed432b1f8792e3b9cef6ef5336ed51b9866726dc9fd3dcd5e9d54867dd8d23a7
MD5 fa1fb292ef8dc3292324fe0f32b91d42
BLAKE2b-256 373da590d5a7f0cb69d22d70ee367dd0a64d5ee9e58160ed5d50b2c8c18c913c

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eba9c73d63c9f2b00ea39a38e075feb3f3f092ff298581532270814700db060b
MD5 b673991daaae87ceb41be5ff16b8e003
BLAKE2b-256 680c78528a826cf70dcfed285fd7086f9a683eeac095174155082fd431436bb2

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 63ecca6afe8ac97bb22ce55be52964ce10d51fb4bd2fbe5083c53626749fd96b
MD5 9779f17b916c9b0061754e634f702a15
BLAKE2b-256 fb0a0e5686b73e66796241e9cdc9a5cc0bb2085c86db0947876ef3ce27262a29

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ca0e6b319981a6dae1eb38ee2c0eab7165f29017bb3d4c0e38fe3064dc04936
MD5 149fa29a7aad0b62c67d3fab95064708
BLAKE2b-256 1617d32c71b29f6f86c8bc2673ce13604b0b12f8e2b1a7c5b95e2d01c4235e95

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01bbf4ed79b76a505de81076c04aa28cdd2415c75a100363066d4eda701ec840
MD5 e548d5352a08db024c33a5935db3f8ad
BLAKE2b-256 3e50b38a02c5987dde8fbb44003341c08dc44105bcd58f51d05c559c0080e488

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7dbc2b242a3f6591010303e98eee68e498acb58a9c099b6c50cc1d283eeb2150
MD5 b9e92a41ef80617df4bb7b384fefcba3
BLAKE2b-256 6bcc53f802da8f41889965d49820d3c1a9c203d222a4f1d1fc21c630d9f74961

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55244f653fd617e236987b24c1889e2aff8424d01e434bff60d21b3731007cfe
MD5 cdf4f94770ee37c9dcd1191c7e7c81a2
BLAKE2b-256 47e0c642245fc024c9b93ff7b837cd098035a86055568dd4f5f28f28ea8ebd8e

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5721f8f8a14952a8e923d4f7bcf41c40693c7b1148f4a954d2b66adf3ae9edfe
MD5 ba88c404b2416638e0d9f80af622bbb2
BLAKE2b-256 6e7f8e459baa7c060f8ff2b076372d21061a93a08ebd783259fb22fa2c2cf7f7

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 78950189489bd9c7448d9643fa686f1c6d35f683d5e5601576726984944de74d
MD5 5ad0b562b0d33d40f1aa2bc5da885170
BLAKE2b-256 5098ef8c0ed0de238ab05cdb191d01a401b90182c864f3d90da0c65bd361b94f

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 75f2797e8c140ad5f7a3ccbb148a592ba5b3e169a0ea94f4280b52ecc4f2ccc7
MD5 43ac9bf2ff852307e3196566dd676723
BLAKE2b-256 98226a5695e816746e51e1d3704370ba5c18d97436d127fce1db219248f6754a

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9879621381dd6b3e2669b251e75bac501888238d06bb4f4625974436e2b7d25d
MD5 536160fb54861cf3fd0c8b8e78614c08
BLAKE2b-256 7bd054e2532aa589443d2ca7837dc02fc5c973436be49be3c9045a0cd496ccc9

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1f4741245e8735f4056a14f7386e1e685d307c5ef954681328a232ea2f7e790a
MD5 207c26a3202232558ea6df5a682949b4
BLAKE2b-256 699fa1d54d98aac8fb7027e126ba463da878e195eaa521904a3b6348f2d774f7

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 29a03a528bbc6894d8608142a4b6c055f90935f4638e0abcef596f44462e3c73
MD5 a83cbf8383e2a30f1f2b914cdd67b6ee
BLAKE2b-256 0de27172ebcb117e322c0a399fd6e0e25b1667cf375f85c031a8ded69871c225

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aec642aaaf750b05636d5fe62d008bcc8e1f30c42cf5ac4b49f82c3fc79fa233
MD5 54c21d6ed9fc5d46b6e369d80228d17d
BLAKE2b-256 12730e5fcc021b40e6f384f533f2dd33f02996fdfafb44483ff19b9f1de177fe

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1d9dea62520e6cadbd87d5e3a282034a6a614d43d5e4b715e5947296ee7d81f
MD5 a59848897a887c3bb3e581f59468d0ce
BLAKE2b-256 4dd0e2ce215cee699ec0a65961d9e23320dae1cca708f0cc5731cfa8ad11eef3

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 292d7d35f028a9e4a1662520a68a462470cabb3ddb1cc2c5668a3e37c7d94fef
MD5 de9732f873458a33cfc21ce7d14c3dc1
BLAKE2b-256 d8124756dd2e94c94e63c47420896080cb40f8426c7f88f5ba7a62967f872878

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 537e2d49eb30b87f949c3d08fe583401e612d67bfba99d294a09504f59db446c
MD5 713b4b4e1bcfbc1fd8771791d092c1a2
BLAKE2b-256 83cf58ee4373fc7b37e39b116c2514911e277c094f4080660c0f23c02637f419

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f4eaa156c08d5eed2139e8491a8cb01b6eceb3dc12871dac0306bba13bc5574
MD5 69d962f52a8667974999a364a7cc9a2a
BLAKE2b-256 ec26a88612a18e9c4de1f6ccab473e2906a5b8aaf7eb51fd025a3864566fd80e

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a061c6206f1bf4119a8b5498d0dfb4015672711eb8dc38b3f707549ab570929
MD5 10ee9f2ac5517176b08f34f0347d131d
BLAKE2b-256 72e03d31e7c0436c6a364f2164bba665d85ce0b40b4827a10c87bff9d38f2078

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dac069c2d3efc0e149ace4fb3c6293436b0a86bd2d3e3c593c37b2603e4b90e
MD5 7d0d078c4eecfcd77e83c30c5fc439f8
BLAKE2b-256 bb12e59bc16455c4492d9e3178ebf04b81d9f0d4b8a55e8fd02f4758bc16575a

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f773941900cea224fc78f26bb9e3429b8c4174652047e2f46cd33f53e2555f9e
MD5 45413bc22273d5cf6329e1e97c942d54
BLAKE2b-256 1be956159cadfb5adc9fb6633985e7fe95fd5c4d3255fec5cfa47c719e76adea

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ddbb9044e09305c08fca8de4ed1fb03d1bba1d10cdd23c6d722d843c0ce54ade
MD5 da8eb8788329450b4108b623de7fd5e0
BLAKE2b-256 ac4ac1f59c37edd4c0454b677a9ddbed2a7ed42973139f6a8cd701e58f2dec28

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2dae0dd94b0b3eabef126d4780af8de4c081a54558ada5b130a5a1f976cbe832
MD5 3950c89bf6a708a79493a68b797304dd
BLAKE2b-256 7a5ffcd297bb80af334349422c38808a90e0d718f599a7e4f534345c9c97a428

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1249a79e354bd107860243742cb0e92d72cca153c57fea3ea22f7f37c5fa56a6
MD5 60d44f27dd7e28663b64921366b95f1c
BLAKE2b-256 3ac7f543929b3f90149d8d830d2274ff4a5782be0cc3dd62cb335bf2115a531f

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e7931f8907703270f6effab1b98218136f6ad9905ef455e963685585f639a1fa
MD5 d5e606d758f643742f6572009ccc5ae1
BLAKE2b-256 eb6d62c69c321fbfabc28b0d4369f58897b2471737105f8c68b4197485818006

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 7d8e9c97cc807130be1f4629bdf38fe7751c8e4b7cce375c14ce038db855be6f
MD5 d13d9d88c4059a0533e925f425ae88d6
BLAKE2b-256 445b6c0f9645f2aeb5ea742887997eb3aebd52160f4b88db5961e19bcedf4b69

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d3a697901a0d1079126dbb07577ffd849b4af3293d7f3d1b58089293758c3d3e
MD5 79fb9b2f8ad73c5002f04621ad958a3a
BLAKE2b-256 073e6396abee7b5eac9bca911cf37caaa6a8a81efba9ea73956339e0e4ab793f

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4b841ebec0a7d6d612cc22b5438d760566268ce47838179228c919c607ca88be
MD5 65e3f8bf176f2dadb5263e0823e5f128
BLAKE2b-256 90952221ddd41d61cd6dc688aba88896f3cff11bc54b87cc67d64cc4f88844cf

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b5f986e99458495853840385e01f2bea384075863a77d7184c4db846d9266b0
MD5 be7463ebc26aa9379bef5118230f4a50
BLAKE2b-256 ee8ca7a23aded120d07dcf61c68bda29263a16e6acc0eee527cf427af2585f30

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9bc1f11f8f2c2c68b37110b2c898a102ba978f845370bded24830212ab423c02
MD5 790718aba7d68ccb8ca321f5f2c77a69
BLAKE2b-256 229f9a130257827caacc93dada14c75c6ea105e2e7565c94cedf901cad5c5726

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01072c567467937ac53af01d39b0594ebe03023ae58c0fd21bee0649bf966411
MD5 6d020ac7f4015b2a5b404bd923791106
BLAKE2b-256 f410b355f144b514df9f74dbeedb69fe7e831572cb52a550bd5c77ef1bbe88e3

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33b6f06be78fed7433f56b73a1d52dfd0d7d5d78f686d52f215e67515e3f10c3
MD5 3b9ad247342a175480fd931468cd1a32
BLAKE2b-256 e26e13333853326ab426d29d089bb73fa9446a51153be288de19a9f7e41bd444

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0730f59e8d4535843444327de127316d4ba39878a4dbc38d3a00ef16b6c62a36
MD5 9ef142b6eec20786846e0a5e38bfb59a
BLAKE2b-256 13f67b67357dd29a0ab966008604fe864cf1e63b4b0b03524ab3e01f9c8f4059

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b2ebe00db53787f319568caf2685fb12f8c3f7bc3374026f2f0f72ad12f3c17
MD5 81aa009c45f54bb2c4c293765331e774
BLAKE2b-256 1d49f34b51e7cbdf123d7bb97c57a5cc95ee82e8663fc7af9931964fef00a3ef

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1cadce189177956fa92f153d26a598e0f145ff2cc80e85f106fb24aad9e8d6a
MD5 2b50fac0d47d2b077c634b4b199d852d
BLAKE2b-256 97396236b46e8c9f8f92c1a68524260f4defe048932d1058679d1a6a13dcad90

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 05e999d0deb97840fcc2dcbde04d7118aaa2c8bd2210b34f45a7d1c5329ca5af
MD5 ce31a9ac0ec245f7d898371ae320b01a
BLAKE2b-256 94ecd223349072ff9e53f8be64dc7b4560e7d34d1cdfe9ca65137da9449c79c3

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 921d9b7962b357f92110cf39b8400e6afa1f0157a177d9829ea33628468cbae4
MD5 61a8488ee95d32e2311f0e927277fe0a
BLAKE2b-256 16f31c54487ae4c8775c0ae9c2c47d1eaa417adcd939d521fd4b18ec05c3e934

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f14f5cb1b897093dde3c0837dfcea34d58938b531452582e04ca3079037181e
MD5 2df9879fcb36eb7c2b9a14e54e9d7264
BLAKE2b-256 ede2085fd65f0cfd19e88e61c7e08f3919764d6b985152bfa08de93c338a8199

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9ff17a87bb7e945621199944dadf09fe5f07adf0db403186a309cd97b8611858
MD5 d71a27283732707c260d0ca0b4424bcb
BLAKE2b-256 69c74c94136484ac8aaffc1e5867fdbf388a560274456039cc67c91d79e23ba1

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e6114954badadb5d959a11fd6876ea9ccf7debd3e78286560d66e958b342f8ac
MD5 40eb0ecfc20b5a2e02471afc2a1b522c
BLAKE2b-256 f99184acb5b7c92e52f1bff7bd8925a4b6e56fe31e5d0c9d6b402fc6472de1aa

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 837425a94c3b6a6c9b5de20905da0b429625b4ff5e58177ff1843f2bf54449d3
MD5 7ca4d97d503b21b7fdc2ea52add9acd2
BLAKE2b-256 ff7fa3a0f0bce904aeab2b9ef33936ca7486407433a9ac0c362d1ced2d1de127

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d9abc457eb5edbec38ba9cf23073a33df9bacb5a01946dbee771bf796805fc57
MD5 c4257228a537518d674e5a23027b41dd
BLAKE2b-256 5cb63412b8b9864fcab3c7fa32514ddb0912a15510c44f5996b3ada33f92d757

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0878a13182b394e58fe54130165e1a10865a5613003f1ff7642dcfdb6538ba7
MD5 b166b6898d0a78049c04d9f7dc0a8cd8
BLAKE2b-256 469929d2ea3e252a5f5977d674b878adb03f243d52c9a0c26e4bed8bbb91ccc9

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9a89663f117d4f3d7dd60c859444ff3441e81a125985179ef112e9f373c57a6
MD5 e005e329f3916655d4ea0f6311692a39
BLAKE2b-256 c3e42cdeb0bbef263c89e5404ceb32d63cd0b3c3dc8f264689ac0838e62f1b6f

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7eb8ec42c613fb31cbee035905f970b2bcad9820f7101fa493c67efaedcd2d66
MD5 5830e995f33d96e3f532306cd421fde5
BLAKE2b-256 9083896d14a5ab3b0610d30c7ec29a7652fe02cd9be98dd7ba7335be1d3ea950

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cca9aaac5641a1b36c4810d1649ce6acca62ded9b4097ab36d3ba3af07adc6a
MD5 764b582dae1d6a7c44f574c73495d867
BLAKE2b-256 9949119fd7518c6f2e70dc82ee748ac7087de6702615d723d097fad88e9b7abd

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f3bd12b8931929d12a53ce98e3395df91c7de1ca94d2e05f98415d469d36b08d
MD5 b690b01d41685b84c3aa1e62c78b7741
BLAKE2b-256 40c49a40dd945a8190e34c792b532789a61ff28267b286f59e2162d00c6e98aa

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a90fffad772230972aaebb6c56bef031e5d202f1423b5522f073896730370628
MD5 77f2a7972e373d9617d6b38a95a21fbe
BLAKE2b-256 f14b9c5d203f0337cd681ac54051486e9274b4fd222fb17004e899d460eb4482

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bd9f50a8eaa8746e315de20250e659360d8410a48a0d482698533d1dee43b53
MD5 556ab1f0c4c3ff6c10f3345829c47ce5
BLAKE2b-256 21d0e9653a46d15a8e864aca5fe5d4eae299454ee8e9c3a8c22629326fdc402e

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7e9c8d2492fcbf4891a717aeb0d8cdf4a2c54c866fb722a531a41111c62865c2
MD5 0c2721081150d3e7ddfe721dc898f794
BLAKE2b-256 e47ea19901cab40f2913bd0787b360ad8e26fa8b992b96772296d7cfafa7d96e

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 79cd82fa82d4a899f226664fcd3d0b90f8f12a4a3d1d95554c9699c6ec892d5b
MD5 7692fd9ccbd0de0ca4f327448dbd6344
BLAKE2b-256 e84baff4ceea33ae9c24bc577e6e31ddb148b5dbe832c38b6893f357160dc8f5

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a65f8a5bdeb2f4d6453c7cea101314ff3e166c6fc497fa8f31bec69929f1428
MD5 8243f2c53b1d5d052e663bca396659c8
BLAKE2b-256 15aa65ad0ba5846e168268b6f432cdc8d4b0a6790611fdbaac9e6e7340d48629

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 7be56353da4ff792ff9fc946d0f17b13e1073ed0f05cbb28a7af755c47cc1c8c
MD5 6c96c60a1bc8d1c8f7e3b1734bfc9b18
BLAKE2b-256 6b7bb861f0bb8ddf8980ff4037b56da4a54e0c50b65975b3a3be5370c507f3cd

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 dec86d9d991a12cb71e59fb84a9eaa3804a4cc29f21d837f35b8c98d5db566a6
MD5 f811a528a09463b8c0031d6dd1356cd3
BLAKE2b-256 3ea4912e6ab2b3e22fc425bc52d69672cdc31993c2ad0d1eedfad64d88d37aaa

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d073f72a361ff56cf293bb1bee0681a67071da1e0a8eede573d6e734594c6ed6
MD5 33c2fd6987821f891ed861f115566cf0
BLAKE2b-256 18bc962220634c0288e3a1ae17a286b9c29ad036276f7bbfa186fe3a1e6571be

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 53187e634178b042657c07a2ebf22fe0724a66af647c433bbb2eb794bbec0667
MD5 94d012a58c3826d4799dcb49382896a3
BLAKE2b-256 3825eed5cc882944f260233909efa537f5aa17cee43ac76171a413b07e86bebc

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2087141b460601d2d4108c883c367937f010c25cf3ff8f49c782701046b5f42
MD5 3abebecb7f7de6c2a3ec5fc8e17d86c3
BLAKE2b-256 8cdbf6f36b84e5674e9a798eb935971ba030e71a1897d2d52f63ae0dbc6439c8

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72bd918051aaeac67510e33ec3f0e96b4035a67dfa21f309996e1b5e2616a24b
MD5 99544fedc9d9dcae0d0fff578172316a
BLAKE2b-256 eade894765b27549e8490880862b5bd7ae181a9be9e6167a3a2e69a75182eccd

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 047bcd86434c46fbd43cdccb201b530017a407d27ae98c4498377af4006d68b5
MD5 f65519e5d0ac5d5f600638d0c8da72c4
BLAKE2b-256 27c59bf056ac72f88f2fbf58ae64eef8b6006000d1fe87cde5a631a4f714c51f

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54e20ccc303bcedc1a69f8ab362cd98ce3e1b6ab01f65a29e54f521d02c19c8e
MD5 c0f73a4c7a88188ce29a22cb62dc6d29
BLAKE2b-256 8017bd4d590a4810e20fc344f83b51153315f042f7b4e4fd65d14ae3cd76740b

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc2f0274200bec57869ca6a5a7645867bbc19b8682bc4a6f5f0389c72b37e40b
MD5 806f8434e9d49d6f5c25e8029f7d013a
BLAKE2b-256 544d801810e8a2622438c151ddae15d3df588f5238f54ab113dfefb5b6a6bc71

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbaedfc1dc5d3a4342572c200d62650429f884c42a212871bceb5733a1aac7b0
MD5 23d4b74422de0f8ea740a8629a78297c
BLAKE2b-256 dd8a75229d5058aafdf0c5842c8b47d56d211b4161e589de51b639ec5f6d39f0

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e0cf3ed5e42ee97baea39f25ba709ebb240cf64544e3343e92c11b583b1c999
MD5 069a90cf99c776063ed038d4a620810b
BLAKE2b-256 226f4be3a6fb25c9626ab185bf264ec94d20ab0d74d0481c0e6d897dfe1245a4

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 46b12c98b1cdfb7aa43731d1fa5d60cb17c8fa14370670e70e6e33cd86466686
MD5 e1b18802d54f048457da6cd1f0326138
BLAKE2b-256 e7f7eaa1a175aa258c030dc16271b1900a7cfab793d9df0d5e8fc177284ca5b9

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 37.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a695f90e523caabf0e579ea4c47481cd2fd93f4e673c7383f48ff1152284de61
MD5 6f8de1a8f2d406b707402c6b0fa5127c
BLAKE2b-256 72b80f5c74a319ccc9b8caefcd7cfdb085ccef5cf29e140a5f8f8fb846eb28ae

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8807b8e7e84c13a2abeb7da645b8bf87090d7eab676548ae11cb46ab2933eec3
MD5 4d8209526582a3940224ef45e92f7782
BLAKE2b-256 b8e38c174305c4d6cc9167c841dd0ae8cb2291885975dda5462d4968fd563e10

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 86d490b407b5cd10f9f9c154a069bb55531c10c0fccaf42c85a6c2a06a796df6
MD5 ee8536e3d0c40fd68d1b7a9461579bb6
BLAKE2b-256 297e0575789b5129613823af4ce6518c53a3b6041bfe4b3189914fdd1ca1e47c

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5f530cf9bfe5a310203293369f3d160567fb8082d7736b2459ace68db9d14c60
MD5 ed8abbf5e64f99c9d5a68be393cff72b
BLAKE2b-256 eb7d319a63516293fb9693484e73ff8ce5258d9fb1facf533edeec4ead1e641a

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c2e17a40082d9a787cb8ffb72d32c9ae0f957c9cf56e4f07c95c594eb912fdb9
MD5 0d2417a1855e6a3aec805604a08b4358
BLAKE2b-256 3901ca1d6539a4b512397be880808f6ac5a453e1a7feb0e2d6f0a7472882e7de

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 be0cf10e88bc57aaa96cac1e10e130780b976d03679d030720052fe466cde107
MD5 711b488de712b61db9bfdbce7fee5f99
BLAKE2b-256 1a0c5b6f7abfcc16c71cb98f5e1f3dddf0f58366edbe00d144a6f54ae5e8f7f1

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d653c6d51ac8e80c67fa565d4fefbec53df5c0fb5f966f831b69169b95d98d20
MD5 38f7d92857ca99f441aca2098a5b7b27
BLAKE2b-256 1d9c387facab72f0288fd419737ed0e791e349b4affc833f661449ad81322da6

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59a408097f0b2e8dffc098ac609ef53afe9b8b75f807ac2d58c79833f9f61222
MD5 39c033d58c7be18ec476a9f4a74dda87
BLAKE2b-256 284cdf46f34c2d42a023f004d6c4603f58664e0d43d13b10be3b4abfe9d54076

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 084e70d0bd6199e5084d76f82b0925e4610bda7ace9da5b52e3501a166ab6371
MD5 e91be3d81f5c5af8fde10fb40f71bcbc
BLAKE2b-256 6663a035e1fa417aefc18b35ba4ec1e04ad2a1b9067991e9d3965b8c3797b1cb

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6309692f35b6e834d482a5efdc8e87f71a366a56f60afc6df2ed1527d540c7fd
MD5 6af11c4c4f07848dc3132dc9076703b6
BLAKE2b-256 33923358b11bf7e8ad05571724ae976d078f54edd27464dd0a119d3d026d7baf

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72c3ddbfd0f86208c3bd055de9cdd2dd59713bd8a0805e8f1c2f1783b7519297
MD5 d21340b2b922a43440c7fa7489c9d2db
BLAKE2b-256 5cddf429512c08d06cc741ec3d69504844a74fa164b1afb0af0c24f5ee89f076

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19dd061ff04efe5d2aa8e05d04f528c07dfb73a853b30efcddb7f9f00431bd04
MD5 155e97929c06f180634379db40a29855
BLAKE2b-256 223f13190ad7810ad213bd57e6a0630eaddc43e6625aceb7fe1325d64030e959

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 42.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e4e1fa5dbf2b62852b55413cfe870f29ab691492c74a0c470f981210ac1bf745
MD5 c9f78dc4c39f4c5ed07008f1135901d9
BLAKE2b-256 f6b94c25dfc0d8c9182b09861add1f91ae842ddec117fa07e8e18f4e27b24ff7

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pybase64-1.2.3-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 39.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 589462362bac25dcbf71706eaad632d700a5d7932c4e96cba590dd5ed9770386
MD5 90578941480d72bbe2195f553561b471
BLAKE2b-256 9892fecbd23e75e6a1fa97a5b17d6cf03b3d05eeddf74d36271a2126285674d0

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82e0149cb7476453d4d1f44c88604d0adfa917736c52cf50b81fcc78e72b9772
MD5 21ed3fc94cca3dcc1644dbda59e16e4e
BLAKE2b-256 1e43d6e243bd37c733ddab0bed4b83a98f2a0a550defca1a60f82bf73106f34a

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 43d8ba72f6e33544a32186393b0b1b4bd66fe0919772e12264b2dfee1f727e83
MD5 2e9162731c0ae028006bba847f32cc7c
BLAKE2b-256 49fad4e10613d0b50b179d39edefa1a1b2f35e200ec352443db75ba311e7c449

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b868d016be460682be5b0d8679f568b5a2ebc9a8c5c2c9539e2300891ea2fb67
MD5 2504417163ad69f78e71e0083891a10f
BLAKE2b-256 056d552c30ad89b0c981fbcf4400ef26968922f668eb70e97570bd0d4d151a7b

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1a653fe41ba640feef313c6f42f7a1dc1693800d78feec7f6b13d3d5b1423cb6
MD5 af1265556fe3878587f65f3874aa6c98
BLAKE2b-256 68f6e55354071bed136d1240038a29405dcf378d9b8f353761742b2327743647

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 98bbf0df67649e14282c876c5836be228b09750d21cfb79ac0cd101e902c7de1
MD5 d6d11014a9b14d18459cc75b4c9e8eb7
BLAKE2b-256 ae54ea2b224bd515c38db5a74d054f82e5b5e97338743893e46820513629aa72

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef03843028b5c9382465d8d46f58b6598d3e1a55b52bd44138b930e0f34619a6
MD5 49222257ff7e7b586ff89f2abfe29019
BLAKE2b-256 54a1854ba416e5abd10418d8bc3dd7f702b52034ccb74eaa52bbb38ceeb9483f

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 326b33d2ec976b005466d0306fd9ba7ff403c1a1767816845b5d90d9bedb75d1
MD5 de2ea68dfe19a6fd93587c388fbaf26e
BLAKE2b-256 1c771e258ad905fbff5c93fb8a719b62b550fb3ce6187806861f0fe2a11fde53

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94e48cc223814b9fd7e65dfe8acddc1030865878cb18053e0fb17786bc1cdd5b
MD5 c066e0d0cd9a2d60876a1e99b7c33899
BLAKE2b-256 7c4d3f9e29e81d7d9719944235b8f957fcfa927fb4c0ba0810d5ecb1c5a9902c

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe7ea731d9abd2bd39f55c9569368f7f419cb60200bebc8aaac724b3b19273fd
MD5 c53c36edc2a721a3dba2bb2926eb1361
BLAKE2b-256 c52b7f7b7e7724bb51cfbc61ef92f1bbd1d8bf64e14062131fcf01f09039844f

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 64821cfafd06cfc77543ec69ccecf84a8f9c40c7f0101a324b7b0700828ca7ff
MD5 08b4821585ed62ff74079b3718f7ace5
BLAKE2b-256 e9eabe0ddd44540eb8a50ca5e60cda07856de2f0efaada4cf498ea122a4492cc

See more details on using hashes here.

File details

Details for the file pybase64-1.2.3-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.2.3-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c0052d2ce1acd33bbc05b1e7926c13906a50fbb1daafcb47f6855917f7da847
MD5 838b02333456cde1881b6a20ae285f55
BLAKE2b-256 e69af6df4dd354f153a080eedd46a8d56134c38dc1340905328f156c86c6e7b1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page