Skip to main content

Fast Base64 encoding/decoding

Project description

Fast Base64 implementation

license-status pypi-status Documentation Status travis-status appveyor-status codecov-status

This project is a wrapper on libbase64.

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

Installation

pip install pybase64

Usage

pybase64 uses the same API as Python base64 “modern interface” (introduced in Python 2.4) for an easy integration.

To get the fastest decoding, it is recommended to use the pybase64.b64decode and validate=True when possible.

import pybase64

print(pybase64.b64encode(b'>>>foo???', altchars='_:'))
# b'Pj4_Zm9vPz8:'
print(pybase64.b64decode(b'Pj4_Zm9vPz8:', altchars='_:', validate=True))
# b'>>>foo???'

# Standard encoding helpers
print(pybase64.standard_b64encode(b'>>>foo???'))
# b'Pj4+Zm9vPz8/'
print(pybase64.standard_b64decode(b'Pj4+Zm9vPz8/'))
# b'>>>foo???'

# URL safe encoding helpers
print(pybase64.urlsafe_b64encode(b'>>>foo???'))
# b'Pj4-Zm9vPz8_'
print(pybase64.urlsafe_b64decode(b'Pj4-Zm9vPz8_'))
# b'>>>foo???'

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

usage: pybase64 [-h] [-V] {benchmark,encode,decode} ...

pybase64 command-line tool.

positional arguments:
  {benchmark,encode,decode}
                        tool help
    benchmark           -h for usage
    encode              -h for usage
    decode              -h for usage

optional arguments:
  -h, --help            show this help message and exit
  -V, --version         show program's version number and exit

Full documentation on Read the Docs.

Benchmark

Running Python 3.6.0, Apple LLVM version 9.1.0 (clang-902.0.39.1), Mac OS X 10.13.3 on an Intel Core i7-4870HQ @ 2.50GHz

pybase64 0.3.0 (C extension active - AVX2)
bench: altchars=None, validate=False
pybase64._pybase64.encodebytes:   1671.633 MB/s (13,271,472 bytes -> 17,928,129 bytes)
pybase64._pybase64.b64encode:     3355.630 MB/s (13,271,472 bytes -> 17,695,296 bytes)
pybase64._pybase64.b64decode:      313.357 MB/s (17,695,296 bytes -> 13,271,472 bytes)
base64.encodebytes:                 84.229 MB/s (13,271,472 bytes -> 17,928,129 bytes)
base64.b64encode:                  594.513 MB/s (13,271,472 bytes -> 17,695,296 bytes)
base64.b64decode:                  316.510 MB/s (17,695,296 bytes -> 13,271,472 bytes)
bench: altchars=None, validate=True
pybase64._pybase64.b64encode:     3447.100 MB/s (13,271,472 bytes -> 17,695,296 bytes)
pybase64._pybase64.b64decode:     3513.827 MB/s (17,695,296 bytes -> 13,271,472 bytes)
base64.b64encode:                  592.162 MB/s (13,271,472 bytes -> 17,695,296 bytes)
base64.b64decode:                  103.155 MB/s (17,695,296 bytes -> 13,271,472 bytes)
bench: altchars=b'-_', validate=False
pybase64._pybase64.b64encode:     2440.743 MB/s (13,271,472 bytes -> 17,695,296 bytes)
pybase64._pybase64.b64decode:      285.376 MB/s (17,695,296 bytes -> 13,271,472 bytes)
base64.b64encode:                  344.905 MB/s (13,271,472 bytes -> 17,695,296 bytes)
base64.b64decode:                  224.162 MB/s (17,695,296 bytes -> 13,271,472 bytes)
bench: altchars=b'-_', validate=True
pybase64._pybase64.b64encode:     2566.995 MB/s (13,271,472 bytes -> 17,695,296 bytes)
pybase64._pybase64.b64decode:     2522.613 MB/s (17,695,296 bytes -> 13,271,472 bytes)
base64.b64encode:                  342.011 MB/s (13,271,472 bytes -> 17,695,296 bytes)
base64.b64decode:                   89.865 MB/s (17,695,296 bytes -> 13,271,472 bytes)

Changelog

0.3.0

  • Add encodebytes function

0.2.1

  • Fixed invalid results on Windows

0.2.0

  • Added documentation

  • Added subcommands to the main script:

    • help

    • version

    • encode

    • decode

    • benchmark

0.1.2

  • Updated base64 native library

0.1.1

  • Fixed deployment issues

0.1.0

  • First public release

Project details


Download files

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

Source Distribution

pybase64-0.3.0.tar.gz (80.0 kB view hashes)

Uploaded Source

Built Distributions

pybase64-0.3.0-cp36-cp36m-win_amd64.whl (28.6 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

pybase64-0.3.0-cp36-cp36m-win32.whl (26.6 kB view hashes)

Uploaded CPython 3.6m Windows x86

pybase64-0.3.0-cp36-cp36m-manylinux1_x86_64.whl (64.1 kB view hashes)

Uploaded CPython 3.6m

pybase64-0.3.0-cp36-cp36m-manylinux1_i686.whl (60.0 kB view hashes)

Uploaded CPython 3.6m

pybase64-0.3.0-cp36-cp36m-macosx_10_6_intel.whl (39.1 kB view hashes)

Uploaded CPython 3.6m macOS 10.6+ intel

pybase64-0.3.0-cp35-cp35m-win_amd64.whl (28.6 kB view hashes)

Uploaded CPython 3.5m Windows x86-64

pybase64-0.3.0-cp35-cp35m-win32.whl (26.6 kB view hashes)

Uploaded CPython 3.5m Windows x86

pybase64-0.3.0-cp35-cp35m-manylinux1_x86_64.whl (64.1 kB view hashes)

Uploaded CPython 3.5m

pybase64-0.3.0-cp35-cp35m-manylinux1_i686.whl (60.0 kB view hashes)

Uploaded CPython 3.5m

pybase64-0.3.0-cp35-cp35m-macosx_10_6_intel.whl (39.1 kB view hashes)

Uploaded CPython 3.5m macOS 10.6+ intel

pybase64-0.3.0-cp34-cp34m-manylinux1_x86_64.whl (64.0 kB view hashes)

Uploaded CPython 3.4m

pybase64-0.3.0-cp34-cp34m-manylinux1_i686.whl (59.8 kB view hashes)

Uploaded CPython 3.4m

pybase64-0.3.0-cp34-cp34m-macosx_10_6_intel.whl (39.0 kB view hashes)

Uploaded CPython 3.4m macOS 10.6+ intel

pybase64-0.3.0-cp33-cp33m-manylinux1_x86_64.whl (63.5 kB view hashes)

Uploaded CPython 3.3m

pybase64-0.3.0-cp33-cp33m-manylinux1_i686.whl (59.4 kB view hashes)

Uploaded CPython 3.3m

pybase64-0.3.0-cp27-cp27mu-manylinux1_x86_64.whl (63.4 kB view hashes)

Uploaded CPython 2.7mu

pybase64-0.3.0-cp27-cp27mu-manylinux1_i686.whl (59.2 kB view hashes)

Uploaded CPython 2.7mu

pybase64-0.3.0-cp27-cp27m-manylinux1_x86_64.whl (63.4 kB view hashes)

Uploaded CPython 2.7m

pybase64-0.3.0-cp27-cp27m-manylinux1_i686.whl (59.2 kB view hashes)

Uploaded CPython 2.7m

pybase64-0.3.0-cp27-cp27m-macosx_10_6_intel.whl (39.0 kB view hashes)

Uploaded CPython 2.7m macOS 10.6+ intel

Supported by

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