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.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.1.4.tar.gz (110.0 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.1.4-pp37-pypy37_pp73-win32.whl (39.2 kB view details)

Uploaded PyPyWindows x86

pybase64-1.1.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl (41.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

pybase64-1.1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (37.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase64-1.1.4-pp36-pypy36_pp73-win32.whl (39.2 kB view details)

Uploaded PyPyWindows x86

pybase64-1.1.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl (41.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

pybase64-1.1.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (37.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase64-1.1.4-cp39-cp39-win_amd64.whl (42.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pybase64-1.1.4-cp39-cp39-win32.whl (39.2 kB view details)

Uploaded CPython 3.9Windows x86

pybase64-1.1.4-cp39-cp39-manylinux2014_x86_64.whl (170.6 kB view details)

Uploaded CPython 3.9

pybase64-1.1.4-cp39-cp39-manylinux2014_s390x.whl (67.8 kB view details)

Uploaded CPython 3.9

pybase64-1.1.4-cp39-cp39-manylinux2014_ppc64le.whl (70.7 kB view details)

Uploaded CPython 3.9

pybase64-1.1.4-cp39-cp39-manylinux2014_i686.whl (157.9 kB view details)

Uploaded CPython 3.9

pybase64-1.1.4-cp39-cp39-manylinux2014_aarch64.whl (87.0 kB view details)

Uploaded CPython 3.9

pybase64-1.1.4-cp39-cp39-manylinux1_x86_64.whl (170.6 kB view details)

Uploaded CPython 3.9

pybase64-1.1.4-cp39-cp39-manylinux1_i686.whl (157.9 kB view details)

Uploaded CPython 3.9

pybase64-1.1.4-cp39-cp39-macosx_11_0_arm64.whl (35.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pybase64-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl (39.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pybase64-1.1.4-cp38-cp38-win_amd64.whl (42.0 kB view details)

Uploaded CPython 3.8Windows x86-64

pybase64-1.1.4-cp38-cp38-win32.whl (39.2 kB view details)

Uploaded CPython 3.8Windows x86

pybase64-1.1.4-cp38-cp38-manylinux2014_x86_64.whl (171.1 kB view details)

Uploaded CPython 3.8

pybase64-1.1.4-cp38-cp38-manylinux2014_s390x.whl (68.3 kB view details)

Uploaded CPython 3.8

pybase64-1.1.4-cp38-cp38-manylinux2014_ppc64le.whl (71.4 kB view details)

Uploaded CPython 3.8

pybase64-1.1.4-cp38-cp38-manylinux2014_i686.whl (158.4 kB view details)

Uploaded CPython 3.8

pybase64-1.1.4-cp38-cp38-manylinux2014_aarch64.whl (87.5 kB view details)

Uploaded CPython 3.8

pybase64-1.1.4-cp38-cp38-manylinux1_x86_64.whl (171.1 kB view details)

Uploaded CPython 3.8

pybase64-1.1.4-cp38-cp38-manylinux1_i686.whl (158.4 kB view details)

Uploaded CPython 3.8

pybase64-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl (39.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pybase64-1.1.4-cp37-cp37m-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

pybase64-1.1.4-cp37-cp37m-win32.whl (39.1 kB view details)

Uploaded CPython 3.7mWindows x86

pybase64-1.1.4-cp37-cp37m-manylinux2014_x86_64.whl (170.9 kB view details)

Uploaded CPython 3.7m

pybase64-1.1.4-cp37-cp37m-manylinux2014_s390x.whl (68.3 kB view details)

Uploaded CPython 3.7m

pybase64-1.1.4-cp37-cp37m-manylinux2014_ppc64le.whl (71.2 kB view details)

Uploaded CPython 3.7m

pybase64-1.1.4-cp37-cp37m-manylinux2014_i686.whl (158.2 kB view details)

Uploaded CPython 3.7m

pybase64-1.1.4-cp37-cp37m-manylinux2014_aarch64.whl (87.6 kB view details)

Uploaded CPython 3.7m

pybase64-1.1.4-cp37-cp37m-manylinux1_x86_64.whl (170.9 kB view details)

Uploaded CPython 3.7m

pybase64-1.1.4-cp37-cp37m-manylinux1_i686.whl (158.2 kB view details)

Uploaded CPython 3.7m

pybase64-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl (38.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pybase64-1.1.4-cp36-cp36m-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

pybase64-1.1.4-cp36-cp36m-win32.whl (39.1 kB view details)

Uploaded CPython 3.6mWindows x86

pybase64-1.1.4-cp36-cp36m-manylinux2014_x86_64.whl (170.1 kB view details)

Uploaded CPython 3.6m

pybase64-1.1.4-cp36-cp36m-manylinux2014_s390x.whl (67.4 kB view details)

Uploaded CPython 3.6m

pybase64-1.1.4-cp36-cp36m-manylinux2014_ppc64le.whl (70.3 kB view details)

Uploaded CPython 3.6m

pybase64-1.1.4-cp36-cp36m-manylinux2014_i686.whl (157.4 kB view details)

Uploaded CPython 3.6m

pybase64-1.1.4-cp36-cp36m-manylinux2014_aarch64.whl (86.7 kB view details)

Uploaded CPython 3.6m

pybase64-1.1.4-cp36-cp36m-manylinux1_x86_64.whl (170.1 kB view details)

Uploaded CPython 3.6m

pybase64-1.1.4-cp36-cp36m-manylinux1_i686.whl (157.4 kB view details)

Uploaded CPython 3.6m

pybase64-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl (38.9 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

pybase64-1.1.4-cp35-cp35m-win_amd64.whl (41.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

pybase64-1.1.4-cp35-cp35m-win32.whl (39.1 kB view details)

Uploaded CPython 3.5mWindows x86

pybase64-1.1.4-cp35-cp35m-manylinux2014_x86_64.whl (169.9 kB view details)

Uploaded CPython 3.5m

pybase64-1.1.4-cp35-cp35m-manylinux2014_s390x.whl (67.1 kB view details)

Uploaded CPython 3.5m

pybase64-1.1.4-cp35-cp35m-manylinux2014_ppc64le.whl (70.1 kB view details)

Uploaded CPython 3.5m

pybase64-1.1.4-cp35-cp35m-manylinux2014_i686.whl (157.2 kB view details)

Uploaded CPython 3.5m

pybase64-1.1.4-cp35-cp35m-manylinux2014_aarch64.whl (86.5 kB view details)

Uploaded CPython 3.5m

pybase64-1.1.4-cp35-cp35m-manylinux1_x86_64.whl (169.9 kB view details)

Uploaded CPython 3.5m

pybase64-1.1.4-cp35-cp35m-manylinux1_i686.whl (157.2 kB view details)

Uploaded CPython 3.5m

pybase64-1.1.4-cp35-cp35m-macosx_10_9_x86_64.whl (38.9 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pybase64-1.1.4.tar.gz
  • Upload date:
  • Size: 110.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4.tar.gz
Algorithm Hash digest
SHA256 f0e0db1dee2a2cbf35e6710ea138594ecc1e0f491ff9103f136de83d8f159315
MD5 ea830a33e5c3a4719fee16bdc4abfac0
BLAKE2b-256 6e83f5d12dde386d18b77cd181f762e586b70b6b6b6acba6ba45a32cfbb532fc

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: pybase64-1.1.4-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 9012d308af0ec2a27023b8c1237564edafe8cae05c29b85cc9bbe4871f1346c9
MD5 5bf47ed55d03912d9e3047bc542a1e75
BLAKE2b-256 43d9354dae5e72128e8165016c5baf065f12b8f71137ae8401d8213f9200fbaa

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b5f943f049ff82a0fc99d2b911e1b8e710d54516993855769cb17c87b354f663
MD5 30890f0b4f0b5eb043637e321d42ccd8
BLAKE2b-256 96620acd994b834d861bcf4e2484d3a6dd2d28c425b70bb594bf2c44cc7b878b

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 89e8c38706a02c5636caa04f2038e96fc3638502f094363ac2b72def4cb42a8b
MD5 e4fb43faa2ccbd58f7e9e79927cb08c5
BLAKE2b-256 93c89d85ee95d19f7becf52583d2ec05141f9406b16626646270e33fb440e5ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 37.3 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef7dd406f1825038060558ad4765b4e406e43f609052e9f24dbd0a6d74f395ff
MD5 51a1f61637450ef042a662e144d70eeb
BLAKE2b-256 354e835b7df06c8c7751db75a095acd313e6badc7b73871fbbfe4050be0f7a83

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: pybase64-1.1.4-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 be3e45f61ff2bcfdd7d458a6eee9f9653e42b3540ac2ef3fd7a74cee7ea6f3ed
MD5 7312c8df71b997d54fc540f03511d95a
BLAKE2b-256 41ca47292674da9d3b65d98f68b23fa44e1fa720aaa3e3f12ffc9076a6fdeabc

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bd662fa832e337a6ce7681d4d0afd6bef7ecbc5da122fef9b51ba133d28844ff
MD5 07c39472cb80f5702265075dd4be09e4
BLAKE2b-256 7005526d0021839ed7077a2fb0bb60f9b71daf0ab501c057aebf01e43c551a1b

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aa43ff2714080fab65aa9ee6b4ed83f6249f6db4a40f6ffab10a9623729136fb
MD5 f63cabc34a40cc8a8f79ef98ae47b486
BLAKE2b-256 82c96c44d1ded47f26a20544b90f6ad5206faaaaadd9f8039ed948e947308bbb

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 37.3 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 123d1b77d71a07c421a4034f0aae8ec0744aae7aa568ae9bfb48b6c1b0ea2267
MD5 00abca333e91385cf87a380ccd72bb28
BLAKE2b-256 c698c439af11a7ddf3ebe44cc03aa77a1d70fe008b77a277005497c35dc83130

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 42.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c6ef38c107218a260f0d317089170ead8adbf798ef6d971a9459b58377f9740
MD5 5659d05a11e274fe70c248541d2238f9
BLAKE2b-256 34fd3f42180d14e8718c42515608cb8af32c3628b4deaa949878729c39780bb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e454b774e2ac8d80d3ba502f673183f6187ae357ed45699dcb19293aded04c31
MD5 b2b88b39ffb7173339862080c55498db
BLAKE2b-256 893d4279b2d1012b5718d8ef7eabb4b510a5b438290cfa43d81c60539d7de7d8

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 170.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2429aeed8c380e26c619b7b0e21395131fcb32f7701b675a2a946dc5e046b90b
MD5 12293b80a16085493707a6c92a140ec9
BLAKE2b-256 787fdb22cb985cd40b7bdf4e3a0d7b4b7e2f38c2d96e389836cce36365099b31

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp39-cp39-manylinux2014_s390x.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-manylinux2014_s390x.whl
  • Upload date:
  • Size: 67.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5322a40e367fdd27b881b3df186f5aed6b865b7878b0eb0c5c281ae6b5ada760
MD5 b3435ec431e366713685b95d8ae891fb
BLAKE2b-256 b861a62c8935c8b8d509d0d42f18b8e3f02661cdbbf59a30f61261a327118866

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 70.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7133ffdac31d35e4e3113209bfe327f00a4fb8860a824bedc89669c9d589e360
MD5 f07477e853a69948210056229ac98a9a
BLAKE2b-256 6038bb33cc89e6132aad3c6f711ceba73d7514dd016e844ee7e9921c1212c842

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 157.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c502ecb1d0901cf72e3583c010f7a1ab82eec72a9270ea9a4bfe46aeb3f94493
MD5 2ba7e8f6059e0528f26fabcaf7f7e3ca
BLAKE2b-256 5599252a29f0438cad9d5dc004886904c62adbd74b8a6b643b18b2fea5ba79ce

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 87.0 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acde3f0b50aab16a3f7002c1eb8b3dfa677be3417ee86870cd820783bfa92300
MD5 5e16f8f6308d856d969c9e880b00575e
BLAKE2b-256 f14ef060b78a563a6f35d6820949165ddb34ab91adb4f2b0984add1701269797

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 170.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e95734d457198433810078631c72feb1c6387504d4003e4bc93275a6b9cf4e89
MD5 ce7e73090087035706109f21a8184352
BLAKE2b-256 4531e54716a3c5c448b778f3f7ee94b78917f1f8c95830011a8a10fd9ac5d21a

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 157.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3fc9d0886938dae9c2aecfcba3b8e88c48af764db0027e9ad56cf5aaed5471f1
MD5 150ecc4655b5ec393af97c5c5c7e30bb
BLAKE2b-256 7c125322f218d0efcd660e0e2e5bcaed355784cfecc8689b7712f60e09132eec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 35.6 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ec33774e37e22d8d11a1af607210f4209c87cd095dc580d5f8921d35eef6f5d
MD5 e2acc8ff37c28377b396f07d13a4202c
BLAKE2b-256 759bfded47897b762aa7eeaf184a1b178cb891e342518a8580f1d51da561ec44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 39.0 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc02b3284dbb897aa2d4426b116a82b1f7440845fa9074824848f062580cc210
MD5 842077256693a595bf871ae1d6384851
BLAKE2b-256 17566d99e6f1003d0c9bc92f799cc94977ddc05c270185fd311faa6c0f8e3359

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 42.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 67a821a0d2456dcb69f668870c60feb66d838420859833450c49d22455c1c4c4
MD5 be8946248433f4c2c4975c0810516abf
BLAKE2b-256 b8e91eb120c08481285c89462b031b415f66e0010a4670da7b53e3d5603d3906

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 82a439d8253f8e8ed895e479f3c804246f23c8819e7f72892643e1e330d801d6
MD5 511f19bc28dc5e241f93716b07f3f081
BLAKE2b-256 772bec87878cae17da87ed658db737c2278102b9a593c0d2a1548037b60fc573

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 171.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d86a642487a15ed452cc02dce7e5dc26e3036108340be60ab6da85878f3ade06
MD5 a4ece47e24e7a8ed53e985a83f2482bf
BLAKE2b-256 871a7f72ab151dd507a18e789f102140c53d44d14648f15b5fec65bcf807f8ff

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp38-cp38-manylinux2014_s390x.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-manylinux2014_s390x.whl
  • Upload date:
  • Size: 68.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ace93ead82ba4acdf1e6e0bfbc4bf76a55a391a5e7a364ed88c1425679eec82
MD5 468bf67923ee8234c75b936bc6d0aad5
BLAKE2b-256 35d21592f95cdb43bf695c0cbc4f7aabd4a66ef45977e5949e9ff7d27a49732b

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 71.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fc67cc32f25b34a45b8bd9a1ac28247b4e62bc62c2b7f29fb5f98b454badfdf
MD5 e68d33ca81ff4e4dd9fad9b6a01e0a03
BLAKE2b-256 aa1c3a408e1831c63c4213d22429d83fdf9dac9316293ca6025a64c364ff5945

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 158.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ce959367c902197951f85aad37b5f001e3b04aad194473fce1420000a7e251b
MD5 a79b987ea40356d9b9acc99d2b3016d7
BLAKE2b-256 2e3932a1adf311ec61ecfb4c499c228dedd71aea5b6ccc49ef310fead49c368b

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 87.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3887d00f3297c8975e351f6a97d909d2283b51736502cf15b433ce02afeb4bae
MD5 3b2cd40cd7824264f7c99017ab6628b0
BLAKE2b-256 c1d84f1d2343b11ff8209eaa60c05d4b03100d955a91094898a32d879f63c93b

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 171.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c4f6596213c23119522814a5bd37ab4fa69824f4f21421fc088b4c9f8983a82d
MD5 7167e79b62d5f65b892c76632f285edc
BLAKE2b-256 f5da7f1eb9c12645f0844740e4134af480de360fb993927e9b37a66fcffc9836

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 158.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d584dbc86bdde6225f80e1e85a1eaaeb2326a601c0007a8260bb06e6d6edb854
MD5 0bddf46f7f0901d894ec967842d6cdc4
BLAKE2b-256 55dfc488fcb6036a265a76da5383623f6c5c68350a55888590690b86700baa9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 39.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f30fcd3e27e93d6916984a7fba701e8b19ee753bf2e896070392ee4dea3ad74b
MD5 cefca80691f613f8d6e0845696bee481
BLAKE2b-256 c368a07a17cbfa560c9cd946f1f0729f93a33eb4db209a4d3337bfbd213529e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 59eae6fed2617ad07eeb8dee2a9a1fa9ed2f582d3f0e1bbb225fe93d61887e74
MD5 97c486b35068f97f588232c957c3bcfc
BLAKE2b-256 a604c76cf40de066f69662c712bb7411b8d5bc1768bc7131d070fe4dc496590c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 39.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 09db11b257fc91cc48b61a048a3e7df66b57c6698ef3196752831f8b1f00a450
MD5 b440d66b58cd242a1580c0d1fa2c9eb9
BLAKE2b-256 4ddf50be1432b307abd57c50d88d6b6f89195f78b8bef2974f715d1ca8e2c30e

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 170.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d90a34ad648e84567a6e3d4e7a3ad65944f6f00a769740071459b913f5d78752
MD5 7d8df20953b9dc32bc1f4da8b7e64c67
BLAKE2b-256 719cfc5a2734645f9cdc7c0a549a4ee063cf25c05e728d287508fd14c437ac4e

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 68.3 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f190478a2ca3d6439c26552ac312b221528e276161fb05a580f63458ecd8a0d2
MD5 1a9cf88b0c50df8d4bded10bece0f1c3
BLAKE2b-256 3686a95825165e6185d4f4d113bfd8bc2ec709342f9365b8a7eeccc2f672d0c4

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 71.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 291dd9e77cc18fd1daee51979f99eccc7ca9e00a47602fe6c72038d00c70a943
MD5 8eb4e1f041459e73e67840b01b9f770b
BLAKE2b-256 570066909ee14ec31f3ef95d725d09111aa445e0666bdf1d6a89ce65636e2a41

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 158.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f550a5c3371b7dcf01e907f2cd5eddd8f9e8e1c15234dc0ed4b21f7c3a161c5
MD5 a27250eddfa9ef04ee062b5fec52001b
BLAKE2b-256 f1013fd4f1ba9f00d31020cea4b0f052d078215688152ecb229088b6d53c224b

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 87.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1943fca99e30740c1d5dc1a5a5f127597236bcf9f0f2e22beb0327f5d4c7077
MD5 bf3440e6f52ce724a44a90f527f151d1
BLAKE2b-256 e0ec4086314a4c1d94b64f481bbdc38903703122f9cd31a2d6ca4851d8e58071

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 170.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6b1f954d572071e81591fd092197993178567f46e4e9de1ed3300b8d23601ed7
MD5 cbeb876a698cf919c3c7d592bd5b3411
BLAKE2b-256 cea854631e48cf889e02e03bb748189c57231720b8569b671541a1096b96c344

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 158.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 24d39ac7bfce0a6640a8b3ee919152416023750de58b0b71342ebe1a887ca8ab
MD5 f2284c1c899e0f44a46281c785137d74
BLAKE2b-256 bd7087f88f09d3469306ce3d5de98609b7a9989b683080ae8e64b018ebd11807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55a97450dcdb030dbe824069180dd8b737374db9843ea57e662ca1ed7ac3b87b
MD5 df595b995d0b3b16c31aa71245452c4f
BLAKE2b-256 a71f7fdd033c2ae961741cba79131de4027aaf52733cfb8078785b378946794b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4479c9db63e2bcb89384dda66341a9f8c1bf27907c4b356885186d77a001d8d2
MD5 f66b1603d045794bd33e192f7025994f
BLAKE2b-256 52824a408c73f488bdde79e7f0c1d5baa6feee63351d62adc9d5a295b9bbaab0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 39.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0208fc57920e7806a7dafb80ad2a4ec1836bc7bea67ce5de1c5b88e802fc03e4
MD5 cb484fc265ce242c19522ac9de7786a9
BLAKE2b-256 8b7301fcc3bdffe2fd33b494fa23fdb5d2dc7a0765be866cd40b0c099425bdd5

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 170.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8249ebf2021e96548c19f38173912163e0f84994c5247b108a0c173390ac198
MD5 b55227afdfbe560cb51be6e8a9ba3822
BLAKE2b-256 4713d8363eeb3f8a444a84da51f31bc6c3f67b9549798359b459935b62ad310b

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 67.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40b6e076e893f67160e63ed2b51eff1366a2c215b6dbb2337844cb219865cc66
MD5 703fe1795cc450fac80749674657b4d3
BLAKE2b-256 ba95476505c6899a9818014cbca01a2c2d9b00630cef3f3f9e9d27248b1812b5

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 70.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 785f027a0655f10b76d599558b168a57486ae7e55d293093f9a94c9106b37b39
MD5 3b30aee840972bed5380c58a938888d6
BLAKE2b-256 8df61d9dc0aad11377f86014b17ec78ae2a801f18d4864f1e5d21a427c891997

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 157.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe850e6637e0a322c8c82a0dab67a88f7246701c641b5eb3668796002fc94b75
MD5 b5aa7e9e709f7a5ef95732b63f9d06e2
BLAKE2b-256 309506b33c17b16c537d506417fc8270718d1107e072825f7cfb851ad3006ad4

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 86.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f66403ac045c4becd3d25af365af2953bc14ec9de5433dd2988d38b91c458d0
MD5 043dc9637d18ada401e7c10be0ff68c5
BLAKE2b-256 64caad7d1d2fff7f90a9d6253aea262995cdc7024161455a83b812555d650e4c

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 170.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 903456b8f3a46241122b3826e67a2b7b99d726a24929586b1a10e9a035fb5253
MD5 9cf512b7efa402f78c36e4fc7fecd5d6
BLAKE2b-256 b711caa250a95416858721a2f31df0eef7aa58682ce6e7860d1941afd1fbdb3a

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 157.4 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e669a998a83a2332fa2943a2f468d711a4465fc32b66dd6c18cbf8808e3e2d0
MD5 faa9b51d4c5ab4bab9a62e572de72839
BLAKE2b-256 6ab6dae586be5b894631d2136d7b012d2877eba0eb88d19d4317a54867eef700

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pybase64-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca14a75c73db7379b862f19ce4603160caf0f76ccd5c37714214a646e5bb992a
MD5 d15029ff49cafcbdd6ee3601df74c7eb
BLAKE2b-256 881bb2b1ec919b8a28cad4009f2e336df4170a355e9d3524b8ccf96767b6a877

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 41.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 586e52c9812d966cfcbae2cbcd666d7c9940a3dfa29084ad65a4c8dfb91d60df
MD5 9d6a13d39f9b8ba845bd473267a027c2
BLAKE2b-256 fe6fbd9e4a38675f88a5025aad4df74f80635a05e925d1f7260137bd1d38e6a6

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 39.1 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ed71a6aaefca1d5c565051e554c8f859809f0d5e4d298e2a96276df04dd872c6
MD5 84d10d9b70539cc0c5263385ecfe3579
BLAKE2b-256 74e143534e73360dbeb862527f115451b93f93ef4fd39c00ac4f2fcd35fd953b

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 169.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de49eccde5efb30182d7b26208d640fa4f6dd35f0300ce4f984810cfe3b9fcee
MD5 b921dfbaaebd6d1aecf9290799ac1493
BLAKE2b-256 7127f9f38fab1b36c0e791f91d1b5f8e0241cfaa6a20bec593fe10d227a3e7a7

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-manylinux2014_s390x.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-manylinux2014_s390x.whl
  • Upload date:
  • Size: 67.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b905337375cf8885f1a8aad6a550f2aacc94237a78f897e54573d839b1c6f3b2
MD5 b55105ec9b4bcd5f6514e0c1b53b4c3f
BLAKE2b-256 1e30ba189ff735d94399d4623159a6363ba22ae69c78e1d06f880cbf5642317b

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 70.1 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d75ed9c8426ca2c36f9879a66e13667e32c5520c29b97cd05ea428c7c8b2a0ea
MD5 0d636196de3dde7918ea62093eb5aa30
BLAKE2b-256 3b430e414b1872a5dea19ace04498edb37b3d0d27f6384a6441abce1c3204ae0

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 157.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef70bfa9c80c3bf47e278d4d55f8702bb4f32ef230d9189d310a8795d7dd0025
MD5 2575677a2ff6b496eda508512f437c98
BLAKE2b-256 878773c7a44faf77000c215bcd9007d875a24e75383cd895393f00efe8849451

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 86.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99c52e88f2f3265213fd8697a7e5401955127a0e3ffae4ff9e44045bca4ac305
MD5 5437fb245884418b6522d693c33263ab
BLAKE2b-256 02cd8107287c0f4bc81e431392d909bcdcf57b4107f305a99b6488385723b670

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 169.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 daef675aa56054668b47c7e6b470ea53d94f1475e7424e33d85e6b09b5dda2f6
MD5 0a4300298db376959ff849c860419809
BLAKE2b-256 7743864ac6a60fc184fcf0d609fb963908fd7eebb13d8b324c439827aad1189e

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 157.2 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f25dcdef7713ca9d59e40f8506ef6a6687058c891528bbbf24d105b09058bc24
MD5 003eb797cb9c76ed7067aeb70f2a2a26
BLAKE2b-256 9c6682c900dec40c8a8a9f1226c1ee19885210c60e39211514b64a2386ef2d02

See more details on using hashes here.

File details

Details for the file pybase64-1.1.4-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pybase64-1.1.4-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.7

File hashes

Hashes for pybase64-1.1.4-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00fb272b4ebbf7f57a03d05fccd87f9622b21c69d2f8a5eed7ac82fa7f4495e1
MD5 710ad8231b7460cbf4216e9de9fdfe41
BLAKE2b-256 a36d2cbd7df6ec850d0a8f7a43c8c0390824435c92905573d0bd15b15d4d6a34

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