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.4.1

  • Publish PyPy 3.11 wheels

  • Publish armv7l wheels

1.4.0

  • Publish python 3.13 wheels

  • Add support for free-threaded builds

  • Add MSYS2 support for C-extension

  • Better logging on base64 build failure when C-extension build is optional

  • Drop python 3.6 & 3.7 support

1.3.2

  • Update base64 library

  • PyPy: fix wrong outcome with non C-contiguous buffer

1.3.1

  • Add missing py.typed marker

1.3.0

  • Update base64 library

  • Add AVX512-VBMI implementation

  • Rework extension build to remove adherence on distutils

  • Publish python 3.12 wheels

  • Documentation now uses furo theme

1.2.3

  • Update base64 library

  • Publish python 3.11 wheels

1.2.2

  • Update base64 library

  • Fix C extension build on musl distros

  • Publish musllinux wheels

1.2.1

  • Publish PyPy 3.8 (pypy38_pp73) wheels

1.2.0

  • Release the GIL

  • Publish CPython 3.10 wheels

  • Drop python 3.5 support

1.1.4

  • Add macOS arm64 wheel

1.1.3

  • GitHub Actions: fix build on tag

1.1.2

  • Add PyPy wheels

  • Add aarch64, ppc64le & s390x manylinux wheels

1.1.1

  • Move CI from TravisCI/AppVeyor to GitHub Actions

  • Fix publication of Linux/macOS wheels

1.1.0

  • Add b64encode_as_string, same as b64encode but returns a str object instead of a bytes object

  • Add b64decode_as_bytearray, same as b64decode but returns a bytarray object instead of a bytes object

  • Speed-Up decoding from UCS1 strings

1.0.2

  • Update base64 library

  • Publish python 3.9 wheels

1.0.1

  • Publish python 3.8 wheels

1.0.0

  • Drop python 3.4 support

  • Drop python 2.7 support

0.5.0

  • Publish python 3.7 wheels

  • Drop python 3.3 support

0.4.0

  • Speed-up decoding when validate==False

0.3.1

  • Fix deployment issues

0.3.0

  • Add encodebytes function

0.2.1

  • Fixed invalid results on Windows

0.2.0

  • Added documentation

  • Added subcommands to the main script:

    • help

    • version

    • encode

    • decode

    • benchmark

0.1.2

  • Updated base64 native library

0.1.1

  • Fixed deployment issues

0.1.0

  • First public release

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.4.1.tar.gz (136.8 kB view details)

Uploaded Source

Built Distributions

pybase64-1.4.1-pp311-pypy311_pp73-win_amd64.whl (36.8 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (35.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (41.1 kB view details)

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

pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (41.0 kB view details)

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

pybase64-1.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybase64-1.4.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (38.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pybase64-1.4.1-pp310-pypy310_pp73-win_amd64.whl (36.8 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (35.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (41.1 kB view details)

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

pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (41.0 kB view details)

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

pybase64-1.4.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybase64-1.4.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (38.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pybase64-1.4.1-pp39-pypy39_pp73-win_amd64.whl (36.8 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (35.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.4.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (41.1 kB view details)

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

pybase64-1.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (41.0 kB view details)

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

pybase64-1.4.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybase64-1.4.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (38.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pybase64-1.4.1-pp38-pypy38_pp73-win_amd64.whl (36.7 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (35.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.4.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (41.0 kB view details)

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

pybase64-1.4.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (40.9 kB view details)

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

pybase64-1.4.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybase64-1.4.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (37.7 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase64-1.4.1-cp313-cp313t-win_arm64.whl (30.0 kB view details)

Uploaded CPython 3.13tWindows ARM64

pybase64-1.4.1-cp313-cp313t-win_amd64.whl (36.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

pybase64-1.4.1-cp313-cp313t-win32.whl (34.5 kB view details)

Uploaded CPython 3.13tWindows x86

pybase64-1.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl (74.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pybase64-1.4.1-cp313-cp313t-musllinux_1_2_s390x.whl (60.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

pybase64-1.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl (62.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

pybase64-1.4.1-cp313-cp313t-musllinux_1_2_i686.whl (72.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pybase64-1.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl (56.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pybase64-1.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl (63.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pybase64-1.4.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (64.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pybase64-1.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (63.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pybase64-1.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (60.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pybase64-1.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (65.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pybase64-1.4.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (75.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

pybase64-1.4.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (72.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pybase64-1.4.1-cp313-cp313t-macosx_11_0_arm64.whl (31.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

pybase64-1.4.1-cp313-cp313t-macosx_10_13_x86_64.whl (38.5 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

pybase64-1.4.1-cp313-cp313-win_arm64.whl (29.7 kB view details)

Uploaded CPython 3.13Windows ARM64

pybase64-1.4.1-cp313-cp313-win_amd64.whl (36.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pybase64-1.4.1-cp313-cp313-win32.whl (34.3 kB view details)

Uploaded CPython 3.13Windows x86

pybase64-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (70.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pybase64-1.4.1-cp313-cp313-musllinux_1_2_s390x.whl (56.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

pybase64-1.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl (57.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

pybase64-1.4.1-cp313-cp313-musllinux_1_2_i686.whl (68.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pybase64-1.4.1-cp313-cp313-musllinux_1_2_armv7l.whl (52.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pybase64-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (58.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybase64-1.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (60.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pybase64-1.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (59.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pybase64-1.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (56.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (59.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pybase64-1.4.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (71.4 kB view details)

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

pybase64-1.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (68.4 kB view details)

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

pybase64-1.4.1-cp313-cp313-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pybase64-1.4.1-cp313-cp313-macosx_10_13_x86_64.whl (38.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pybase64-1.4.1-cp312-cp312-win_arm64.whl (29.7 kB view details)

Uploaded CPython 3.12Windows ARM64

pybase64-1.4.1-cp312-cp312-win_amd64.whl (36.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pybase64-1.4.1-cp312-cp312-win32.whl (34.3 kB view details)

Uploaded CPython 3.12Windows x86

pybase64-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (70.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pybase64-1.4.1-cp312-cp312-musllinux_1_2_s390x.whl (56.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

pybase64-1.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl (57.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

pybase64-1.4.1-cp312-cp312-musllinux_1_2_i686.whl (68.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pybase64-1.4.1-cp312-cp312-musllinux_1_2_armv7l.whl (52.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pybase64-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (58.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybase64-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (60.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pybase64-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (59.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pybase64-1.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (56.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (59.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pybase64-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (71.4 kB view details)

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

pybase64-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (68.4 kB view details)

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

pybase64-1.4.1-cp312-cp312-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pybase64-1.4.1-cp312-cp312-macosx_10_13_x86_64.whl (38.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pybase64-1.4.1-cp311-cp311-win_arm64.whl (29.6 kB view details)

Uploaded CPython 3.11Windows ARM64

pybase64-1.4.1-cp311-cp311-win_amd64.whl (36.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pybase64-1.4.1-cp311-cp311-win32.whl (34.2 kB view details)

Uploaded CPython 3.11Windows x86

pybase64-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (70.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pybase64-1.4.1-cp311-cp311-musllinux_1_2_s390x.whl (56.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

pybase64-1.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl (57.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

pybase64-1.4.1-cp311-cp311-musllinux_1_2_i686.whl (68.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pybase64-1.4.1-cp311-cp311-musllinux_1_2_armv7l.whl (52.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pybase64-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (58.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybase64-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (59.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pybase64-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (59.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pybase64-1.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (56.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (59.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pybase64-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (71.2 kB view details)

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

pybase64-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (68.4 kB view details)

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

pybase64-1.4.1-cp311-cp311-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pybase64-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl (38.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pybase64-1.4.1-cp310-cp310-win_arm64.whl (29.6 kB view details)

Uploaded CPython 3.10Windows ARM64

pybase64-1.4.1-cp310-cp310-win_amd64.whl (36.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pybase64-1.4.1-cp310-cp310-win32.whl (34.2 kB view details)

Uploaded CPython 3.10Windows x86

pybase64-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (68.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pybase64-1.4.1-cp310-cp310-musllinux_1_2_s390x.whl (53.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

pybase64-1.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl (55.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

pybase64-1.4.1-cp310-cp310-musllinux_1_2_i686.whl (66.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pybase64-1.4.1-cp310-cp310-musllinux_1_2_armv7l.whl (49.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pybase64-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (56.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybase64-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (57.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pybase64-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (57.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pybase64-1.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (54.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (57.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pybase64-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (68.7 kB view details)

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

pybase64-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (66.1 kB view details)

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

pybase64-1.4.1-cp310-cp310-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pybase64-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl (38.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pybase64-1.4.1-cp39-cp39-win_arm64.whl (29.6 kB view details)

Uploaded CPython 3.9Windows ARM64

pybase64-1.4.1-cp39-cp39-win_amd64.whl (36.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pybase64-1.4.1-cp39-cp39-win32.whl (34.2 kB view details)

Uploaded CPython 3.9Windows x86

pybase64-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (68.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pybase64-1.4.1-cp39-cp39-musllinux_1_2_s390x.whl (53.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

pybase64-1.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl (55.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

pybase64-1.4.1-cp39-cp39-musllinux_1_2_i686.whl (66.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pybase64-1.4.1-cp39-cp39-musllinux_1_2_armv7l.whl (49.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pybase64-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (55.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybase64-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (57.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pybase64-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (56.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pybase64-1.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (54.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (57.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pybase64-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (68.5 kB view details)

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

pybase64-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (65.9 kB view details)

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

pybase64-1.4.1-cp39-cp39-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pybase64-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl (38.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pybase64-1.4.1-cp38-cp38-win_amd64.whl (36.3 kB view details)

Uploaded CPython 3.8Windows x86-64

pybase64-1.4.1-cp38-cp38-win32.whl (34.2 kB view details)

Uploaded CPython 3.8Windows x86

pybase64-1.4.1-cp38-cp38-musllinux_1_2_x86_64.whl (68.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pybase64-1.4.1-cp38-cp38-musllinux_1_2_s390x.whl (53.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

pybase64-1.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl (55.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

pybase64-1.4.1-cp38-cp38-musllinux_1_2_i686.whl (66.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pybase64-1.4.1-cp38-cp38-musllinux_1_2_armv7l.whl (50.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pybase64-1.4.1-cp38-cp38-musllinux_1_2_aarch64.whl (56.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybase64-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (58.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pybase64-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (57.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pybase64-1.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (54.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (58.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pybase64-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (69.4 kB view details)

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

pybase64-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (66.7 kB view details)

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

pybase64-1.4.1-cp38-cp38-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pybase64-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl (38.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pybase64-1.4.1.tar.gz
  • Upload date:
  • Size: 136.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1.tar.gz
Algorithm Hash digest
SHA256 03fc365c601671add4f9e0713c2bc2485fa4ab2b32f0d3bb060bd7e069cdaa43
MD5 00c34e91b006a8789fa29b1e1472c90d
BLAKE2b-256 38325d25a15256d2e80d1e92be821f19fc49190e65a90ea86733cb5af2285449

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1.tar.gz:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1a18644fb3e940ed622738f2ee14d9a2811bb542ffd3f85c3fb661130675ac4f
MD5 23355e2f1dfecea4130fe37ca4684fff
BLAKE2b-256 0bd70987f3d1c8196ad9affea9102c135a45342e1fa5affb849bf31bd633d000

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc9504c4c2e893e0a6c1cc80bce51907e3461288289f630eab22b5735eba1104
MD5 3847eb5ca4784c921d6d65cd34913a9b
BLAKE2b-256 ced04f8135c2459724a834a70481f6bb8af3e89ff527c9b5cff0b799321e29d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp311-pypy311_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.4.1-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10e2cb40869fe703484ba89ae50e05d63a169f7c42db59e29f8af0890c50515d
MD5 46f91a5c989529ad060118bdef322ab5
BLAKE2b-256 9dd51bf0b5354ca404ba096e99e2634c27836c212affe722bd2ade7103fd3c48

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45a785a3d29faf0309910d96e13c34870adb4ae43ea262868c6cf6a311936f37
MD5 90c15333de0512ef30dae0d38221213b
BLAKE2b-256 21c645ace9c84ccc9d51002c5bcfe8c50e7660f064e2bc272a30c7802036f1f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb09bd829d4fef567505212b6bb87cd7a42b5aa2a3b83fc2bd61a188db7793e0
MD5 d960af19703f89ae7605d4596b3e1f8c
BLAKE2b-256 b10279bdf96a780c3d1f4e9f1b583525247f3a33afebbba1e12e57fb28c395e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e8c28700ccf55348a7a4ad3554e6b4c5b83c640bfaa272fee6b4d0030566fe05
MD5 45a2ea8cbf624a75cffbaec752a0456d
BLAKE2b-256 a83e90633da698742bfd11a1d6301295e9974c2f9e0e510aaae8cdd26cd10880

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 62e42807bde3a7d18a0a7d35bd7fb1fe68f99c897eea8d3ea3aa0791b91358eb
MD5 19de4b98f7e8925396cb98299716072a
BLAKE2b-256 9a6c5952201a062ac4746fc767c8556a7b933cb59295068b9dba0bcba8bde378

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b31da1466faf3cfa775027d161d07640f3d1c6bbc8edf3725f8833ed0b25a2f
MD5 b6ba992dee93da0eb93f97793c24bce3
BLAKE2b-256 72304212a953d3fc4affa5ffa652096440daf1093ad6db734b17231f1f82a79a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp310-pypy310_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.4.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fdabd0d7fda2517ff36559189f7c00b376feafbd5d23bf5914e256246d29d7e
MD5 af5d4d95cbccab403a7396f312c2abc9
BLAKE2b-256 6df1d6bc1a548edc806ce8d25b6d761d2aed68abc3162f072f984940f59ae15b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc9a3f56630e707dbe7a34383943a1daefa699bc99c3250f8af9f8245056fccd
MD5 21a671d077b53347563e5f48a26fade1
BLAKE2b-256 12b4a54e9e3eb7f11f80a659eed05b0bfa6bc68ad8e7ec075e40236c7987d18e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d4bf9c94bc948cb3c3b0e38074d0de04f23d35765a306059417751e982da384
MD5 5a435ac614a4d88a54f875b04a86ca17
BLAKE2b-256 16d89a6c325c31c81897349c83bd4857f09f78d342bb03f0107df5ab9de0de1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b0bdb646f859132c68230efabc09fd8828ca20c59de7d53082f372c4b8af7aaa
MD5 973c40969d14a749990f8e665cd011ce
BLAKE2b-256 34224fcbd6b8dcbcabe30fdcd4d5145445cffc6724a90425dda0043c1cbd4919

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a20cff09b13cb8b72b35a9dd12173a7e3bd8e54efb9a708680014562ba47c648
MD5 78d8319431ac123f660f20dcb1199956
BLAKE2b-256 b1bd51902af191ed28bc0f5eb29a630bd40f68640ed7a24b3eb7aa1630d78cf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06d4d29312746e56a89ffc7cf797e8d1c3dfc4d0ab9cf883bb3f7267a7c74b25
MD5 3c7fcdf74c0f0694dd8e93afcc54ae21
BLAKE2b-256 0eaa0aa7b788ba5fcf66c49c895c5adae11896c5e37caaf45637203504e70bf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-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.4.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 011a54ff6ca44c5d03746aec3f1f492fce3155bd3f943fb2ceaea92416d40eeb
MD5 0bf0e158ff948f35c930aa143a52de4b
BLAKE2b-256 c3013a90d4ea2da403a0f247423bc13e1140db5a3dd850f423b0e94b8e2c397b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f73a1ac604accfff484f88786197822b4b8b9c727d10854d9475704707c267f8
MD5 4a06583840d108091f0003e5f98ec9c4
BLAKE2b-256 c406867e6680cb246e2631a73c543134f5aae7d2922a29c615511f88fa951271

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a306cb9ae5a6361e094e5617454dd26d19c896ccfc67d0357d96b96c5197547a
MD5 9689b6850e5df8772b490f6435fe4d6a
BLAKE2b-256 ffe8ea79c77c0b43d587bf8f5d2c41bbc413f0537c1eff9e7955503308900340

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eda1a04db3c3a5f9a8f902a3d537bac4bbc91f2f93a7e5cb4396ec50e16899d5
MD5 2a2b505d0a2116d81450c8a2307c98f8
BLAKE2b-256 dca3a163cde0fd600c7c96bfd7b5133e1d6bd368d512951a5986870e21b6f8de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7c07f62da3feb1aa0423454b28ecda86694cb8d3222a321d9c0e730e9a4368c1
MD5 b16e10e8a1e9ada30111ec99e1cdef7b
BLAKE2b-256 ba7d5145dd5a65749008bb2d2e4ddf5000b8e3becc57bd36694389fdd2a89e32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp38-pypy38_pp73-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 164d97bbf5d69431066374a7954c178be28b030adb55089920ec60462cb05b6a
MD5 673da895fb4b3cea71f05fe10f623ac4
BLAKE2b-256 7aa3fdec7fe60fdf164f64dba14b4e37b98d22c9ee1ac6b3c37a525857411aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-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.4.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32d518bcef00d6ea2aefe004e8e4af3eaf282a28be75aea34d800651c43dc1e1
MD5 12a26a95a821feefad7483d82c04ce35
BLAKE2b-256 04b5ef8f1709a67a3b51399ec03fa56f671c480bf309574c8800aa98222f5bc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6932053b71e6d4db62c0b89255caee88f796eadfb3c7d650a4637a3c849cc730
MD5 079df8263c1865dc941a415102a8907b
BLAKE2b-256 bf2672e49819e6fb78ace48950bebf29b3b755d75ad1abe2911b1c20c0f48d60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6b22975ff4e2dc73f86d3e648f16a48cb9e7c7f4b80bac43bd9e5332259cfc4
MD5 a6ec8a4b7d996035a0e6e1c28b6d32e8
BLAKE2b-256 ce037a5c989d15ba560180fc696c576ac67911aa1a645b858435c55b3893ac0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 389225d882a96f30f63b37fabfb36ccf9ec23f4345052acd99dec16c4e0f11ae
MD5 5f215bc02e521547e3c791d0679cf501
BLAKE2b-256 ca60dedee3ebdadaa144c81b49515648b7db19f88b2d2af33271fbac296cf7a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 4b3635e5873707906e72963c447a67969cfc6bac055432a57a91d7a4d5164fdf
MD5 d1608290727587a260017125346be0b9
BLAKE2b-256 436a8ec0e4461bf89ef0499ef6c746b081f3520a1e710aeb58730bae693e0681

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-win_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 36.9 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 02c3647d270af1a3edd35e485bb7ccfe82180b8347c49e09973466165c03d7aa
MD5 69d25336b870e16681824feec1e1442f
BLAKE2b-256 8ee71823de02d2c23324cf1142e9dce53b032085cee06c3f982806040f975ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 34.5 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 bc06186cfa9a43e871fdca47c1379bdf1cfe964bd94a47f0919a1ffab195b39e
MD5 2dde49d9561a93ef11db494b5ac4ef0e
BLAKE2b-256 8d986d2adaec318cae6ee968a10df0a7e870f17ee385ef623bcb2ab63fa11b59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-win32.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8db9acf239bb71a888748bc9ffc12c97c1079393a38bc180c0548330746ece94
MD5 50ed9d91a3db83b9e1102079730338b1
BLAKE2b-256 1545e3f23929018d0aada84246ddd398843050971af614da67450bb20f45f880

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fa5cdabcb4d21b7e56d0b2edd7ed6fa933ac3535be30c2a9cf0a2e270c5369c8
MD5 9d17c90897a6fa1c44e605644fb25488
BLAKE2b-256 39cf4d378a330249c937676ee8eab7992ec700ade362f35db36c15922b33b1c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8f52c4c29a35381f3ae06d520144a0707132f2cbfb53bc907b74811734bc4ef3
MD5 48f299a96519f75ce3a2ef90e01fffeb
BLAKE2b-256 900daa52dd1b1f25b98b1d94cc0522f864b03de55aa115de67cb6dbbddec4f46

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea835272570aa811e08ae17612632b057623a9b27265d44288db666c02b438dc
MD5 abd55680abd948cb15d6f5e001d138c0
BLAKE2b-256 635870de1efb1b6f21d7aaea33578868214f82925d969e2091f7de3175a10092

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac03f8eba72dd6da15dc25bb3e1b440ad21f5cb7ee2e6ffbbae4bd1b206bb503
MD5 ac7cfe6c06903bd466ba63319901f644
BLAKE2b-256 8ad57848543b3c8dcc5396be574109acbe16706e6a9b4dbd9fc4e22f211668a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a0fdcf13f986c82f7ef04a1cd1163c70f39662d6f02aa4e7b448dacb966b39f
MD5 4992986ebcac3c16bfe6b034e80c722b
BLAKE2b-256 6e0b013006ca984f0472476cf7c0540db2e2b1f997d52977b15842a7681ab79c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a1af8d387dbce05944b65a618639918804b2d4438fed32bb7f06d9c90dbed01
MD5 4a7672fac89896e4fe68ee4b14c1063b
BLAKE2b-256 ae1a8afd27facc0723b1d69231da8c59a2343feb255f5db16f8b8765ddf1600b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d8b5888cc239654fe68a0db196a18575ffc8b1c8c8f670c2971a44e3b7fe682
MD5 27b7018189a2cfe7da083d9453d2eee2
BLAKE2b-256 c2914d8268b2488ae10c485cba04ecc23a5a7bdfb47ce9b876017b11ea0249a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47737ff9eabc14b7553de6bc6395d67c5be80afcdbd25180285d13e089e40888
MD5 2cd53017ad3a03f3fca4e58ff8c3e933
BLAKE2b-256 9095ad9869c7cdcce3e8ada619dab5f9f2eff315ffb001704a3718c1597a2119

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04fee0f5c174212868fde97b109db8fac8249b306a00ea323531ee61c7b0f398
MD5 8789ced9af62ceaf7a0fe771f46a84a1
BLAKE2b-256 bd5df8a47da2a5f8b599297b307d3bd0293adedc4e135be310620f061906070f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-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.4.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15e54f9b2a1686f5bbdc4ac8440b6f6145d9699fd53aa30f347931f3063b0915
MD5 dd31555beb8599388e86eff9e65c2335
BLAKE2b-256 04c1c4f02f1d5f8e8a3d75715a3dd04196dde9e263e471470d099a26e91ebe2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b0093c52bd099b80e422ad8cddf6f2c1ac1b09cb0922cca04891d736c2ad647
MD5 b5966f9e91d40bd5b2d999a143105f7e
BLAKE2b-256 cccd422c74397210051125419fc8e425506ff27c04665459e18c8f7b037a754b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19ef58d36b9b32024768fcedb024f32c05eb464128c75c07cac2b50c9ed47f4a
MD5 b6c713c54d7ce80e71a9445261c907c1
BLAKE2b-256 8714dbf7fbbe91d71c8044fefe20d22480ad64097e2ba424944de512550e12a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2a98d323e97444a38db38e022ccaf1d3e053b1942455790a93f29086c687855f
MD5 76cb89ac9611eed51597bd18f7fb42e2
BLAKE2b-256 a383646d65fafe5e6edbdaf4c9548efb2e1dd7784caddbde3ff8a843dd942b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 29.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7fb782f3ceb30e24dc4d8d99c1221a381917bffaf85d29542f0f25b51829987c
MD5 7dd2b6d6f789012ac289fec096585668
BLAKE2b-256 5d8a0d65c4dcda06487305035f24888ffed219897c03fb7834635d5d5e27dae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-win_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 36.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8b7765515d7e0a48ddfde914dc2b1782234ac188ce3fab173b078a6e82ec7017
MD5 721e0759b22764242ed06bc05998b6d7
BLAKE2b-256 c0f5a7eed9f3692209a9869a28bdd92deddf8cbffb06b40954f89f4577e5c96e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1d34872e5aa2eff9dc54cedaf36038bbfbd5a3440fdf0bdc5b3c81c54ef151ea
MD5 26dce7c17f348db2eeea68489b07be9f
BLAKE2b-256 cc07116119c5b20688c052697f677cf56f05aa766535ff7691aba38447d4a0d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-win32.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c536c6ed161e6fb19f6acd6074f29a4c78cb41c9155c841d56aec1a4d20d5894
MD5 3bd1e84609478185ba3ee3d5bf07a163
BLAKE2b-256 700b98f0601391befe0f19aa8cbda821c62d95056a94cc41d452fe893d205523

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8ec003224f6e36e8e607a1bb8df182b367c87ca7135788ffe89173c7d5085005
MD5 7f607cfb0fc32e304462fe966fdc7adf
BLAKE2b-256 d0978db416066b7917909c38346c03a8f3e6d4fc8a1dc98636408156514269ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c36e214c25fb8dd4f3ecdaa0ff90073b793056e0065cc0a1e1e5525a6866a1ad
MD5 e9b7bef761ba18d1c017e75b1e02983c
BLAKE2b-256 2b65d94788a35904f21694c4c581bcee2e165bec2408cc6fbed85a7fef5959ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2de043312a1e7f15ee6d2b7d9e39ee6afe24f144e2248cce942b6be357b70d8
MD5 e594dac93c09c6ac28536203504661e3
BLAKE2b-256 1292ae30a54eaa437989839c4f2404c1f004d7383c0f46d6ebb83546d587d2a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 500afcb717a84e262c68f0baf9c56abaf97e2f058ba80c5546a9ed21ff4b705f
MD5 6160bc724cb0ce00c13db46cab5e4dec
BLAKE2b-256 71efc9051f2c0128194b861f3cd3b2d211b8d4d21ed2be354aa669fe29a059d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ddf6366c34eb78931fd8a47c00cb886ba187a5ff8e6dbffe1d9dae4754b6c28
MD5 8badbe062f75dc5adbc6d8cd6820a4ad
BLAKE2b-256 2f7fd6e6a72db055eb2dc01ab877d8ee39d05cb665403433ff922fb95d1003ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da66eb7cfb641486944fb0b95ab138e691ab78503115022caf992b6c89b10396
MD5 2a24fac57edb45d0b387c4253671d147
BLAKE2b-256 1aa9ace9f6d0926962c083671d7df247de442ef63cd06bd134f7c8251aab5c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2ab7b4535abc72d40114540cae32c9e07d76ffba132bdd5d4fff5fe340c5801
MD5 56d3a4e61543af3ce24a01462093c3de
BLAKE2b-256 af11f40c5cca587274d50baee88540a7839576204cb425fe2f73a752ea48ae74

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff172a4dacbd964e5edcf1c2152dae157aabf856508aed15276f46d04a22128e
MD5 849c4ff296a9a51d0f31fcb9d9db4a94
BLAKE2b-256 633c051512b9e139a11585447b286ede5ac3b284ce5df85de37eb8cff57d90f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 644f393e9bb7f3bacc5cbd3534d02e1b660b258fc8315ecae74d2e23265e5c1f
MD5 d660c55b393002d8e5043dcb8820aac4
BLAKE2b-256 4855d99b9ff8083573bbf97fc433bbc20e2efb612792025f3bad0868c96c37ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-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.4.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bccdf340c2a1d3dd1f41528f192265ddce7f8df1ee4f7b5b9163cdba0fe0ccb
MD5 43e9d5e693d58527264b133f9036a4ca
BLAKE2b-256 5387e184bf982a3272f1021f417e5a18fac406e042c606950e9082fc3b0cec30

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 678f573ea1d06183b32d0336044fb5db60396333599dffcce28ffa3b68319fc0
MD5 a6a2b3498ad09c56b8851373b7005123
BLAKE2b-256 889cd4e308b4b4e3b513bc084fc71b4e2dd00d21d4cd245a9a28144d2f6b03c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab0b93ea93cf1f56ca4727d678a9c0144c2653e9de4e93e789a92b4e098c07d9
MD5 6f4d63f85728dec8d6fe023818605d0d
BLAKE2b-256 9c353eae81bc8688a83f8b5bb84979d88e2cc3c3279a3b870a506f277d746c56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d1c38d9c4a7c132d45859af8d5364d3ce90975a42bd5995d18d174fb57621973
MD5 586f7bcf6a38ee2c43362d1ec27ba5cb
BLAKE2b-256 4b1a4e243ba702c07df3df3ba1795cfb02cf7a4242c53fc574b06a2bfa4f8478

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 29.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b4ccb438c4208ff41a260b70994c30a8631051f3b025cdca48be586b068b8f49
MD5 0bc80a87244dd4c1aca52dba8840a437
BLAKE2b-256 c46101353bc9c461e7b36d692daca3eee9616d8936ea6d8a64255ef7ec9ac307

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-win_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 36.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 35635db0d64fcbe9b3fad265314c052c47dc9bcef8dea17493ea8e3c15b2b972
MD5 abdeee08bf68a77a33c534d853767af1
BLAKE2b-256 d9984d514d3e4c04819d80bccf9ea7b30d1cfc701832fa5ffca168f585004488

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 34.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 614561297ad14de315dd27381fd6ec3ea4de0d8206ba4c7678449afaff8a2009
MD5 0a4594763f775f24d668898581390e71
BLAKE2b-256 2731913365a4f0e2922ec369ddaa3a1d6c11059acbe54531b003653efa007a48

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-win32.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4471257628785296efb2d50077fb9dfdbd4d2732c3487795224dd2644216fb07
MD5 d4218e6756599b989d5f0da28a29d301
BLAKE2b-256 be016008a4fbda0c4308dab00b95aedde8748032d7620bd95b686619c66917fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ba4184ea43aa88a5ab8d6d15db284689765c7487ff3810764d8d823b545158e6
MD5 42c98e20c85adf42888e721d421fa955
BLAKE2b-256 4d7a7ad2799c0b3c4e2f7b993e1636468445c30870ca5485110b589b8921808d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d9947b5e289e2c5b018ddc2aee2b9ed137b8aaaba7edfcb73623e576a2407740
MD5 4d9cd13fb06693e99a7b1aa6ca719bb9
BLAKE2b-256 e9ae1aec72325a3c48f7776cc55a3bab8b168eb77aea821253da8b9f09713734

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a9f1b614efd41240c9bb2cf66031aa7a2c3c092c928f9d429511fe18d4a3fd1
MD5 03ef65674fe67a1b2d25e80d113137b8
BLAKE2b-256 0cbfc9df141e24a259f38a38bdda5a3b63206f13e612ecbd3880fa10625e0294

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b19e169ea1b8a15a03d3a379116eb7b17740803e89bc6eb3efcc74f532323cf7
MD5 1a166c63b833d3e1a243774119ab3276
BLAKE2b-256 95b7edf53af308c6e8aada1e6d6a0a3789176af8cbae37a2ce084eb9da87bf33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51a24d21a21a959eb8884f24346a6480c4bd624aa7976c9761504d847a2f9364
MD5 37871be4f11ac45258b3c2c3dd2553a7
BLAKE2b-256 94345f8f72d1b7b4ddb64c48d60160f3f4f03cfd0bfd2e7068d4558499d948ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92b2305ac2442b451e19d42c4650c3bb090d6aa9abd87c0c4d700267d8fa96b1
MD5 501ad610340f1197226559799435eb57
BLAKE2b-256 c5f6061fee5b7ba38b8824dd95752ab7115cf183ffbd3330d5fc1734a47b0f9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 988e987f8cfe2dfde7475baf5f12f82b2f454841aef3a174b694a57a92d5dfb0
MD5 13f0cddcfe97a9dc6ef31e4716f3bee2
BLAKE2b-256 c51e1993e4b9a03e94fc53552285e3998079d864fff332798bf30c25afdac8f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65567e8f4f31cf6e1a8cc570723cc6b18adda79b4387a18f8d93c157ff5f1979
MD5 2b9f44b50e711fe2ea48f1d56286f6eb
BLAKE2b-256 991c1901547adc7d4f24bdcb2f75cb7dcd3975bff42f39da37d4bd218c608c60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ac21c1943a15552347305943b1d0d6298fb64a98b67c750cb8fb2c190cdefd4
MD5 c6b4e6f57a2e824c620e9a084c4fdc3c
BLAKE2b-256 be34bf4119a88b2ad0536a8ed9d66ce4d70ff8152eac00ef8a27e5ae35da4328

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-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.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cdda297e668e118f6b9ba804e858ff49e3dd945d01fdd147de90445fd08927d
MD5 1ce768f1335cf47c49a9118603dc28a8
BLAKE2b-256 c3d38ca4b0695876b52c0073a3557a65850b6d5c723333b5a271ab10a1085852

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1ff80e03357b09dab016f41b4c75cf06e9b19cda7f898e4f3681028a3dff29b
MD5 3124ffa627b1be968e6b766f23f4f66b
BLAKE2b-256 37daccfe5d1a9f1188cd703390522e96a31045c5b93af84df04a98e69ada5c8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af41e2e6015f980d15eae0df0c365df94c7587790aea236ba0bf48c65a9fa04e
MD5 b6ca522abe902bfe1945192c36a8082b
BLAKE2b-256 1ebbd0ae801e31a5052dbb1744a45318f822078dd4ce4cc7f49bfe97e7768f7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bbdcf77e424c91389f22bf10158851ce05c602c50a74ccf5943ee3f5ef4ba489
MD5 f13d24530c79542b9968b37f12f575f3
BLAKE2b-256 a6a943bac4f39401f7241d233ddaf9e6561860b2466798cfb83b9e7dbf89bc1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 72808de9aab43112deb04003e5e0d060c7cb1a60c3dcf74bbf61a9d7c596c5af
MD5 3f32288186d6955bf7c97d4dc4100e87
BLAKE2b-256 196c5a576f95c79aa28a4b476ec84afe751ac0cab23572d9fd000b93adab6c76

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-win_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pybase64-1.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 36.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9d5202cd4a8a0cd1b28c11730cf5da3c014450ad03732b5da03fac89b7693ec2
MD5 8ae4df189f77198763ff43354732eab7
BLAKE2b-256 eaa4354cfd978a145cbeacba73f70266687f3dd34e1df1cdeb882c23153697a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pybase64-1.4.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7726e655134132dde59bddabcd74d140f818eeecc70d149267267d5e29335193
MD5 607b2d8dc6a38830fc1ff93a70eea428
BLAKE2b-256 1316b487ba1382fca5451cb18552333999a52c47d5e561d41b1ba17bf3bbf407

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-win32.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d83ab7822da5740f1d17c72fb451e9468e72976b89cfb9eb4f6a5b66491b5dc
MD5 d94a5dc77a420f38e79081d97866b257
BLAKE2b-256 99a4795935ad7ef2d066c082a9c852b8dd658f2c61a2de1742b46c576665edd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bf8213e6b8c658df2971c5a56df42202d7f89d5d6312d066d49923cc98a39299
MD5 6f262300854a1a2da4b928e12290ee25
BLAKE2b-256 6e6d7562e73ab1dbf7d735e1a2da6be06a4bdb3bb8ddfecf3c29f25288528bb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bd1de051b9b032d84e799af498b44499e90122a095da7dad89c2873518473c67
MD5 6a95c733c4a18bf3f15b4602a78733fa
BLAKE2b-256 c755a847b02b2c17a6353e7156f995a44bdd26b326332851fb35ee3a5dfedf82

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1dcddfa521fb6cbab0385032d43f0ca13212459abd6efc381b6e9847e9fbd79
MD5 9080fbc149bca614b48466cf4b4be2f5
BLAKE2b-256 7eca8eaae3ee3c0e7b8a827c00ca5d850a9188e0cab9575764ae3638cce6ff78

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c15765be7921914d0dad0a2fb57c35a1811e1cbe2d1e47c39e0c66ed7db52898
MD5 b69b4596300042bc3cd6c1033de7a924
BLAKE2b-256 26edcac0892746795de07b2e71f48e651af597ccb8b52ba36ac2afaa07e7da55

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82efee94d6bd93f7787afc42f260fa0b60e24c8dc7f172bd45cfe99fa39567ff
MD5 2d502187d21b3de9c912effa93c650ac
BLAKE2b-256 53954e7cda0cd38e5e38697fcb62ede30c42ed8f5a2427adc73296d2746ec12c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80e85e5ca298d3a9916c47e6fb0c47ebe5bf7996eac6983c887027b378e9bcae
MD5 7526d40b360c31214201e7e35361cae5
BLAKE2b-256 0dae300cb522d7f7eb543165843d28db4046909a8aabe110afa50cdab0947c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1837488c7aa9bc7ba7bb0449908e57ecfe444e3c7347a905a87450c7e523e00
MD5 fc41230b89a9fe57c2cc87333fd00a05
BLAKE2b-256 60531558b2d756896f15ea6396e2791bb710a9f289a3e2a24db5bfcf203d54e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6634d77e2f4b559daf30234f2dc679de9de3ba88effbdc0354a68b3aa2d29d3
MD5 a3addb46d50de409b82c7ce333fd84a7
BLAKE2b-256 437071ed3d6d8905079668e75c6eeaa2e5c6fd4c33b0f8d4672e9ec99bb4925a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f033501b08bbfc89a725f9a283b485348df2cb7acb8c41ca52ccfa76785d9343
MD5 d8113a81a59b5e94275083ee873767ff
BLAKE2b-256 9638f561708ec3740ac7f0395122672d663cc525295a1021a0b9c16aba19115b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-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.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97e25723ecf7c439f650192d43699aab0a22850dca9cc6d60377c42bb4df7812
MD5 8e4443e03db655d8b3871b034ed44aae
BLAKE2b-256 6f4b8d0730e9507026e05a7e34daddcac3d548cf8ce51cda858d033b142fed4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 480c0c444eb07e4855d2eeab3f91a70331b75862d7a3dce0e6d4caddbfb4c09b
MD5 2cfa62c1d1dc7ca3331b39adb0f1a64c
BLAKE2b-256 b0b4355f03c656bb331e623466bc6be4307efd2c41cfe58fdbf869cfb126a70c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26ebcd7ccadde46ab35b16fee6f3b9478142833a164e10040b942ad5ccc8c4c0
MD5 d6f503edc5957713e739db193df09e4f
BLAKE2b-256 0ece1e56414745cb92ed0b22fd640af1d559d8161c28d26e288da7bcd2836f93

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a230b64474f02075608d81fc19073c86cb4e63111d5c94f8bf77a3f2c0569956
MD5 f2eba89d31c48c6b1539fb2bbf6307d5
BLAKE2b-256 ff746f60bddbc6badd9a821e590f960fcf55b2008842b724552e062273d2f3a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 aa4232a7082cca16db5de64f30056702d2d4ee4a5da1e2bbf9fd59bd3a67baed
MD5 817293211e01dfa3b2baf567df529c46
BLAKE2b-256 55b1c6edc2630e4e574f681f60e2b00e7b852e7127f37603e440d28d21a2ea67

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-win_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pybase64-1.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 36.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9117f9be7f9a190e245dd7045b760b775d0b11ccc4414925cf725cdee807d5f6
MD5 351ea7854762d1eaadc3389d6378feb7
BLAKE2b-256 4661efc03bf48590681839f7391696c51d6d304f4d5df7f47828c373dc657c3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pybase64-1.4.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9101ee786648fc45b4765626eaf71114dd021b73543d8a3ab975df3dfdcca667
MD5 65a9381dbec3598e4ff9a2799404a1a5
BLAKE2b-256 0910f6a2bb04e11f7e639e7b59a41fd4597f68d9f3dde1014184ddaa480e3eac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-win32.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 426e1ab673c744012d4b072fa6dc0642ca900b5c341f5e0c3a1c30b5dac332d1
MD5 bebd5e55eb44c9ca361cfa8e378b6fe9
BLAKE2b-256 2b7426c2d3f1893cc6904822fb8966dd722f432438273cce9e14f45ddfb454d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 02ff55724616a11eebceac6c8445dadac79289ae8d1e40eed1b24aa7517fa225
MD5 bb9b8dc940e93f5fddad0e6835aa6b50
BLAKE2b-256 1ff774ae590bafed894c634bd3684ea0c86d4878c5ccd31e3a10ae1e5391bdf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3f645629fae78e337faaa2ad7d35ced3f65b66f66629542d374641e30b218d1f
MD5 edf876c03019f7a9386f9d32007eed6e
BLAKE2b-256 85a3384601da9e09907d7509ec448afbce4be75a366db9ac36692c924dae7519

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb18c6a4defe85d23b16b1e6d6c7c3038cc402adfd8af14acc774dc585e814c4
MD5 64a8bf589076c5dd522fefb98af5d267
BLAKE2b-256 18ae7cd961e5cfb6fee5f3838586b0036876d0c58566f65d5973b78d4c090cc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8030ad8fe74c034cfad9a9a037c7b6ee85094b522c8b94c05e81df46e9a0eb5c
MD5 4fb453ea2eaadd7b0364568a519172c1
BLAKE2b-256 f734f40fea3fb306857d8e86473b1b5c2bc8d401c58ac424f59f8ec8fd7e55be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab02c31afe58b03d55a66fd9bd2cc4a04698b6bb2c33f68955aaec151542d838
MD5 5e866d1ab7ebea953ec17f2fa835e9a9
BLAKE2b-256 25275d8f1b530c4bc22c943ce4879f4e66aa879fe23ff411c8725b81a03bdf95

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecc374ea70bcef1884d3745480e07d1502bfbb41ac138cc38445c58c685dee32
MD5 392e06d023b0fba73de5e6050e1cba3f
BLAKE2b-256 8df7a510a06bea28ce17caec42a31d6587e196c288a9604a09af39191b410e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 732c5a4f7b389e6655375e75bde6fbab15508c8ae819bf41bda2c0202a59ff19
MD5 582a6a77392816c33b29eeb7fe1ed108
BLAKE2b-256 d1bf521c75786f519745de80b50eed22d73f16df201a954fbd613de0fa8e96b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0206b4b65f7cc0e0b6c26428765d3f0bae1312cb9d0fcebfad7cc24dfae4788
MD5 418dc948636fb9d6db7a4caff4f6e01e
BLAKE2b-256 f669d5b5f2a0d036bd0cadd17b0e581c11863074a3aab2090b07209c5fc1e18a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e15e0eaf665bcc5427c1f32f604ed02d599b7777e8b7f8391e943a8d7bc443f
MD5 aea1f8ad50ada4ab10ee5930ce809717
BLAKE2b-256 ed5c64ffd0c251fbd672c1306ddc792762eec09d39d7748d2656592b5e24cd39

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-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.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25b8405f632cce8b2e2f991ec2e4074b6a98ea44273cd218ffc3f88524ed162a
MD5 01946271187c180554e1f74591f48ea9
BLAKE2b-256 4c4624f97d76fec6532a7a60133fd9691a8afab6c7eab791368d14353dac5488

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a0433a4e76f10862817f303c2bf74371e118cb24124836bfb0d95ebc182dc97
MD5 86c63a326170a3364a7827086607bfbc
BLAKE2b-256 3f68e592b7641932a54a8255253865a646cfad4921471407263c33af47976023

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5202939f188cf150e1bc56f8b0da54a2cae2dcb9b27f4f7d313b358f707e1f7f
MD5 925683ced9c0e3ffa9ca4293bcab5217
BLAKE2b-256 731073637b81b54d785bc5873ba6a28d5b5062493a3801c37afb7734fa78ed09

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7628c86c431e04ae192ffeff0f8ae96b70ff4c053ad666625e7d6335196ea8a
MD5 589761a83f5ae7fa143c38bdb3925994
BLAKE2b-256 636832b6446f679a0236735bf55f7b6595a5398d614f4c29e022d205d3359858

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pybase64-1.4.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e6b22cbc8ec3dd26791293113b9102f9887f41865e442fb228f661a8340f9461
MD5 81cac2b5e02f618788ea7872a349b035
BLAKE2b-256 5b3635b409ba9b264247401a035af822fccc2e7f358076bf9b162055d75d60ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-win_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pybase64-1.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 36.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 20e575310b2ddc8f303f9a41987dc8b4c8dc6b992567bca5eda7f1ab6cf4289b
MD5 e4f8ef6d71e11afba41f4e9716fca959
BLAKE2b-256 7f7a47332521930d17a8d411172d6aa38d89185322f8a1fc198a3361ef3a4161

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pybase64-1.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1d8370f7930b3a8e9c8da341830898f1391a050d703f42bd2b95120664844368
MD5 eb7fca9f065ba6728abecb688a6fb5fa
BLAKE2b-256 e603d0d764c8bf15429cb5651a5a567119b6e39456d9ed8a6dfae767a58a54c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-win32.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 290adeb7844a5889decdf2424862179205dc4239f38cd0f87c5b56f87b87db99
MD5 6d04efce8c67ce26a5dac9227cfc3cfd
BLAKE2b-256 6b26f0c4662362c31f89bab162dc92e8a51085395f4cf000a689482505935d2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bceafd1450436dfca597958bd77cc619ed79311310b2a9271ce7a8069bdcb139
MD5 9d9b769f04ddac3fada8349891455de7
BLAKE2b-256 c6994a03cf45a950131df1857ec4f19b6fb85107789dc6d6a9dc2ec95aa76fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4c87f0149c2c6b0c19746c72e146067275f632a495e7f2de9bbd38b2e48630ee
MD5 e7cd3bf6feb7fc8107d55c2f882f3dd9
BLAKE2b-256 4d93d940dccceb64e0fc7b9b8844d1a1b27c1375bd24b56f076d15ebbe634328

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1b16691be4b63be973804de22b4b79e40c439e54ad9587f86f31f958b518625
MD5 8d3d95e4e2360205abd90701342f2562
BLAKE2b-256 e5c57ec20dcc27d3acbd80701137824c9fd938f8ab03d6588b51c61242617883

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5dac8d885342d49f6306e666688288c50515d0743e36a4405b1413feb43f39cc
MD5 fe666e231520bc29d2bbb2c7637c95ec
BLAKE2b-256 b307b72a532ccbde4e81bdb14fda0e3a3a554c757e287d0d22c6fce8e5871c98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e45d3b174f20563878b7d745940d3a80a5c10ba556d39a5d7b9a7ed0d82c672e
MD5 d522d7906e3aa9300a747e6d86694902
BLAKE2b-256 026af9957ec9fa53e650452d121c192a5bc82888cfb4bd50f281a239817a117b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbce0df09d627ec35971aa02b14adef739be59b4c7816418d1c06c92e580d4c3
MD5 bf75b6ef70aae5a49dce17826273e896
BLAKE2b-256 e9a1762b034beac0909a82edcde132dd5e04c1190d772f8bc4fc69c05d35a70d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1cef7bb7f0a84f3ffa97f431e65924bdaa95bf1696006fd7a391aaa8aa67753
MD5 8d67d7dfc1bc5859839a3bb3ab93e765
BLAKE2b-256 6cf4461a8a686f8835bcf7982bf7c02f27998a24ff619a223cda883ee4b73d9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77339b232fbaf7f6ecbfb8a31aec25f3eeca8bc938188180c730d2084e4a246a
MD5 ce98e3ecab31e793461f4fe27ba5cf56
BLAKE2b-256 241dc6d29b729d0231b291223946913254c72b9bb73f8039c05f097066bc0ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78165489e1026b80d3914488de51d28b247d9c75dbf8f2d0bf81c88d1636eb81
MD5 0f259eda658aca8b66d166bac89290e8
BLAKE2b-256 a1af955755800fc26331c66e42d0d5b816152efca57545e79c751c49236193d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-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.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12987975c58f6547eff106454c252ad19b59e5a2de3c47a9efecee1a2a15aba5
MD5 a2ff4e86c5d17b1766b1e3dc98599eef
BLAKE2b-256 2cda8c0266ffeb301ff70179ef684fcd63144a1292713d124e5dfc6647e121f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 734e3dea40a30225b53d8d341ee4308f7b0182f1a8ce3f4309575c0af07b9902
MD5 493af01a933e29002510b0ef03e635e6
BLAKE2b-256 a964039164164dd24c6595ff221f2311c60f0e9d80fe20a3ea29eb203af1e3fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0ea46295faf5951e0bcc0859be015e9630cdc854c40dc3c5d8401da1eeb6e84
MD5 4af57a8c352c5a39f792baaf5dc0d899
BLAKE2b-256 ae8b6681990f548530225b84188c9c7db96f92568513be5f071085ae90791197

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c226a24e4ab8eb351b1e979aca91590742515a7069347a9fe7deae31cab9442
MD5 150ba3e3ad3967c9505bab6f239d035d
BLAKE2b-256 e9e0e24db103af867f957a11a7c05cf40a14c1936f0dca71c2bc24fe2b458d05

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pybase64-1.4.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 36.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 62dc454c50ed78256fdd477b828ecc2be6a00a0f0659f7c3914b33e1bc81170a
MD5 65f399a370a98ce412baf16dd6b2681b
BLAKE2b-256 46cf0a8032c7db5f52e32faf025f2475bf1eed457305cf65d4eaf5d23c9f656d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-win_amd64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: pybase64-1.4.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e6d1bbeea2bb98cffba2aa8eb6365798057a7dcf165b58c88c42485cd3fc21db
MD5 2eeb77e009e6709055888e00adf5a9de
BLAKE2b-256 a32933b06062ab493344110c064caf826d123be340c5ba9a9790ef0ea4e59b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-win32.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b881e99edaa4e5c90a34049573947c00b95b2ac06e670082f1f2f90edc602fff
MD5 74e8fe8c9a467051806b3afaffaf4436
BLAKE2b-256 521e7934288e6ff99c5fe2e97b51c5b8d28536b6d001270460c303e2a9886438

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bee30d01e59cfff7e241e9d94cf396af852bb36339b5a7d960e2583598128556
MD5 6a3f1e32fd8a63a2933ff91a52febcc6
BLAKE2b-256 4a99600e79e6da8e4c3ed363a22b912c208e898b44ff88c7410939c56e04a3e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-musllinux_1_2_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a4eb94f63a562fc2f4759db5b0acbbf87afc12ab2d430a20fa5fbdee8138a37c
MD5 80620facd80f4191f5032e4fd2808d32
BLAKE2b-256 9464ab40324f21202c5ca0e72c3ae6ced7c0fe6054a702a7ac26246ff4cbe55f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66b5b68e2fa41f9b267136fd788e1715c96bed37a2c0f73abf8741a50f196997
MD5 029ee695ec2c440b68ea739bb035c1e4
BLAKE2b-256 0e27869fff5ede059e21784071fa93e676f71918d616f665ed94ffa08303631f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b426d106ba451fe04e6841bc962332793e5a951ebe23378ee61938b65824095
MD5 adeba5a340db0619c1818dcac78efb45
BLAKE2b-256 a2a26723280fe75296675a700c0affbee9582966ceb84755f4c076b2f6a7be1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bf440f8332de0ed863c51de332c2487011fcce448acd1f32549a01ca4550d74
MD5 a8b7cd9daf78040e801134e3f28383c1
BLAKE2b-256 c47eff7adfd1adaf45b50f28de020c21260766a5d2a752257d5ae439e7381af8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d81fc9f6d7d79708cb853a599e1143740c0c359235484c15b1f436c50e891cc
MD5 b3a1d7229fc7f9ba29806625fb8120cd
BLAKE2b-256 ad73f56888684f76bd40b95cf42a639cec6525d30888124c245bcf698561da9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7ae7a30be0d50d4163293025935d390d3fe28e735559d051511b7f0b5339437
MD5 ce3de79456c52b3b661e59183b3a9bf7
BLAKE2b-256 d381aa0c432647d962ad203d314c2f7cc545a0db30010d01a10f28ecea266da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e89493fa77657e12de0ed359ce2226dff39e0012c95f750bd1bd0611c24ddfd1
MD5 28d89e56717935aa22898cda4c80e863
BLAKE2b-256 3d9d1bf90a8ae266708684e00a3afedbb4b93ae5a6a6bab7233580154b4e3233

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4822576a58666c0eb5c36af032bd5dbd0c30e9612ca8c19e0af1c32a861907e4
MD5 4a2d7b32697fef827862edfde2a39560
BLAKE2b-256 33eb3529c4304316da322d496bf0bd1aa8dd5cbdd9567cb5c8e1b9a7d5c01074

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pybase64-1.4.1-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.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4308ef7447e76169c92bf809830ab95cee52821b4ab93bde93fad449b8a6a821
MD5 a8c96a40a321aa72006cfd063adfc6ee
BLAKE2b-256 226eaf648c0738a9b2a44383cf9da8d5833ba08b80d60a1e9c76d8e40b33bf76

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d450f8b6758f23d557097f52c09589504d80ca37730366e3a3f2335a665c5a52
MD5 60e37d18d045dd2faf95d4287cc8d642
BLAKE2b-256 809a117b7c3d9694d59c822f3b0bad5583da9bcbdb6d4beedb7540e19243707a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91c1041a9660dccf55e559efaa2025fd62f0217dc41d805f3ca1340dd1dff317
MD5 0dbd55607b1430b763d1c07b3ef5cef7
BLAKE2b-256 38126300f54a8c315579e1b3c7da03284c866b5b1b2bb9f92ed269b9679e71d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for pybase64-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef8ee856500d4750105597384bf209b6d818b433cbe38a062ed1621a0e4eb155
MD5 dd1dd921e893be590ca0a58f7480196d
BLAKE2b-256 25aa2b7dcb0f1423c3b9942805e3862331fe70fa45f92532e0e7406c0895afc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build-upload.yml on mayeut/pybase64

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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