VOOZH about

URL: https://pypi.org/project/pybase64/

⇱ pybase64 Β· PyPI


Skip to main content

pybase64 1.4.3

pip install pybase64

Latest release

Released:

Fast Base64 encoding/decoding

Navigation

Verified details

These details have been verified by PyPI
Project links
GitHub Statistics
Maintainers
πŸ‘ Avatar for mayeut from gravatar.com
mayeut

Unverified details

These details have not been verified by PyPI
Project links
Meta
  • License: BSD License (BSD-2-Clause)
  • Author: Matthieu Darbois
  • Tags base64
  • Requires: Python >=3.8

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.

importpybase64print(pybase64.b64encode(b'>>>foo???', altchars='_:'))# b'Pj4_Zm9vPz8:'print(pybase64.b64decode(b'Pj4_Zm9vPz8:', altchars='_:', validate=True))# b'>>>foo???'# Standard encoding helpersprint(pybase64.standard_b64encode(b'>>>foo???'))# b'Pj4+Zm9vPz8/'print(pybase64.standard_b64decode(b'Pj4+Zm9vPz8/'))# b'>>>foo???'# URL safe encoding helpersprint(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.3

  • Publish Android Python 3.14 wheels

  • Publish GraalPy v25 wheels

1.4.2

  • Update base64 library (Windows ARM64 Neon support)

  • Publish Python 3.14 wheels

  • Publish Linux riscv64 wheels

  • Publish Android wheels

  • Publish iOS wheels

  • Publish GraalPy wheels

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

Verified details

These details have been verified by PyPI
Project links
GitHub Statistics
Maintainers
πŸ‘ Avatar for mayeut from gravatar.com
mayeut

Unverified details

These details have not been verified by PyPI
Project links
Meta
  • License: BSD License (BSD-2-Clause)
  • Author: Matthieu Darbois
  • Tags base64
  • Requires: Python >=3.8

Release history Release notifications | RSS feed

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

Uploaded Source

Built Distributions

Filter files by name, interpreter, ABI, and platform.

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

Copy a direct link to the current filters

pybase64-1.4.3-pp311-pypy311_pp73-win_amd64.whl (36.1 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.4.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (35.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.4.3-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (41.3 kB view details)

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

pybase64-1.4.3-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (40.7 kB view details)

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

pybase64-1.4.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybase64-1.4.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (37.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pybase64-1.4.3-pp310-pypy310_pp73-win_amd64.whl (36.1 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.4.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (35.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.4.3-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (41.3 kB view details)

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

pybase64-1.4.3-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (40.7 kB view details)

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

pybase64-1.4.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pybase64-1.4.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (38.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

pybase64-1.4.3-pp39-pypy39_pp73-win_amd64.whl (36.1 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.4.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (35.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.4.3-pp39-pypy39_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (41.3 kB view details)

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

pybase64-1.4.3-pp39-pypy39_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (40.7 kB view details)

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

pybase64-1.4.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (31.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

pybase64-1.4.3-pp38-pypy38_pp73-win_amd64.whl (36.0 kB view details)

Uploaded PyPyWindows x86-64

pybase64-1.4.3-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (35.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pybase64-1.4.3-pp38-pypy38_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (41.1 kB view details)

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

pybase64-1.4.3-pp38-pypy38_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (40.5 kB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

pybase64-1.4.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (37.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

pybase64-1.4.3-graalpy312-graalpy250_312_native-win_amd64.whl (36.2 kB view details)

Uploaded Windows x86-64graalpy312

pybase64-1.4.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (36.1 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64

pybase64-1.4.3-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (43.5 kB view details)

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

pybase64-1.4.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (32.6 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

pybase64-1.4.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (38.7 kB view details)

Uploaded graalpy312macOS 10.13+ x86-64

pybase64-1.4.3-graalpy311-graalpy242_311_native-win_amd64.whl (35.9 kB view details)

Uploaded Windows x86-64graalpy311

pybase64-1.4.3-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (35.8 kB view details)

Uploaded graalpy311manylinux: glibc 2.17+ ARM64

pybase64-1.4.3-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (43.2 kB view details)

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

pybase64-1.4.3-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (32.1 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

pybase64-1.4.3-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl (38.4 kB view details)

Uploaded graalpy311macOS 10.9+ x86-64

pybase64-1.4.3-cp314-cp314t-win_arm64.whl (31.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

pybase64-1.4.3-cp314-cp314t-win_amd64.whl (36.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

pybase64-1.4.3-cp314-cp314t-win32.whl (34.5 kB view details)

Uploaded CPython 3.14tWindows x86

pybase64-1.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl (74.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pybase64-1.4.3-cp314-cp314t-musllinux_1_2_s390x.whl (61.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

pybase64-1.4.3-cp314-cp314t-musllinux_1_2_riscv64.whl (58.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

pybase64-1.4.3-cp314-cp314t-musllinux_1_2_ppc64le.whl (62.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

pybase64-1.4.3-cp314-cp314t-musllinux_1_2_i686.whl (72.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pybase64-1.4.3-cp314-cp314t-musllinux_1_2_armv7l.whl (56.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pybase64-1.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl (63.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pybase64-1.4.3-cp314-cp314t-manylinux_2_31_riscv64.whl (58.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

pybase64-1.4.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl (65.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

pybase64-1.4.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (64.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pybase64-1.4.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (60.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pybase64-1.4.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (65.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pybase64-1.4.3-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (75.7 kB view details)

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

pybase64-1.4.3-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (72.5 kB view details)

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

pybase64-1.4.3-cp314-cp314t-macosx_11_0_arm64.whl (32.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pybase64-1.4.3-cp314-cp314t-macosx_10_15_x86_64.whl (38.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pybase64-1.4.3-cp314-cp314-win_arm64.whl (31.6 kB view details)

Uploaded CPython 3.14Windows ARM64

pybase64-1.4.3-cp314-cp314-win_amd64.whl (36.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pybase64-1.4.3-cp314-cp314-win32.whl (34.2 kB view details)

Uploaded CPython 3.14Windows x86

pybase64-1.4.3-cp314-cp314-musllinux_1_2_x86_64.whl (71.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pybase64-1.4.3-cp314-cp314-musllinux_1_2_s390x.whl (56.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

pybase64-1.4.3-cp314-cp314-musllinux_1_2_riscv64.whl (54.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

pybase64-1.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl (58.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

pybase64-1.4.3-cp314-cp314-musllinux_1_2_i686.whl (69.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pybase64-1.4.3-cp314-cp314-musllinux_1_2_armv7l.whl (52.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pybase64-1.4.3-cp314-cp314-musllinux_1_2_aarch64.whl (58.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pybase64-1.4.3-cp314-cp314-manylinux_2_31_riscv64.whl (55.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

pybase64-1.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl (60.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pybase64-1.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (59.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pybase64-1.4.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (56.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (60.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pybase64-1.4.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (71.7 kB view details)

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

pybase64-1.4.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (68.5 kB view details)

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

pybase64-1.4.3-cp314-cp314-macosx_11_0_arm64.whl (31.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pybase64-1.4.3-cp314-cp314-macosx_10_15_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pybase64-1.4.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (38.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

pybase64-1.4.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (31.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

pybase64-1.4.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl (30.9 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

pybase64-1.4.3-cp314-cp314-android_24_x86_64.whl (40.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

pybase64-1.4.3-cp314-cp314-android_24_arm64_v8a.whl (33.8 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

pybase64-1.4.3-cp313-cp313t-win_arm64.whl (31.5 kB view details)

Uploaded CPython 3.13tWindows ARM64

pybase64-1.4.3-cp313-cp313t-win_amd64.whl (36.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

pybase64-1.4.3-cp313-cp313t-win32.whl (34.0 kB view details)

Uploaded CPython 3.13tWindows x86

pybase64-1.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl (74.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pybase64-1.4.3-cp313-cp313t-musllinux_1_2_s390x.whl (60.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

pybase64-1.4.3-cp313-cp313t-musllinux_1_2_riscv64.whl (58.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

pybase64-1.4.3-cp313-cp313t-musllinux_1_2_ppc64le.whl (62.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

pybase64-1.4.3-cp313-cp313t-musllinux_1_2_i686.whl (72.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pybase64-1.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl (56.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pybase64-1.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl (63.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pybase64-1.4.3-cp313-cp313t-manylinux_2_31_riscv64.whl (58.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64

pybase64-1.4.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl (64.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pybase64-1.4.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (64.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pybase64-1.4.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (60.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pybase64-1.4.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (65.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pybase64-1.4.3-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (75.5 kB view details)

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

pybase64-1.4.3-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (72.3 kB view details)

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

pybase64-1.4.3-cp313-cp313t-macosx_11_0_arm64.whl (32.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

pybase64-1.4.3-cp313-cp313-win_arm64.whl (31.2 kB view details)

Uploaded CPython 3.13Windows ARM64

pybase64-1.4.3-cp313-cp313-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pybase64-1.4.3-cp313-cp313-win32.whl (33.7 kB view details)

Uploaded CPython 3.13Windows x86

pybase64-1.4.3-cp313-cp313-musllinux_1_2_x86_64.whl (71.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pybase64-1.4.3-cp313-cp313-musllinux_1_2_s390x.whl (56.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

pybase64-1.4.3-cp313-cp313-musllinux_1_2_riscv64.whl (54.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

pybase64-1.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl (57.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

pybase64-1.4.3-cp313-cp313-musllinux_1_2_i686.whl (68.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pybase64-1.4.3-cp313-cp313-musllinux_1_2_armv7l.whl (52.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pybase64-1.4.3-cp313-cp313-musllinux_1_2_aarch64.whl (58.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybase64-1.4.3-cp313-cp313-manylinux_2_31_riscv64.whl (54.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

pybase64-1.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl (60.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pybase64-1.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (59.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pybase64-1.4.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (56.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (59.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pybase64-1.4.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (71.6 kB view details)

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

pybase64-1.4.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (68.2 kB view details)

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

pybase64-1.4.3-cp313-cp313-macosx_11_0_arm64.whl (31.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pybase64-1.4.3-cp313-cp313-macosx_10_13_x86_64.whl (38.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pybase64-1.4.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (38.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

pybase64-1.4.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (31.4 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

pybase64-1.4.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl (30.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

pybase64-1.4.3-cp313-cp313-android_21_x86_64.whl (40.8 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

pybase64-1.4.3-cp313-cp313-android_21_arm64_v8a.whl (33.9 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

pybase64-1.4.3-cp312-cp312-win_arm64.whl (31.2 kB view details)

Uploaded CPython 3.12Windows ARM64

pybase64-1.4.3-cp312-cp312-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pybase64-1.4.3-cp312-cp312-win32.whl (33.7 kB view details)

Uploaded CPython 3.12Windows x86

pybase64-1.4.3-cp312-cp312-musllinux_1_2_x86_64.whl (71.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pybase64-1.4.3-cp312-cp312-musllinux_1_2_s390x.whl (56.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

pybase64-1.4.3-cp312-cp312-musllinux_1_2_riscv64.whl (54.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

pybase64-1.4.3-cp312-cp312-musllinux_1_2_ppc64le.whl (57.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

pybase64-1.4.3-cp312-cp312-musllinux_1_2_i686.whl (68.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pybase64-1.4.3-cp312-cp312-musllinux_1_2_armv7l.whl (52.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pybase64-1.4.3-cp312-cp312-musllinux_1_2_aarch64.whl (58.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybase64-1.4.3-cp312-cp312-manylinux_2_31_riscv64.whl (54.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

pybase64-1.4.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl (60.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pybase64-1.4.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (59.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pybase64-1.4.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (56.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (59.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pybase64-1.4.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (71.6 kB view details)

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

pybase64-1.4.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (68.2 kB view details)

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

pybase64-1.4.3-cp312-cp312-macosx_11_0_arm64.whl (31.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

pybase64-1.4.3-cp311-cp311-win_arm64.whl (31.2 kB view details)

Uploaded CPython 3.11Windows ARM64

pybase64-1.4.3-cp311-cp311-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pybase64-1.4.3-cp311-cp311-win32.whl (33.6 kB view details)

Uploaded CPython 3.11Windows x86

pybase64-1.4.3-cp311-cp311-musllinux_1_2_x86_64.whl (70.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pybase64-1.4.3-cp311-cp311-musllinux_1_2_s390x.whl (56.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

pybase64-1.4.3-cp311-cp311-musllinux_1_2_riscv64.whl (54.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

pybase64-1.4.3-cp311-cp311-musllinux_1_2_ppc64le.whl (58.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

pybase64-1.4.3-cp311-cp311-musllinux_1_2_i686.whl (69.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pybase64-1.4.3-cp311-cp311-musllinux_1_2_armv7l.whl (52.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pybase64-1.4.3-cp311-cp311-musllinux_1_2_aarch64.whl (58.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybase64-1.4.3-cp311-cp311-manylinux_2_31_riscv64.whl (54.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

pybase64-1.4.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl (60.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pybase64-1.4.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (59.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pybase64-1.4.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (56.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (59.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pybase64-1.4.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (71.4 kB view details)

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

pybase64-1.4.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (68.3 kB view details)

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

pybase64-1.4.3-cp311-cp311-macosx_11_0_arm64.whl (31.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pybase64-1.4.3-cp311-cp311-macosx_10_9_x86_64.whl (38.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pybase64-1.4.3-cp310-cp310-win_arm64.whl (31.2 kB view details)

Uploaded CPython 3.10Windows ARM64

pybase64-1.4.3-cp310-cp310-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pybase64-1.4.3-cp310-cp310-win32.whl (33.6 kB view details)

Uploaded CPython 3.10Windows x86

pybase64-1.4.3-cp310-cp310-musllinux_1_2_x86_64.whl (68.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pybase64-1.4.3-cp310-cp310-musllinux_1_2_s390x.whl (54.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

pybase64-1.4.3-cp310-cp310-musllinux_1_2_riscv64.whl (52.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

pybase64-1.4.3-cp310-cp310-musllinux_1_2_ppc64le.whl (55.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

pybase64-1.4.3-cp310-cp310-musllinux_1_2_i686.whl (66.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pybase64-1.4.3-cp310-cp310-musllinux_1_2_armv7l.whl (50.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pybase64-1.4.3-cp310-cp310-musllinux_1_2_aarch64.whl (56.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybase64-1.4.3-cp310-cp310-manylinux_2_31_riscv64.whl (53.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

pybase64-1.4.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl (57.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pybase64-1.4.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (57.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pybase64-1.4.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (54.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (57.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pybase64-1.4.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (68.9 kB view details)

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

pybase64-1.4.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (66.0 kB view details)

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

pybase64-1.4.3-cp310-cp310-macosx_11_0_arm64.whl (31.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pybase64-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl (38.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pybase64-1.4.3-cp39-cp39-win_arm64.whl (31.2 kB view details)

Uploaded CPython 3.9Windows ARM64

pybase64-1.4.3-cp39-cp39-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pybase64-1.4.3-cp39-cp39-win32.whl (33.6 kB view details)

Uploaded CPython 3.9Windows x86

pybase64-1.4.3-cp39-cp39-musllinux_1_2_x86_64.whl (68.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pybase64-1.4.3-cp39-cp39-musllinux_1_2_s390x.whl (53.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

pybase64-1.4.3-cp39-cp39-musllinux_1_2_riscv64.whl (52.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

pybase64-1.4.3-cp39-cp39-musllinux_1_2_ppc64le.whl (55.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

pybase64-1.4.3-cp39-cp39-musllinux_1_2_i686.whl (66.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pybase64-1.4.3-cp39-cp39-musllinux_1_2_armv7l.whl (49.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pybase64-1.4.3-cp39-cp39-musllinux_1_2_aarch64.whl (56.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybase64-1.4.3-cp39-cp39-manylinux_2_31_riscv64.whl (52.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64

pybase64-1.4.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl (57.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pybase64-1.4.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (57.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pybase64-1.4.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (54.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pybase64-1.4.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (57.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pybase64-1.4.3-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (68.7 kB view details)

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

pybase64-1.4.3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (65.8 kB view details)

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

pybase64-1.4.3-cp39-cp39-macosx_11_0_arm64.whl (31.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pybase64-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl (38.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pybase64-1.4.3-cp38-cp38-win_amd64.whl (35.7 kB view details)

Uploaded CPython 3.8Windows x86-64

pybase64-1.4.3-cp38-cp38-win32.whl (33.5 kB view details)

Uploaded CPython 3.8Windows x86

pybase64-1.4.3-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.3-cp38-cp38-musllinux_1_2_s390x.whl (53.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

pybase64-1.4.3-cp38-cp38-musllinux_1_2_riscv64.whl (52.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pybase64-1.4.3-cp38-cp38-musllinux_1_2_aarch64.whl (56.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pybase64-1.4.3-cp38-cp38-manylinux_2_31_riscv64.whl (53.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.31+ riscv64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pybase64-1.4.3-cp38-cp38-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp38-cp38-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (66.5 kB view details)

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

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pybase64-1.4.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for pybase64-1.4.3.tar.gz
Algorithm Hash digest
SHA256 c2ed274c9e0ba9c8f9c4083cfe265e66dd679126cd9c2027965d807352f3f053
MD5 d595126341b3bf6e3c8587ed98496f44
BLAKE2b-256 aab84ed5c7ad5ec15b08d35cc79ace6145d5c1ae426e46435f4987379439dfea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3.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.3-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 debf737e09b8bf832ba86f5ecc3d3dbd0e3021d6cd86ba4abe962d6a5a77adb3
MD5 48b34f9f343f442d32b47813ffe4421e
BLAKE2b-256 ee2be18ee7c5ee508a82897f021c1981533eca2940b5f072fc6ed0906c03a7a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5cfc8c49a28322d82242088378f8542ce97459866ba73150b062a7073e82629d
MD5 c6084550bbc797a74161742d0fb7f103
BLAKE2b-256 6425ed24400948a6c974ab1374a233cb7e8af0a5373cea0dd8a944627d17c34a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_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.3-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2af6d0d3a691911cc4c9a625f3ddcd3af720738c21be3d5c72de05629139d393
MD5 3e10a65c599da5fa67317c15224c0ad3
BLAKE2b-256 12d76610f34a8972415fab3bb4704c174a1cc477bffbc3c36e526428d0f3957d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bd4d2293de9fd212e294c136cec85892460b17d24e8c18a6ba18750928037750
MD5 b48296236315752a83f3856e9b5bf905
BLAKE2b-256 d322832a2f9e76cdf39b52e01e40d8feeb6a04cf105494f2c3e3126d0149717f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab1dd8b1ed2d1d750260ed58ab40defaa5ba83f76a30e18b9ebd5646f6247ae5
MD5 ef7a11eea23412e32977119e1f8facb8
BLAKE2b-256 b7b8a0f10be8d648d6f8f26e560d6e6955efa7df0ff1e009155717454d76f601

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 277de6e03cc9090fb359365c686a2a3036d23aee6cd20d45d22b8c89d1247f17
MD5 f5a90476a38fbda188e23a34e70665b0
BLAKE2b-256 b276160dded493c00d3376d4ad0f38a2119c5345de4a6693419ad39c3565959b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bd47076f736b27a8b0f9b30d93b6bb4f5af01b0dc8971f883ed3b75934f39a99
MD5 aa13e965b3a9287b7c44d1defbd0410f
BLAKE2b-256 95b74d37bd3577d1aa6c732dc099087fe027c48873e223de3784b095e5653f8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3caa1e2ddad1c50553ffaaa1c86b74b3f9fbd505bea9970326ab88fc68c4c184
MD5 4d77ee642a92c80797d1a05d91e3d8b8
BLAKE2b-256 07c9a748dfc0969a8d960ecf1e82c8a2a16046ffec22f8e7ece582aa3b1c6cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_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.3-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7ca5b1ce768520acd6440280cdab35235b27ad2faacfcec064bc9c3377066ef1
MD5 212d9ee66693b2bf89ad4f6927835012
BLAKE2b-256 92a0464b36d5dfb61f3da17858afaeaa876a9342d58e9f17803ce7f28b5de9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 03d0aa3761a99034960496280c02aa063f856a3cc9b33771bc4eab0e4e72b5c2
MD5 72cdf992dc45fd4c266f4cf32e5cc6c6
BLAKE2b-256 20f217546f97befe429c73f622bbd869ceebb518c40fdb0dec4c4f98312e80a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01bc3ff5ca1341685c6d2d945b035f442f7b9c3b068a5c6ee8408a41fda5754e
MD5 e3608637cba2482cd0fc642e61954b4e
BLAKE2b-256 38c09272cae1c49176337dcdbd97511e2843faae1aaf5a5fb48569093c6cd4ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 94cf50c36bb2f8618982ee5a978c4beed9db97d35944fa96e8586dd953c7994a
MD5 ae38809c9cde62a8e7ed267130108a99
BLAKE2b-256 2acf6e712491bd665ea8633efb0b484121893ea838d8e830e06f39f2aae37e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5de708043de95a3d2d621f5d51dc8e774bbdf969aa39021eee3ba5209d35dbea
MD5 5d3a024010455dad6c2d8fb6d95fad01
BLAKE2b-256 e0a8ce037ae1b5c7e58f19e8ded75d74b6f692dae1e48b1749f09fb0d0acaf1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 97092c95ca0e1581c0bad10bd6a3d942dcdddc9f17117a4963d6f95a01939f4e
MD5 dde84b252bdf35d3fde571aab5b84350
BLAKE2b-256 39b9d92a7676237c904c882add8e1ce07ab67b34eaca4f0d69151421c32b9c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_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.3-pp39-pypy39_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp39-pypy39_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ab9d310a1b004951dbbb58b78ed95fbf85c534c868b2b286b4eecda69f0f56a7
MD5 1a4ea2604713b868063d047a81be16b7
BLAKE2b-256 1f8243b4e67fcb486b25cb51a009c6b633e89202bcdfe27def26e11bb50f9bb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp39-pypy39_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-pp39-pypy39_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp39-pypy39_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ee0569be8ce97e5cbd736e964c8e15fcaac65d819cab835dd43f08c170b3215e
MD5 d9409d8438f926d7dce57133026ffbc5
BLAKE2b-256 31ace2275338df6f854e9ca3c0e3d6db107015c948017639b04e04713452b1e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp39-pypy39_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3da528244cf43079191275a3ec14897b08bf048a154cd595252a5975204f550e
MD5 2b4c97ef7124bb962073fb2148943205
BLAKE2b-256 18b1b031c3999a6857c2c65aa80ed8b2a64c65145222df31218c91a8188fc38b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1d9b27765d37bb3aeebb9e6cfd0a26e5a82367e64204cb389d18dd2cd1ea4c7b
MD5 50430fba079cb7165a7fc0294996148d
BLAKE2b-256 7baa82c0587714a2d591292940ab576ea1988e42abd21b0afe70df2106a66925

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 01438afc77fcd62a2d65c5a933fb206c847663a0d5b97039df35bb26db787651
MD5 84aa324056e1ab49d256e1d06f7faa56
BLAKE2b-256 c9fa926abb6d899062065cf44a6b9830dd1314c835b23f613e6f0b7c13ce7f59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 be9c5b371aebf2879135bdc4e840c029872436b3110a6f01d3aea08c7dce6b33
MD5 6ce868f467d79abb47886ad1772ffbd4
BLAKE2b-256 c94237ccbd4629a254465956bdf040b3e71c56da565ce844e763a2abf0337dc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_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.3-pp38-pypy38_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp38-pypy38_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7b67907d11c07734309113638ca022a7b720391930ff4e2370a3188b53bbd069
MD5 4b6c50e2efecaedb80282f51ef304edb
BLAKE2b-256 abeebf47941f219ddede60498d637a83553ac6ea0f4a771cfec0859d6c9a8f59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp38-pypy38_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-pp38-pypy38_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp38-pypy38_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d56c5b64e48eaa5abe3a68b6ca5800a310146a0d736ebbd345c5dd01eee1c122
MD5 180c4b2fd79bb010f6ad8daea00b01d0
BLAKE2b-256 58c9e78d0d7e7fb575f8abe8388d61bbbeed04e48deaf590cb8e89c84768cf6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-pp38-pypy38_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4069f38ef705f1d627c00a47a99d9f702d774bf5517485079be60348ab423f7
MD5 35a497f5ffa6d706e1897c3dbe9a2f88
BLAKE2b-256 327ec0a6cd3d201bfa493a7ddfb8c330db98d0994d85456678e64e91e1c846e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34449140900ec7d3fee6c0b48c018f1e49f9ea9b4b5624372530be204b184d08
MD5 0d0881b88780d7c4fdd8c718626f0e12
BLAKE2b-256 bf44cad5be55809b12dba277352de90c52e6953d04b827f36b06f8bb8179efda

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 f7537fa22ae56a0bf51e4b0ffc075926ad91c618e1416330939f7ef366b58e3b
MD5 13f5f99efc80f0fda7125a62d421521f
BLAKE2b-256 ea6d41faa414cde66ec023b0ca8402a8f11cb61731c3dc27c082909cbbd1f929

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy312-graalpy250_312_native-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.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b6b664758c804fa919b4f1257aa8cf68e95db76fc331de5f70bfc3a34655afe1
MD5 c3c25283a0bfcf6ab1e0c3f56d09defc
BLAKE2b-256 2d4c2a5258329200be57497d3972b5308558c6de42e3749c6cc2aa1cbe34b25a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_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.3-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5c29a582b0ea3936d02bd6fe9bf674ab6059e6e45ab71c78404ab2c913224414
MD5 782c870dba69c17a894eb81346e09752
BLAKE2b-256 fa8f43c3bb11ca9bacf81cb0b7a71500bb65b2eda6d5fe07433c09b543de97f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cde13c0764b1af07a631729f26df019070dad759981d6975527b7e8ecb465b6c
MD5 3ba85ea4affc57081e89ca24969fd697
BLAKE2b-256 1194f1a07402870388fdfc2ecec0c718111189732f7d0f2d7fe1386e19e8fad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy312-graalpy250_312_native-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.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2baaa092f3475f3a9c87ac5198023918ea8b6c125f4c930752ab2cbe3cd1d520
MD5 57ede5d8727c6709f8f3e2189edd2355
BLAKE2b-256 174592322aec1b6979e789b5710f73c59f2172bc37c8ce835305434796824b7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy312-graalpy250_312_native-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.3-graalpy311-graalpy242_311_native-win_amd64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 03cea70676ffbd39a1ab7930a2d24c625b416cacc9d401599b1d29415a43ab6a
MD5 bcd2dab543d0fe11edd493432ddff500
BLAKE2b-256 4f5b19c725dc3aaa6281f2ce3ea4c1628d154a40dd99657d1381995f8096768b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy311-graalpy242_311_native-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.3-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cae1a0f47784fd16df90d8acc32011c8d5fcdd9ab392c9ec49543e5f6a9c43a4
MD5 061302a3b618f19657a9e4109bb0203e
BLAKE2b-256 08862ba2d8734ef7939debeb52cf9952e457ba7aa226cae5c0e6dd631f9b851f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_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.3-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a492518f3078a4e3faaef310697d21df9c6bc71908cebc8c2f6fbfa16d7d6b1f
MD5 8d36444f9e677d549e0c3dcc7482e64d
BLAKE2b-256 bf44d4b7adc7bf4fd5b52d8d099121760c450a52c390223806b873f0b6a2d551

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f1a0c51d6f159511e3431b73c25db31095ee36c394e26a4349e067c62f434e5
MD5 b46e4f33ae2ee325bae792c864ef02de
BLAKE2b-256 c3caae7a96be9ddc96030d4e9dffc43635d4e136b12058b387fd47eb8301b60f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy311-graalpy242_311_native-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.3-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d27c1dfdb0c59a5e758e7a98bd78eaca5983c22f4a811a36f4f980d245df4611
MD5 5d20b3104177d6039a0b24a96fbb5a0e
BLAKE2b-256 b27c545fd4935a0e1ddd7147f557bf8157c73eecec9cffd523382fa7af2557de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-graalpy311-graalpy242_311_native-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.3-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pybase64-1.4.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e906aa08d4331e799400829e0f5e4177e76a3281e8a4bc82ba114c6b30e405c9
MD5 685dec999fe9ef5d992f14f68a3fec07
BLAKE2b-256 3b304a675864877397179b09b720ee5fcb1cf772cf7bebc831989aff0a5f79c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.4.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 36.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 57aff6f7f9dea6705afac9d706432049642de5b01080d3718acc23af87c5af76
MD5 fd1221a5a1285bb92524adfa23fa446e
BLAKE2b-256 56ceca8675f8d1352e245eb012bfc75429ee9cf1f21c3256b98d9a329d44bf0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pybase64-1.4.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 34.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 343b1901103cc72362fd1f842524e3bb24978e31aea7ff11e033af7f373f66ab
MD5 19b4c849c2787c2328a937b94e14f850
BLAKE2b-256 2886a236ecfc5b494e1e922da149689f690abc84248c7c1358f5605b8c9fdd60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ea99f56e45c469818b9781903be86ba4153769f007ba0655fa3b46dc332803d
MD5 81def44ae1771a487e4a9877733a7f11
BLAKE2b-256 9d9ecd4c727742345ad8384569a4466f1a1428f4e5cc94d9c2ab2f53d30be3fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f64ce70d89942a23602dee910dec9b48e5edf94351e1b378186b74fcc00d7f66
MD5 48e46b926ff3860a40c15db78ddfe6ea
BLAKE2b-256 03991fae8a3b7ac181e36f6e7864a62d42d5b1f4fa7edf408c6711e28fba6b4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d94020ef09f624d841aa9a3a6029df8cf65d60d7a6d5c8687579fa68bd679b65
MD5 744b2003141f6fe6fa0cbbb238984d21
BLAKE2b-256 bdb8f544a2e37c778d59208966d4ef19742a0be37c12fc8149ff34483c176616

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-musllinux_1_2_riscv64.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.3-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e99f6fa6509c037794da57f906ade271f52276c956d00f748e5b118462021d48
MD5 8af92e945cee078b17c55a71e44662ea
BLAKE2b-256 a663c15b1f8bd47ea48a5a2d52a4ec61f037062932ea6434ab916107b58e861e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 edc8446196f04b71d3af76c0bd1fe0a45066ac5bffecca88adb9626ee28c266f
MD5 e5c890372b78231d090dd8ec79937fdb
BLAKE2b-256 c4163d788388a178a0407aa814b976fe61bfa4af6760d9aac566e59da6e4a8b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60fc025437f9a7c2cc45e0c19ed68ed08ba672be2c5575fd9d98bdd8f01dd61f
MD5 40b73492b4e7a4e5f100daa0dab9ea8d
BLAKE2b-256 b421e2901381ed0df62e2308380f30d9c4d87d6b74e33a84faed3478d33a7197

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84cfd4d92668ef5766cc42a9c9474b88960ac2b860767e6e7be255c6fddbd34a
MD5 ab0205d46966ec60beba4b80db952920
BLAKE2b-256 2b159b6d711035e29b18b2e1c03d47f41396d803d06ef15b6c97f45b75f73f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d62e9861019ad63624b4a7914dff155af1cc5d6d79df3be14edcaedb5fdad6f9
MD5 f26154614b040898753cc1029b777e99
BLAKE2b-256 6e66b2b962a6a480dd5dae3029becf03ea1a650d326e39bf1c44ea3db78bb010

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-manylinux_2_31_riscv64.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.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 d9a5143df542c1ce5c1f423874b948c4d689b3f05ec571f8792286197a39ba02
MD5 255d27036eb4f527c83c12ed5fb2220d
BLAKE2b-256 3c1137bc724e42960f0106c2d33dc957dcec8f760c91a908cc6c0df7718bc1a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_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.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 afff11b331fdc27692fc75e85ae083340a35105cea1a3c4552139e2f0e0d174f
MD5 77a1d375688805af62589fe169a26b7a
BLAKE2b-256 156716c609b7a13d1d9fc87eca12ba2dce5e67f949eeaab61a41bddff843cbb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_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.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 9cf21ea8c70c61eddab3421fbfce061fac4f2fb21f7031383005a1efdb13d0b9
MD5 9ca3324304a519a41cb90ad82e2d7407
BLAKE2b-256 49b1d1e82bd58805bb5a3a662864800bab83a83a36ba56e7e3b1706c708002a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_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.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fb852f900e27ffc4ec1896817535a0fa19610ef8875a096b59f21d0aa42ff172
MD5 e4dfaf2300164f3baebbf342d4881657
BLAKE2b-256 bb5d71747d4ad7fe16df4c4c852bdbdeb1f2cf35677b48d7c34d3011a7a6ad3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_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.3-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1755b3dce3a2a5c7d17ff6d4115e8bee4a1d5aeae74469db02e47c8f477147da
MD5 4a9746d43da3e86f4dc9b5ef5607a4b3
BLAKE2b-256 4200f34b4d11278f8fdc68bc38f694a91492aa318f7c6f1bd7396197ac0f8b12

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a5ae04ea114c86eb1da1f6e18d75f19e3b5ae39cb1d8d3cd87c29751a6a22780
MD5 c40dba8ea8d914ee9d20ecee02488bf9
BLAKE2b-256 43048b15c34d3c2282f1c1b0850f1113a249401b618a382646a895170bc9b5e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7fe3decaa7c4a9e162327ec7bd81ce183d2b16f23c6d53b606649c6e0203e9e
MD5 2169aede0de2fcef7eb09ef058089ac5
BLAKE2b-256 eae510d2b3a4ad3a4850be2704a2f70cd9c0cf55725c8885679872d3bc846c67

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 153fe29be038948d9372c3e77ae7d1cab44e4ba7d9aaf6f064dbeea36e45b092
MD5 510894a5dfc0c6e3c63e3dd83c5cf051
BLAKE2b-256 acd86824c2e6fb45b8fa4e7d92e3c6805432d5edc7b855e3e8e1eedaaf6efb7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314t-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.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pybase64-1.4.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 31.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 62725669feb5acb186458da2f9353e88ae28ef66bb9c4c8d1568b12a790dfa94
MD5 a5b6e671a9cdb3788ffa6a8897a60a8d
BLAKE2b-256 9a1b2b8ffbe9a96eef7e3f6a5a7be75995eebfb6faaedc85b6da6b233e50c778

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pybase64-1.4.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 36.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 33338d3888700ff68c3dedfcd49f99bfc3b887570206130926791e26b316b029
MD5 87c7680bcabb33d738a350bb5c84911d
BLAKE2b-256 57bcce7427c12384adee115b347b287f8f3cf65860b824d74fe2c43e37e81c1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: pybase64-1.4.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 28b2a1bb0828c0595dc1ea3336305cd97ff85b01c00d81cfce4f92a95fb88f56
MD5 ba917053490758c174e83b9307b0388e
BLAKE2b-256 b9845a3dce8d7a0040a5c0c14f0fe1311cd8db872913fa04438071b26b0dac04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebff797a93c2345f22183f454fd8607a34d75eca5a3a4a969c1c75b304cee39d
MD5 73b671ad6fe915cccd4fcaad135841e0
BLAKE2b-256 852c29c9e6c9c82b72025f9676f9e82eb1fd2339ad038cbcbf8b9e2ac02798fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d01e102a12fb2e1ed3dc11611c2818448626637857ec3994a9cf4809dfd23477
MD5 0358b95e99f3de1c40d4a08f03308efc
BLAKE2b-256 a769659f3c8e6a5d7b753b9c42a4bd9c42892a0f10044e9c7351a4148d413a33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7ecd796f2ac0be7b73e7e4e232b8c16422014de3295d43e71d2b19fd4a4f5368
MD5 a8237ae8643f07daa8b6892984c963d6
BLAKE2b-256 deccceb949232dbbd3ec4ee0190d1df4361296beceee9840390a63df8bc31784

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-musllinux_1_2_riscv64.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.3-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 63316560a94ac449fe86cb8b9e0a13714c659417e92e26a5cbf085cd0a0c838d
MD5 747dd352e453f8c33b04b3d6a51aeb7d
BLAKE2b-256 699d7fb5566f669ac18b40aa5fc1c438e24df52b843c1bdc5da47d46d4c1c630

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce561724f6522907a66303aca27dce252d363fcd85884972d348f4403ba3011a
MD5 18b0cc0f947a2a10a65b4bc5c30501a3
BLAKE2b-256 0087fc6f11474a1de7e27cd2acbb8d0d7508bda3efa73dfe91c63f968728b2a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9058c49b5a2f3e691b9db21d37eb349e62540f9f5fc4beabf8cbe3c732bead86
MD5 786048994069797c441d0e61c249baf8
BLAKE2b-256 dbd50baa08e3d8119b15b588c39f0d39fd10472f0372e3c54ca44649cbefa256

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 448158d417139cb4851200e5fee62677ae51f56a865d50cda9e0d61bda91b116
MD5 46f40f3c5cb6a0840fe3d1b17285bee3
BLAKE2b-256 64e7c3c1d09c3d7ae79e3aa1358c6d912d6b85f29281e47aa94fc0122a415a2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ad15acf618880d99792d71e3905b0e2508e6e331b76a1b34212fa0f11e01ad28
MD5 8ccce9ca8fcc823bdb131d7f1340985d
BLAKE2b-256 009a5cc6ce95db2383d27ff4d790b8f8b46704d360d701ab77c4f655bcfaa6a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-manylinux_2_31_riscv64.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.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 8a7bc3cd23880bdca59758bcdd6f4ef0674f2393782763910a7466fab35ccb98
MD5 b2fd7719d40769ade08c7779f7683005
BLAKE2b-256 aad153286038e1f0df1cf58abcf4a4a91b0f74ab44539c2547b6c31001ddd054

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_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.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 2bc2d5bc15168f5c04c53bdfe5a1e543b2155f456ed1e16d7edce9ce73842021
MD5 490e2bfcc3812bfe918c2e35f5d59c63
BLAKE2b-256 b59ef3f4aa8cfe3357a3cdb0535b78eb032b671519d3ecc08c58c4c6b72b5a91

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_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.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 acb61f5ab72bec808eb0d4ce8b87ec9f38d7d750cb89b1371c35eb8052a29f11
MD5 2839ca78b4d35d0c76196e18c4bf2907
BLAKE2b-256 3b68733324e28068a89119af2921ce548e1c607cc5c17d354690fc51c302e326

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_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.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0932b0c5cfa617091fd74f17d24549ce5de3628791998c94ba57be808078eeaf
MD5 d678db109a3f3439b82fb9da6ea7f317
BLAKE2b-256 e3576743e420416c3ff1b004041c85eb0ebd9c50e9cf05624664bfa1dc8b5625

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_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.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 30f2fd53efecbdde4bdca73a872a68dcb0d1bf8a4560c70a3e7746df973e1ef3
MD5 44d83b1e60654048d42591d576c5e1f4
BLAKE2b-256 686d84ce50e7ee1ae79984d689e05a9937b2460d4efa1e5b202b46762fb9036c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b51204d349a4b208287a8aa5b5422be3baa88abf6cc8ff97ccbda34919bbc857
MD5 104f43c54006ba8822d71f9901d4a273
BLAKE2b-256 db26b136a4b65e5c94ff06217f7726478df3f31ab1c777c2c02cf698e748183f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83f1067f73fa5afbc3efc0565cecc6ed53260eccddef2ebe43a8ce2b99ea0e0a
MD5 366ed409b532371190bbaa670b374873
BLAKE2b-256 50eb27cb0b610d5cd70f5ad0d66c14ad21c04b8db930f7139818e8fbdc14df4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 720104fd7303d07bac302be0ff8f7f9f126f2f45c1edb4f48fdb0ff267e69fe1
MD5 04368c715635cedae1960abf57dc202d
BLAKE2b-256 4bd46c0e0cf0efd53c254173fbcd84a3d8fcbf5e0f66622473da425becec32a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-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.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a674b419de318d2ce54387dd62646731efa32b4b590907800f0bd40675c1771d
MD5 ebaeebfc251fcad7e797e99bb18091bf
BLAKE2b-256 9b3d9c27440031fea0d05146f8b70a460feb95d8b4e3d9ca8f45c972efb4c3d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.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.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 30bf3558e24dcce4da5248dcf6d73792adfcf4f504246967e9db155be4c439ad
MD5 168e490913938b0a08ac6c4cbd568131
BLAKE2b-256 243ed12f92a3c1f7c6ab5d53c155bff9f1084ba997a37a39a4f781ccba9455f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.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.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 8f183ac925a48046abe047360fe3a1b28327afb35309892132fe1915d62fb282
MD5 c982f076594dbacbd3799bd4de07b0a1
BLAKE2b-256 e371cf62b261d431857e8e054537a5c3c24caafa331de30daede7b2c6c558501

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-ios_13_0_arm64_iphoneos.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.3-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 d101e3a516f837c3dcc0e5a0b7db09582ebf99ed670865223123fb2e5839c6c0
MD5 61cd62079720ae8505a1938145188f7d
BLAKE2b-256 4560a94d94cc1e3057f602e0b483c9ebdaef40911d84a232647a2fe593ab77bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-android_24_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.3-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 015bb586a1ea1467f69d57427abe587469392215f59db14f1f5c39b52fdafaf5
MD5 aa862bb2eafc021468dca31d9c2ca8d0
BLAKE2b-256 e4804bd3dff423e5a91f667ca41982dc0b79495b90ec0c0f5d59aca513e50f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp314-cp314-android_24_arm64_v8a.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.3-cp313-cp313t-win_arm64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 28a3c60c55138e0028313f2eccd321fec3c4a0be75e57a8d3eb883730b1b0880
MD5 3e82c4a28f6233105f4a6896b0a62b4d
BLAKE2b-256 1f0595b902e8f567b4d4b41df768ccc438af618f8d111e54deaf57d2df46bd76

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-win_amd64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 d7344625591d281bec54e85cbfdab9e970f6219cac1570f2aa140b8c942ccb81
MD5 c248d5c712809392fbd1c4ddec800aa4
BLAKE2b-256 63a02d4e5a59188e9e6aed0903d580541aaea72dcbbab7bf50fb8b83b490b6c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-win32.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 46d75c9387f354c5172582a9eaae153b53a53afeb9c19fcf764ea7038be3bd8b
MD5 5edbf1b25a4e2a7afce899cca4b389a9
BLAKE2b-256 4210abb7757c330bb869ebb95dab0c57edf5961ffbd6c095c8209cbbf75d117d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f40b7ddd698fc1e13a4b64fbe405e4e0e1279e8197e37050e24154655f5f7c4e
MD5 5afec3388b472dc65e35263ee29ff1e0
BLAKE2b-256 92b2eaa67038916a48de12b16f4c384bcc1b84b7ec731b23613cb05f27673294

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5d8277554a12d3e3eed6180ebda62786bf9fc8d7bb1ee00244258f4a87ca8d20
MD5 5512009adc1c833e11826376a612db61
BLAKE2b-256 ce17c21d0cde2a6c766923ae388fc1f78291e1564b0d38c814b5ea8a0e5e081c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 242512a070817272865d37c8909059f43003b81da31f616bb0c391ceadffe067
MD5 fe2587c2a318ac9d3d1441f3f00df9dd
BLAKE2b-256 2c0b34d491e7f49c1dbdb322ea8da6adecda7c7cd70b6644557c6e4ca5c6f7c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313t-musllinux_1_2_riscv64.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.3-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bb06015db9151f0c66c10aae8e3603adab6b6cd7d1f7335a858161d92fc29618
MD5 4bca13c40867921131c60579e267ad88
BLAKE2b-256 a30d2bbc9e9c3fc12ba8a6e261482f03a544aca524f92eae0b4908c0a10ba481

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2860299e4c74315f5951f0cf3e72ba0f201c3356c8a68f95a3ab4e620baf44e9
MD5 c14e40f3e51814ab20b25a6fc1f2590c
BLAKE2b-256 d1316438cfcc3d3f0fa84d229fa125c243d5094e72628e525dfefadf3bcc6761

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ba7799ec88540acd9861b10551d24656ca3c2888ecf4dba2ee0a71544a8923f
MD5 0fd5f5e4c0b1c4f9bbf8e01c8f7c259c
BLAKE2b-256 b9ad8ae94814bf20159ea06310b742433e53d5820aa564c9fdf65bf2d79f8799

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e71a4db76726bf830b47477e7d830a75c01b2e9b01842e787a0836b0ba741e3
MD5 d5d53e8b95bd06146d964c41f07e64f1
BLAKE2b-256 e0f0578ee4ffce5818017de4fdf544e066c225bc435e73eb4793cde28a689d0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 86ee56ac7f2184ca10217ed1c655c1a060273e233e692e9086da29d1ae1768db
MD5 3a9c6e40f9acd813ecbf010cf55ef684
BLAKE2b-256 e4515381a7adf1f381bd184d33203692d3c57cf8ae9f250f380c3fecbdbe554b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313t-manylinux_2_31_riscv64.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.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 153a0e42329b92337664cfc356f2065248e6c9a1bd651bbcd6dcaf15145d3f06
MD5 1bbf27026b2720586c9279052f184651
BLAKE2b-256 a552af9d8d051652c3051862c442ec3861259c5cdb3fc69774bc701470bd2a59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_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.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 1bf749300382a6fd1f4f255b183146ef58f8e9cb2f44a077b3a9200dfb473a77
MD5 14a53e06dd6e54bfd908b6c18f4bf3cd
BLAKE2b-256 f1b8618a92915330cc9cba7880299b546a1d9dab1a21fd6c0292ee44a4fe608c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_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.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 b0bf8e884ee822ca7b1448eeb97fa131628fe0ff42f60cae9962789bd562727f
MD5 552e85dae58f5264c1bc580596e93cb5
BLAKE2b-256 6b08476ac5914c3b32e0274a2524fc74f01cbf4f4af4513d054e41574eb018f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_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.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 da1ee8fa04b283873de2d6e8fa5653e827f55b86bdf1a929c5367aaeb8d26f8a
MD5 79cb93aa625b2a3b12ab6e91dff9aa10
BLAKE2b-256 913b3e2f2b6e68e3d83ddb9fa799f3548fb7449765daec9bbd005a9fbe296d7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_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.3-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6fac217cd9de8581a854b0ac734c50fd1fa4b8d912396c1fc2fce7c230efe3a7
MD5 629a646d761e5eb349b20c41174772b8
BLAKE2b-256 0ab7fab2240da6f4e1ad46f71fa56ec577613cf5df9dce2d5b4cfaa4edd0e365

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2e745f2ce760c6cf04d8a72198ef892015ddb89f6ceba489e383518ecbdb13ab
MD5 5ac55871051d46c647b503e202cca4cb
BLAKE2b-256 46fccb64964c3b29b432f54d1bce5e7691d693e33bbf780555151969ffd95178

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a03ef3f529d85fd46b89971dfb00c634d53598d20ad8908fb7482955c710329d
MD5 78e951b001c9f69dc5d53fdf61071d89
BLAKE2b-256 7183343f446b4b7a7579bf6937d2d013d82f1a63057cf05558e391ab6039d7db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eb51db4a9c93215135dccd1895dca078e8785c357fabd983c9f9a769f08989a9
MD5 9586202d4b6f9199f4fa2c81734cca4a
BLAKE2b-256 dbc9e23463c1a2913686803ef76b1a5ae7e6fac868249a66e48253d17ad7232c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 860b86bca71e5f0237e2ab8b2d9c4c56681f3513b1bf3e2117290c1963488390
MD5 861b37deb39c08950f35ca89f081f26c
BLAKE2b-256 b40deec2a8214989c751bc7b4cad1860eb2c6abf466e76b77508c0f488c96a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8369887590f1646a5182ca2fb29252509da7ae31d4923dbb55d3e09da8cc4749
MD5 46284af8b7b55b62df2c768ac09ae2cc
BLAKE2b-256 b6ad0cea830a654eb08563fb8214150ef57546ece1cc421c09035f0e6b0b5ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b1623730c7892cf5ed0d6355e375416be6ef8d53ab9b284f50890443175c0ac3
MD5 77483d5c3c09e6a7d13b55b12de4b005
BLAKE2b-256 af510f5714af7aeef96e30f968e4371d75ad60558aaed3579d7c6c8f1c43c18a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72326fe163385ed3e1e806dd579d47fde5d8a59e51297a60fc4e6cbc1b4fc4ed
MD5 a37759950806ed3e55dde8a824de2fe9
BLAKE2b-256 5e96f252c8f9abd6ded3ef1ccd3cdbb8393a33798007f761b23df8de1a2480e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 88995d1460971ef80b13e3e007afbe4b27c62db0508bc7250a2ab0a0b4b91362
MD5 c479619153024f645ece76b35afa3c70
BLAKE2b-256 d0c7be63b617d284de46578a366da77ede39c8f8e815ed0d82c7c2acca560fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 937826bc7b6b95b594a45180e81dd4d99bd4dd4814a443170e399163f7ff3fb6
MD5 402c9060b6b558121eb0ef5ee0e448a2
BLAKE2b-256 1ab89f84bdc4f1c4f0052489396403c04be2f9266a66b70c776001eaf0d78c1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-musllinux_1_2_riscv64.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.3-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 12f4ee5e988bc5c0c1106b0d8fc37fb0508f12dab76bac1b098cb500d148da9d
MD5 6647838c70a6a05029010ffec378c8c2
BLAKE2b-256 a051b345139cd236be382f2d4d4453c21ee6299e14d2f759b668e23080f8663f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cf0218b0e2f7988cf7d738a73b6a1d14f3be6ce249d7c0f606e768366df2cce
MD5 243244ba89760e0bc8d46ec20d68b932
BLAKE2b-256 926cade2ba244c3f33ed920a7ed572ad772eb0b5f14480b72d629d0c9e739a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 119d31aa4b58b85a8ebd12b63c07681a138c08dfc2fe5383459d42238665d3eb
MD5 ee618144c6bee37a4900fe1158c71104
BLAKE2b-256 4375359532f9adb49c6b546cafc65c46ed75e2ccc220d514ba81c686fbd83965

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d5f18ed53dfa1d4cf8b39ee542fdda8e66d365940e11f1710989b3cf4a2ed66
MD5 afbf79d8f2ad5af4c583f0046cf71be6
BLAKE2b-256 a784f6368bcaf9f743732e002a9858646fd7a54f428490d427dd6847c5cfe89e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 f30ceb5fa4327809dede614be586efcbc55404406d71e1f902a6fdcf322b93b2
MD5 a8e8a3cd0d7e8c0e08cde597175746ec
BLAKE2b-256 9d7340431f37f7d1b3eab4673e7946ff1e8f5d6bd425ec257e834dae8a6fc7b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-manylinux_2_31_riscv64.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.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 1b62b9f2f291d94f5e0b76ab499790b7dcc78a009d4ceea0b0428770267484b6
MD5 0ef7792d0d5a7266e0ffe272b7944afb
BLAKE2b-256 23951613d2fb82dbb1548595ad4179f04e9a8451bfa18635efce18b631eabe3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_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.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 7e46400a6461187ccb52ed75b0045d937529e801a53a9cd770b350509f9e4d50
MD5 2f2592057f0ee7299a37209cc2bab0ba
BLAKE2b-256 cb65b592c7f921e51ca1aca3af5b0d201a98666d0a36b930ebb67e7c2ed27395

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_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.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 398685a76034e91485a28aeebcb49e64cd663212fd697b2497ac6dfc1df5e671
MD5 c778c71bb2c98a5e8e12b7ce5028ea52
BLAKE2b-256 6055e7f7bdcd0fd66e61dda08db158ffda5c89a306bbdaaf5a062fbe4e48f4a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_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.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e98310b7c43145221e7194ac9fa7fffc84763c87bfc5e2f59f9f92363475bdc1
MD5 b8221fa8dfe3bb38202d22f5c65066e3
BLAKE2b-256 0d314ca953cc3dcde2b3711d6bfd70a6f4ad2ca95a483c9698076ba605f1520f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_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.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ad70c26ba091d8f5167e9d4e1e86a0483a5414805cdb598a813db635bd3be8b8
MD5 936436f2586e035c2e50f7c4efbc64c9
BLAKE2b-256 f8cdd15b0c3e25e5859fab0416dc5b96d34d6bd2603c1c96a07bb2202b68ab92

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 1d45c8fe8fe82b65c36b227bb4a2cf623d9ada16bed602ce2d3e18c35285b72a
MD5 90cb37252050fb4fdf456c0cb975bf2d
BLAKE2b-256 1cc924b3b905cf75e23a9a4deaf203b35ffcb9f473ac0e6d8257f91a05dfce62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e48f86de1c145116ccf369a6e11720ce696c2ec02d285f440dfb57ceaa0a6cb4
MD5 084beba98ef347a7c86a335f7f3cffdf
BLAKE2b-256 80a9b806ed1dcc7aed2ea3dd4952286319e6f3a8b48615c8118f453948e01999

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2dc64a94a9d936b8e3449c66afabbaa521d3cc1a563d6bbaaa6ffa4535222e4b
MD5 8a978dd130a9edd51e51419419285dbb
BLAKE2b-256 56fee66fe373bce717c6858427670736d54297938dad61c5907517ab4106bd90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 874fc2a3777de6baf6aa921a7aa73b3be98295794bea31bd80568a963be30767
MD5 5d258f1c67a42bd8ee1c4b91779bffde
BLAKE2b-256 8270b5d7c5932bf64ee1ec5da859fbac981930b6a55d432a603986c7f509c838

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.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.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 2a8204f1fdfec5aa4184249b51296c0de95445869920c88123978304aad42df1
MD5 610cfe89b8aa123b0d4fb181861355c9
BLAKE2b-256 f779b1b550ac6bff51a4880bf6e089008b2e1ca16f2c98db5e039a08ac3ad157

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.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.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 27fdff227a0c0e182e0ba37a99109645188978b920dfb20d8b9c17eeee370d0d
MD5 fe6b6ea6006fdfb3eb2e4656fcd6e485
BLAKE2b-256 5c8d20b68f11adfc4c22230e034b65c71392e3e338b413bf713c8945bd2ccfb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-ios_13_0_arm64_iphoneos.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.3-cp313-cp313-android_21_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 6a10b6330188c3026a8b9c10e6b9b3f2e445779cf16a4c453d51a072241c65a2
MD5 3d00d547e1160840ce3b22d5aa4000a1
BLAKE2b-256 488b69f50578e49c25e0a26e3ee72c39884ff56363344b79fc3967f5af420ed6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-android_21_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.3-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 ea4b785b0607d11950b66ce7c328f452614aefc9c6d3c9c28bae795dc7f072e1
MD5 165af3f2e909043f5beba6373daa0c4f
BLAKE2b-256 3a50b7170cb2c631944388fe2519507fe3835a4054a6a12a43f43781dae82be1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp313-cp313-android_21_arm64_v8a.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.3-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0631d8a2d035de03aa9bded029b9513e1fee8ed80b7ddef6b8e9389ffc445da0
MD5 525d560000ffb6d689f39d759cfc448f
BLAKE2b-256 bc8a6eba66cd549a2fc74bb4425fd61b839ba0ab3022d3c401b8a8dc2cc00c7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9f2da8f56d9b891b18b4daf463a0640eae45a80af548ce435be86aa6eff3603b
MD5 17cd5444c0a6b97137aa6552c7b5371f
BLAKE2b-256 83e3507ab649d8c3512c258819c51d25c45d6e29d9ca33992593059e7b646a33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7bca1ed3a5df53305c629ca94276966272eda33c0d71f862d2d3d043f1e1b91a
MD5 e949a110b56c42ced3eeba71ee048ad6
BLAKE2b-256 752ea9e28941c6dab6f06e6d3f6783d3373044be9b0f9a9d3492c3d8d2260ac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b3365dbcbcdb0a294f0f50af0c0a16b27a232eddeeb0bceeefd844ef30d2a23
MD5 a7fc54693c57a0b89f058537c3a5c068
BLAKE2b-256 96972a2e57acf8f5c9258d22aba52e71f8050e167b29ed2ee1113677c1b600c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 72bb0b6bddadab26e1b069bb78e83092711a111a80a0d6b9edcb08199ad7299b
MD5 f4aead2b1ef8afe5f55360572835dd03
BLAKE2b-256 de5e537601e02cc01f27e9d75f440f1a6095b8df44fc28b1eef2cd739aea8cec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 66e3791f2ed725a46593f8bd2761ff37d01e2cdad065b1dceb89066f476e50c6
MD5 82cd3e15a9a8e42514d399e11e85ab09
BLAKE2b-256 fd7d931c2539b31a7b375e7d595b88401eeb5bd6c5ce1059c9123f9b608aaa14

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp312-cp312-musllinux_1_2_riscv64.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.3-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1c0efcf78f11cf866bed49caa7b97552bc4855a892f9cc2372abcd3ed0056f0d
MD5 343dca7fdcc4bce4c2350bd09995486a
BLAKE2b-256 d33a87c3201e555ed71f73e961a787241a2438c2bbb2ca8809c29ddf938a3157

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b33aeaa780caaa08ffda87fc584d5eab61e3d3bbb5d86ead02161dc0c20d04bc
MD5 3a979fe567e9c1bc0822ef939cda16b3
BLAKE2b-256 27fcafcda7445bebe0cbc38cafdd7813234cdd4fc5573ff067f1abf317bb0cec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e97b7bdbd62e71898cd542a6a9e320d9da754ff3ebd02cb802d69087ee94d468
MD5 73f60023b8b9b5edd13fda8b26887209
BLAKE2b-256 b48aa2588dfe24e1bbd742a554553778ab0d65fdf3d1c9a06d10b77047d142aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d468b1b1ac5ad84875a46eaa458663c3721e8be5f155ade356406848d3701f6
MD5 bb9105158ee5db67bc96b7d1079c4c22
BLAKE2b-256 e7be14e29d8e1a481dbff151324c96dd7b5d2688194bb65dc8a00ca0e1ad1e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 9a1792e8b830a92736dae58f0c386062eb038dfe8004fb03ba33b6083d89cd43
MD5 e3b7d37fee8b571d67f833ce6f2c8ae6
BLAKE2b-256 b10218515f211d7c046be32070709a8efeeef8a0203de4fd7521e6b56404731b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp312-cp312-manylinux_2_31_riscv64.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.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 53d0ffe1847b16b647c6413d34d1de08942b7724273dd57e67dcbdb10c574045
MD5 338aa7c5dcfd3ea998d3313a19909712
BLAKE2b-256 86e716e29721b86734b881d09b7e23dfd7c8408ad01a4f4c7525f3b1088e25ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_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.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 702bcaa16ae02139d881aeaef5b1c8ffb4a3fae062fe601d1e3835e10310a517
MD5 fee2012b95ac064e77e7c58c63f2c2fa
BLAKE2b-256 e7d44e04472fef485caa8f561d904d4d69210a8f8fc1608ea15ebd9012b92655

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_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.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 c48361f90db32bacaa5518419d4eb9066ba558013aaf0c7781620279ecddaeb9
MD5 14bd4e0cd820e33dcf9d5f59cc4a1dff
BLAKE2b-256 da5dc38d1572027fc601b62d7a407721688b04b4d065d60ca489912d6893e6cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_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.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 356ef1d74648ce997f5a777cf8f1aefecc1c0b4fe6201e0ef3ec8a08170e1b54
MD5 0658d18eb0339160d675ab6b09872ed1
BLAKE2b-256 034ba3b5175130b3810bbb8ccfa1edaadbd3afddb9992d877c8a1e2f274b476e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_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.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bb632edfd132b3eaf90c39c89aa314beec4e946e210099b57d40311f704e11d4
MD5 2f7ebdd2546ed7fb9996a7baf5f328f4
BLAKE2b-256 62f7965b79ff391ad208b50e412b5d3205ccce372a2d27b7218ae86d5295b105

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f0b3f200c3e06316f6bebabd458b4e4bcd4c2ca26af7c0c766614d91968dee27
MD5 85552e1ad8e5eb26739223b5b096edf4
BLAKE2b-256 431b9a8cab0042b464e9a876d5c65fe5127445a2436da36fda64899b119b1a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f5791a3491d116d0deaf4d83268f48792998519698f8751efb191eac84320e9
MD5 634ae44c36ba27f0d128b7eaf5240a21
BLAKE2b-256 dbc7c7ad35adff2d272bf2930132db2b3eea8c44bb1b1f64eb9b2b8e57cde7b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 18d85e5ab8b986bb32d8446aca6258ed80d1bafe3603c437690b352c648f5967
MD5 eb8d056dabea79fe4066fafd1f277f45
BLAKE2b-256 86a7efcaa564f091a2af7f18a83c1c4875b1437db56ba39540451dc85d56f653

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 61d87de5bc94d143622e94390ec3e11b9c1d4644fe9be3a81068ab0f91056f59
MD5 caac9e15083e06486c1e9878d9bb9d4c
BLAKE2b-256 da59eda4f9cb0cbce5a45f0cd06131e710674f8123a4d570772c5b9694f88559

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a90a8fa16a901fabf20de824d7acce07586e6127dc2333f1de05f73b1f848319
MD5 58da2afc4c6cb35c1ca8dc3db96f567a
BLAKE2b-256 39dc32efdf2f5927e5449cc341c266a1bbc5fecd5319a8807d9c5405f76e6d02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e9a8b81984e3c6fb1db9e1614341b0a2d98c0033d693d90c726677db1ffa3a4c
MD5 ba933cc5ce1b61fb60d344932205a5e2
BLAKE2b-256 5e2c8338b6d3da3c265002839e92af0a80d6db88385c313c73f103dfb800c857

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e504682b20c63c2b0c000e5f98a80ea867f8d97642e042a5a39818e44ba4d599
MD5 1b492dbc3553e910d0fffd4975b26a6a
BLAKE2b-256 1997a76d65c375a254e65b730c6f56bf528feca91305da32eceab8bcc08591e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0aebaa7f238caa0a0d373616016e2040c6c879ebce3ba7ab3c59029920f13640
MD5 dd48e886b1b68fee70fa3746de215a90
BLAKE2b-256 33394eb33ff35d173bfff4002e184ce8907f5d0a42d958d61cd9058ef3570179

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 11b9d1d2d32ec358c02214363b8fc3651f6be7dd84d880ecd597a6206a80e121
MD5 5c9104cdee75ff2f273261d58003623f
BLAKE2b-256 d5cb7acf7c3c06f9692093c07f109668725dc37fb9a3df0fa912b50add645195

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp311-cp311-musllinux_1_2_riscv64.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.3-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 62ad29a5026bb22cfcd1ca484ec34b0a5ced56ddba38ceecd9359b2818c9c4f9
MD5 bb2d22de16876924ff74ecb7d400a942
BLAKE2b-256 5db363cec68f9d6f6e4c0b438d14e5f1ef536a5fe63ce14b70733ac5e31d7ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a792a8b9d866ffa413c9687d9b611553203753987a3a582d68cbc51cf23da45
MD5 cf6da1763d3daae9bf8bcd3a7b374ffe
BLAKE2b-256 f2323c746d7a310b69bdd9df77ffc85c41b80bce00a774717596f869b0d4a20e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56e6526f8565642abc5f84338cc131ce298a8ccab696b19bdf76fa6d7dc592ef
MD5 70c9b9e118bc6142088cc740f20837f9
BLAKE2b-256 b073d7e19a63e795c13837f2356268d95dc79d1180e756f57ced742a1e52fdeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a23c6866551043f8b681a5e1e0d59469148b2920a3b4fc42b1275f25ea4217a
MD5 1345bee257e3c2633328f99dbbd0c28c
BLAKE2b-256 ac00e40215d25624012bf5b7416ca37f168cb75f6dd15acdb91ea1f2ea4dc4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 2f3f439fa4d7fde164ebbbb41968db7d66b064450ab6017c6c95cef0afa2b349
MD5 a9ba82317aa1544a37030e3c83b83f42
BLAKE2b-256 f9a485a6142b65b4df8625b337727aa81dc199642de3d09677804141df6ee312

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp311-cp311-manylinux_2_31_riscv64.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.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 c302f6ca7465262908131411226e02100f488f531bb5e64cb901aa3f439bccd9
MD5 27d37b8c76219b1efb7d8570cca33f46
BLAKE2b-256 c6f29338ffe2f487086f26a2c8ca175acb3baa86fce0a756ff5670a0822bb877

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_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.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 af5f4bd29c86b59bb4375e0491d16ec8a67548fa99c54763aaedaf0b4b5a6632
MD5 3f3eddeab0b638124940c3112b8262c4
BLAKE2b-256 8162379e347797cdea4ab686375945bc77ad8d039c688c0d4d0cfb09d247beb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_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.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 9fe9922698f3e2f72874b26890d53a051c431d942701bb3a37aae94da0b12107
MD5 a0cf22967f33a1d93033fcfa71382e4c
BLAKE2b-256 a9008ffcf9810bd23f3984698be161cf7edba656fd639b818039a7be1d6405d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_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.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7cd1c47dfceb9c7bd3de210fb4e65904053ed2d7c9dce6d107f041ff6fbd7e21
MD5 97ae88f8028c71ca0b5a4f230dc91e61
BLAKE2b-256 ac29a3e5c1667cc8c38d025a4636855de0fc117fc62e2afeb033a3c6f12c6a22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_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.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 95a57cccf106352a72ed8bc8198f6820b16cc7d55aa3867a16dea7011ae7c218
MD5 4cc36c95c4bd1ea01e4b44629309d5c3
BLAKE2b-256 64158d60b9ec5e658185fc2ee3333e01a6e30d717cf677b24f47cbb3a859d13c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f9ef0388878bc15a084bd9bf73ec1b2b4ee513d11009b1506375e10a7aae5032
MD5 bb3287a6fee38f59e0ee1de3046857bd
BLAKE2b-256 3cfbbb06a5b9885e7d853ac1e801c4d8abfdb4c8506deee33e53d55aa6690e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8127f110cdee7a70e576c5c9c1d4e17e92e76c191869085efbc50419f4ae3c72
MD5 6c33ec3465ab861631172ee2097ae4f7
BLAKE2b-256 92fb3f448e139516404d2a3963915cc10dc9dde7d3a67de4edba2f827adfef17

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70b0d4a4d54e216ce42c2655315378b8903933ecfa32fced453989a92b4317b2
MD5 e142afa34f277bd6da8a96a2f5aee39f
BLAKE2b-256 2b6321e981e9d3f1f123e0b0ee2130112b1956cad9752309f574862c7ae77c08

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f96367dfc82598569aa02b1103ebd419298293e59e1151abda2b41728703284b
MD5 2fa08453c5705521e463d57be572225c
BLAKE2b-256 abf2bdbe6af0bd4f3fe5bc70e77ead7f7d523bb9d3ca3ad50ac42b9adbb9ca14

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5db0b6bbda15110db2740c61970a8fda3bf9c93c3166a3f57f87c7865ed1125c
MD5 95edefc1cb0eb7e0808de2ec27259801
BLAKE2b-256 7928c169a769fe90128f16d394aad87b2096dd4bf2f035ae0927108a46b617df

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4bdd07ef017515204ee6eaab17e1ad05f83c0ccb5af8ae24a0fe6d9cb5bb0b7a
MD5 4231f9e5ccaac29b6eb33de77840055e
BLAKE2b-256 7595f987081bf6bc1d1eda3012dae1b06ad427732ef9933a632cb8b58f9917f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a6276bc3a3962d172a2b5aba544d89881c4037ea954517b86b00892c703d007
MD5 db51673ac34b8de611acaebc111190d5
BLAKE2b-256 b3c3243693771701a54e67ff5ccbf4c038344f429613f5643169a7befc51f007

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e6d7beaae65979fef250e25e66cf81c68a8f81910bcda1a2f43297ab486a7e4e
MD5 3c423ecb9dc4e274792bbf44552830ae
BLAKE2b-256 7b27f357d63ea3774c937fc47160e040419ed528827aa3d4306d5ec9826259c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 31b7a85c661fc591bbcce82fb8adaebe2941e6a83b08444b0957b77380452a4b
MD5 2f1cce2daea6dfe6c82b464dcaab88a3
BLAKE2b-256 b391dd15075bb2fe0086193e1cd4bad80a43652c38d8a572f9218d46ba721802

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp310-cp310-musllinux_1_2_riscv64.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.3-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 df8b122d5be2c96962231cc4831d9c2e1eae6736fb12850cec4356d8b06fe6f8
MD5 adfdd7b274e694fc8fde37504038b118
BLAKE2b-256 4c71774748eecc7fe23869b7e5df028e3c4c2efa16b506b83ea3fa035ea95dc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5eb588d35a04302ef6157d17db62354a787ac6f8b1585dd0b90c33d63a97a550
MD5 48582bb5b96e214ad4ba6417588c8b54
BLAKE2b-256 bad3f7e6680ae6dc4ddff39112ad66e0fa6b2ec346e73881bafc08498c560bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b591d774ac09d5eb73c156a03277cb271438fbd8042bae4109ff3a827cd218c
MD5 e8c299ae94d73f2aa95875a68b8e23f7
BLAKE2b-256 dc1ca341b050746658cbec8cab3c733aeb3ef52ce8f11e60d0d47adbdf729ebf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a74cc0f4d835400857cc5c6d27ec854f7949491e07a04e6d66e2137812831f4c
MD5 3f52513d373101611c9db2423b242814
BLAKE2b-256 a30f33aecbed312ee0431798a73fa25e00dedbffdd91389ee23121fed397c550

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d10d517566b748d3f25f6ac7162af779360c1c6426ad5f962927ee205990d27c
MD5 3c22d1c591bf69ec73920284d2961761
BLAKE2b-256 1f2484256d472400ea3163d7d69c44bb7e2e1027f0f1d4d20c47629a7dc4578e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp310-cp310-manylinux_2_31_riscv64.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.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 309ea32ad07639a485580af1be0ad447a434deb1924e76adced63ac2319cfe15
MD5 be7583b7844446d9349990100d7e6c71
BLAKE2b-256 2c8480acab1fcbaaae103e6b862ef5019192c8f2cd8758433595a202179a0d1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_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.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 634a000c5b3485ccc18bb9b244e0124f74b6fbc7f43eade815170237a7b34c64
MD5 0ff08c8e1939ea5c2a5faa66ea9b388a
BLAKE2b-256 7c9a7ab312b5a324833953b00e47b23eb4f83d45bd5c5c854b4b4e51b2a0cf5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_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.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 4ec645f32b50593879031e09158f8681a1db9f5df0f72af86b3969a1c5d1fa2b
MD5 6e47541129958ae15974e99f26071c39
BLAKE2b-256 42adf47dc7e6fe32022b176868b88b671a32dab389718c8ca905cab79280aaaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_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.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7528604cd69c538e1dbaafded46e9e4915a2adcd6f2a60fcef6390d87ca922ea
MD5 11ae212135f025ee16f4c6065d7b4735
BLAKE2b-256 77e17e59a19f8999cdefe9eb0d56bfd701dd38263b0f6fb4a4d29fce165a1b36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_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.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a6ec7e53dd09b0a8116ccf5c3265c7c7fce13c980747525be76902aef36a514a
MD5 e1669f4fe6c3d786d6447a4efade8415
BLAKE2b-256 1c22e89739d8bc9b96c68ead44b4eec42fe555683d9997e4ba65216d384920fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5f2b8aef86f35cd5894c13681faf433a1fffc5b2e76544dcb5416a514a1a8347
MD5 4fb3c3925b0d84ed679f3e9f3c7afeb5
BLAKE2b-256 80144365fa33222edcc46b6db4973f9e22bda82adfb6ab2a01afff591f1e41c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5943ec1ae87a8b4fe310905bb57205ea4330c75e2c628433a7d9dd52295b588
MD5 b3dfc611e2386be3d9941ffe771dd051
BLAKE2b-256 4d3e268beb8d2240ab55396af4d1b45d2494935982212549b92a5f5b57079bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f63aa7f29139b8a05ce5f97cdb7fad63d29071e5bdc8a638a343311fe996112a
MD5 74effc4ab613b45926ded11a0d111cb7
BLAKE2b-256 394716d7af6fae7803f4c691856bc0d8d433ccf30e106432e2ef7707ee19a38a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c9952e5db39d92af4eb3489bea4c056eb1845c75e12a0a964efa5e0bc008af82
MD5 2a3a2c9095fa82230303a6f28e31290d
BLAKE2b-256 002cd164972d65171cf59daa5aa3999c4db4f8acac613a84715176919ce2f332

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0a4d06bd824bd177ad92af56020a6412d8d8d62984501ad1887e8fa25927f494
MD5 66783f70e38c2a3aed46e150cd54a5e5
BLAKE2b-256 e1afaf4eb972cd3337fec339e792af1a119815f923d99df84e5b3fa0b5b0a530

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f580fe304370d39282ebad56ed50a8fd09d403b6b9ec3dc2cf840146353b9ce1
MD5 17e43ea5a7fab19a76ce22095a8b3a88
BLAKE2b-256 a572932718c6f088846036d4c48ffb9b021bf87768880358bbf2a64389abae1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73419589227b4797e9e2c0a823788689303011fec5810145f9df4d50fb9f4dc5
MD5 3eb69361f61a59a78b24c7ba9c69dfb8
BLAKE2b-256 31e529bbf20b7d303c4b4a7e2bd000578f3b191bd7a294ded6be4b8c9b346a02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 eb7445e703223d20f0a9f70bf3f6c1535cd758378f5d6246c09b19a9a0000a7b
MD5 f8548dfb01c754af959545970713ed2a
BLAKE2b-256 d41d2684c375e61b989776e32f3773b09862a3921aed060e69ff5ff97f508e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 48427e44db4f2d17a4bb028cea918b986f38a9e39ff40415c8aab39941105d94
MD5 77255cc44066e8a151780405cfb7382d
BLAKE2b-256 0efd07fd775820cfe73986635e8a8885df2d1ea4c3f8cb783e5693fec6aad33d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp39-cp39-musllinux_1_2_riscv64.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.3-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e355bfcf0a6e73ba0a269ae10c005b73effe285063472f5f3b9a53cf8f77234
MD5 c4ab29c502add80f3d2b4ed8f49919a1
BLAKE2b-256 c39c423640a8cc42f95129a408044ed0171f6d2f625fdc417b2b2fbd2110bbd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac588d49d516e5ae2d9c04a04a82abc3c585be08c900812f67bfa33dd885def1
MD5 23a7b2d459ff2c34651a8968ba0f669c
BLAKE2b-256 f4f13a3ff41145e15d6af74927dae1e13301a954d852223ab3a377211c4ce162

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bcc24d6b86a32f0d9ad8f49d6d8b18ea85ad54f1165cad46edbabf7bc10abe3
MD5 6084f3e754cd8da30f6c458aead86a0a
BLAKE2b-256 54ea3dfcce01efc835f7b11ff52e4b9ad78871d340b678d715c3380a92aabaeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70b1b69e3c47741c0d9ad09f7376346d3c81176c730d191a78f4bd6d630cffdc
MD5 0b842fe8e4f2491245b329e512f8f06b
BLAKE2b-256 5847547bd2f476c34f508699696f20f7dfe8fc40703a8ec89fb743d431982a51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 05662a4cc67f1f47b6489d8d030c6acbda9fafe22daaede69c5d8877ab8c42ea
MD5 8ecf89028e4e8f4fd79349509edfd41b
BLAKE2b-256 f5b20c3402ca3852241b7c3db1fbfa23fb28c54e7f934b24e1e5bf81801bae6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp39-cp39-manylinux_2_31_riscv64.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.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 52f02a6d8d6ed95252e8fb7119f86c04db9ba8b41cfd7f7269c86589fe3cc140
MD5 c6d958db858fb31308204f65f4e1f944
BLAKE2b-256 ca18407ac06981cb2471df8251cf841df0cdb7d5db8777a2d6b134994621d190

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_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.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 ebfdda08ad304e0692d605913d3320316e276feecc0665f51e6ca0953c949405
MD5 8fc5e965598d33fefe7a07b794a38df9
BLAKE2b-256 ab345676b611f485ed74d7f0c148972194d1186bac25669f09a1ef8f661c187c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_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.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 5a841003323d816939fc04b0aadc19c62c87bd2b1296b1633c5eac90c588f954
MD5 a36c89b394d3b92db6038a01bb17be5c
BLAKE2b-256 2cc62b9a678960877a56eedafd95cfbec9147c38e850788bbbafe93d96b6f812

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_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.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c403afede8defb8477f2ea24077a975a70c13a8ca516e1c02202047e20bff82a
MD5 09ead2e94df6045f34d8067c1d069373
BLAKE2b-256 37dee256b4e8b4ba2516657493794e8a728d6e9fe5d84d8b6df5b91bd049f595

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_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.3-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2cb70eb7fd2a25255bd53ddb7f1cb75d6d3a1864030cc997487708bd0a346cf2
MD5 22d210c7e6cd5dc26923b2ed56076a5f
BLAKE2b-256 d38881abed263fe689b6faab2cfb3903f4a415d93ae469f8392143e1184cf4a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 73ccb9b4c3eaf0c3f5f44f735ddadc2d8c0a574c7a6b95defe1139a3bd488f66
MD5 aa8e3442400fa19d0dd3f20eac8bf902
BLAKE2b-256 99353f2e53041932e220a76af0a550eef5900dff2f3257e3ed260deed1ebfa98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 574e952b4de4472f7394e4364570488e165223739ce58a51aaddd00ab78c0288
MD5 9032322cb6231da518f65dc496a72392
BLAKE2b-256 fee5fd2fd4c51b721a7a240ff17e06ceda64e7668d9b210473740aedefa679c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d85f6983784e5cdca595381864de463ae33e1902ea89748ff7f65b4ab3afd550
MD5 3eb70a3ff23c662dcc5e2f96b6d49b0b
BLAKE2b-256 37d7d854777d125b25c9380487284f6fcb294433f98bf097b826e30a3e3cad95

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fb68a3a7031096d01b13ece0b341f14073382f76dd302599fbe9c738981ce197
MD5 3e7150155ec08a09e654ba571b19572a
BLAKE2b-256 167b748ecc731ef2fce75e4af273a9edcc7d94c8f71c554e1743e41813d7f8ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 748ec7793b0e898353bd1b0f4939a353794f6eeba93175582a8a1e3cb82a1e05
MD5 575dde072fcd258687b8dd86c2ca9b29
BLAKE2b-256 7d84ed14519c05a8177b65338a5dd457867b6dc1bd4885aad7f9641299a1c18a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8d37e8b38360d2b5c11802c5ca3cdb1c27e1a40c8aed0b48a3efc74846e37a4
MD5 6f9b6be069fc8ce4acd1c17116d79dfb
BLAKE2b-256 2c25cf824b00c9466a2add712719fb05f186ba43b5efacd316d1d99b02552e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 82a83f315aa3c484375468368e42e097c1678133b519c45de8bf78d49b1e7aa1
MD5 eab85bfe4e269bc4c1175b85fe868989
BLAKE2b-256 9f87c61126e2dabfdd7ad814152c59a3488b9bbaf280bb136090947607df9abe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 950a19871daf418f25ed23ebc0f9a27ca7515f0946b0ccd733a7e83bf56e50a9
MD5 c8fb74a6b795fdb16bf7ba126f0fc3d4
BLAKE2b-256 0f7d82148fe6b393ca3c2242bb0befb5dd58b4af6af4ad3e47c4229a430c034f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp38-cp38-musllinux_1_2_riscv64.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.3-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 174229441be17a2fec6a0f0843ce06963b9320173d93358d75bdf81d10a56829
MD5 5fab028d4160c8ad462282d7438a36b2
BLAKE2b-256 83135b037f32bffcb941aacaa57547ba8d36e466f3205ff8db281d1a3e813f5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40fb652a55682535f8ab58b31b0b79a7051731de9284c5e7c90e8a9b45489142
MD5 5ef3a62f86915d6235edbc6d595567e2
BLAKE2b-256 8e4255200b36bf01255102c8f5b0acd4fb8d11753abeb5e9962f1a60291ad708

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2fbabe0a9da74d40214df61fd9212bea606b6c1bead38d3e39389b501a59a62d
MD5 f937d8750bc726a2a4c03a958e6a462a
BLAKE2b-256 57c39f7156f09cf50a670786860fa5bfd03f5891283580848aca13ec4f4e072f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cf83ca47d9bdd8047c18ee079e9042efe00d88ae25976e1855b543887753938
MD5 e5f83ab209cfd8b0c4cbf7780e7e0927
BLAKE2b-256 6a48099256ea7229d31f54c02cf2f2c4314850b53cce1f7aaee32bd68aff4dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 dc69fe1d917688ce84b8721fa61a5dbb7f5bf782e5e799303ff160db079f31f1
MD5 01a9221864723620bbcd0f6f6216da3e
BLAKE2b-256 62a22dda74da7fa8eab4c5598014acb1e72e77d693998e135cb7a1930fdd3dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp38-cp38-manylinux_2_31_riscv64.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.3-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 9656cb74c0a2534029d9171b532a3a13b1817d013e527ac6f350d95e388578b5
MD5 7ce6a44c4ada68d370652b805141328c
BLAKE2b-256 8a295dc9dbb18c4b7b9e3a92f05dfa264123d92cb7bf1810ad83f003e0137d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp38-cp38-manylinux2014_s390x.manylinux_2_17_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.3-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 4cdb324bbb06503ab2469ef1a7416e4d185eae1ac2f5201af40d4a94f171a1de
MD5 c7c2867dbd1d51513fc466968e63151e
BLAKE2b-256 54db3984eeec455d24564d4d127719bf63f1f6a50f101c3d3e91b3c3aaf70989

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_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.3-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 59266c5d8d2537720f2418d44554dc53cb0f42574df1141d4367304a2061a090
MD5 3f25565b553c09d25f43f32c6e8114d4
BLAKE2b-256 7e973952d0bfc3139a01635b5ef0c4838c348732d6a70a8eb338662aeec8c357

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_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.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0010219ba56b15695676801dcc09388e04bd9bcbedce15129643e84f3fca415f
MD5 6e9ecc798274c9e7a144f63748d46f97
BLAKE2b-256 e8841361947ede97f1f9f19dff873d30c3b8409278e5f62215a4fa1ae4a7dc05

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_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.3-cp38-cp38-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fa04f7d96fb70bb36e7a2f2f85b5febbac569d4f6033730a06b9d685dd69f406
MD5 501dba3f74281faae95efaedaa765020
BLAKE2b-256 41b09267522ea89acd3d850c2d2753f3289d7a617d31fbb17eadfdeb4a213bc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp38-cp38-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_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.3-cp38-cp38-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c19d940a241cdda3d379f66f15c8dd48969146ca669e7584473acb514d9ef8e9
MD5 55980e6fd418804ab888f1b531701f11
BLAKE2b-256 d0303444e00424f834e7285090097c2443201c6e5ebf394a2e1c07e78c405648

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-cp38-cp38-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_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.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc3fefa4ac57a030e1982b6fd2df71ae69460465227b057b90dadd53c60575ea
MD5 8a13675ec04264934bb42ee12fc57780
BLAKE2b-256 f14e4e415f0c2b2f1f655cef5d24bf8283eec27825885eabbeb44eb6fd137672

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybase64-1.4.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 389a302f02dabba34037b0792c81ef272d149bc58b84fec154029c737ad0d93a
MD5 82bda6f2e7e36913d0e85a8f18e12a84
BLAKE2b-256 c68045bed542e8578d882f96946e73a754a7b3783258771c3c40a0087e758418

See more details on using hashes here.

Provenance

The following attestation bundles were made for pybase64-1.4.3-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

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