Skip to main content

Python library for general Base-N encodings.

Project description

bases: a Python library for general Base-N encodings.

Generic badge PyPI version shields.io PyPI status Checked with Mypy Python package standard-readme compliant

Table of Contents

Install

You can install this package with pip:

pip install bases

Usage

The core functionality of the library is performed by the encode and decode methods of base encodings, instances of BaseEncoding (or, more precisely, of its concrete subclasses).

Common encodings are associated to pre-defined constants:

>>> from bases import base32
>>> base32
FixcharBaseEncoding(
    StringAlphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZ234567',
                   case_sensitive=False),
    pad_char='=', padding='include')

The encode method can be used to encode bytestrings into strings:

>>> b = bytes([70, 98, 190, 187, 66, 224, 178])
>>> base32.encode(b)
'IZRL5O2C4CZA===='

The decode method can be used to decode strings into bytestrings:

>>> s = 'IZRL5O2C4CZA===='
>>> base32.decode(s)
b'Fb\xbe\xbbB\xe0\xb2'
>>> list(base32.decode(s))
[70, 98, 190, 187, 66, 224, 178]

The get(name), has(name), make(...) and table(prefix="") functions provide an interface for the programmatic management of encodings. The get(name) function can be used to obtain an existing encoding by name:

>>> import bases
>>> bases.get("base32")
FixcharBaseEncoding(
    StringAlphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZ234567',
                   case_sensitive=False),
    pad_char='=', padding='include')

The make(...) function can be used to create a new encoding from a given alphabet, encoding kind and options:

>>> bases.make("0123", kind="zeropad-enc", block_nchars=4, name="base4")
ZeropadBaseEncoding(StringAlphabet('0123'), block_nchars=4)

The optional keyword argument name can be used to register with the library for future retrieval. The has(name) function can be used to check whether an encoding exists by a given name:

>>> bases.has("base4")
True

The table(prefix="") function can be used to iterate through the existing encoding, optionally filtering by name prefix:

>>> dict(bases.table(prefix="base32"))
{'base32':      FixcharBaseEncoding(
                    StringAlphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZ234567',
                                   case_sensitive=False),
                    pad_char='=', padding='include'),
 'base32hex':   FixcharBaseEncoding(
                    StringAlphabet('0123456789ABCDEFGHIJKLMNOPQRSTUV',
                                   case_sensitive=False),
                    pad_char='=', padding='include'),
 'base32z':     FixcharBaseEncoding(
                    StringAlphabet('ybndrfg8ejkmcpqxot1uwisza345h769',
                                   case_sensitive=False))
}

For further information, please refer to the API documentation.

API

The API documentation for this package is automatically generated by pdoc.

Contributing

Please see the contributing file.

License

MIT © Hashberg Ltd.

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

bases-0.2.0.post1.tar.gz (115.3 kB view details)

Uploaded Source

Built Distribution

bases-0.2.0.post1-py3-none-any.whl (34.1 kB view details)

Uploaded Python 3

File details

Details for the file bases-0.2.0.post1.tar.gz.

File metadata

  • Download URL: bases-0.2.0.post1.tar.gz
  • Upload date:
  • Size: 115.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.7

File hashes

Hashes for bases-0.2.0.post1.tar.gz
Algorithm Hash digest
SHA256 c1290ace9f9565648f754c6dd972fd7aec095e00af6857e96a8929ac51fffb11
MD5 1ce9b89699dfb1d75faf4851a9956c7f
BLAKE2b-256 441623ef2fe5f5261f7b560b1e98889e5dabbd19caf847702eb0ba267256adb8

See more details on using hashes here.

File details

Details for the file bases-0.2.0.post1-py3-none-any.whl.

File metadata

  • Download URL: bases-0.2.0.post1-py3-none-any.whl
  • Upload date:
  • Size: 34.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.7

File hashes

Hashes for bases-0.2.0.post1-py3-none-any.whl
Algorithm Hash digest
SHA256 d27d6516bb0b38085a372df0409694c83078bf5f7bfef78f68d57ece527be72d
MD5 d39bdb8ccafbd583b1a1cd339da7d3f2
BLAKE2b-256 0f49e13efb525c022a1f5449d05a7fcead90b5a4b9a5dd247d0ad137b9ab8935

See more details on using hashes here.

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