Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/guyskk/base32j

Base32 without padding
https://github.com/guyskk/base32j

Last synced: 29 days ago
JSON representation

Base32 without padding

Awesome Lists containing this project

README

        

## Base32j

Base32 exclude letter `i j l o`, without padding.
Alphabet: `0123456789abcdefghkmnpqrstuvwxyz`

```bash
pip install base32j
```

Note: Implementation is copy from Python `base64.py`

## Usage

```python
>>> import base32j
>>> s = base32j.encode(b'hello world')
>>> s
'd1kqsv3f41vqywmccg'
>>> base32j.decode(s)
b'hello world'
```