Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guyskk/base32j
Base32 without padding
https://github.com/guyskk/base32j
Last synced: 29 days ago
JSON representation
Base32 without padding
- Host: GitHub
- URL: https://github.com/guyskk/base32j
- Owner: guyskk
- License: mit
- Created: 2021-03-21T07:13:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-03-21T07:14:11.000Z (over 3 years ago)
- Last Synced: 2024-09-24T09:18:23.353Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
```