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

https://github.com/mezantrop/base64

A very simple Base64 encoder/decoder for learning purposes
https://github.com/mezantrop/base64

base64 python

Last synced: 7 months ago
JSON representation

A very simple Base64 encoder/decoder for learning purposes

Awesome Lists containing this project

README

          

# A very simple Base64 encoder/decoder in Python for learning purposes

Buy Me A Coffee

Almost the same, but in [C](https://github.com/mezantrop/ts-warp/blob/master/base64.c)

## Usage

```Python3

import Base64

print(Base64.Base64().encode('Many hands make light work.'))
TWFueSBoYW5kcyBtYWtlIGxpZ2h0IHdvcmsu
print(Base64.Base64().decode('TWFueSBoYW5kcyBtYWtlIGxpZ2h0IHdvcmsu'))
'Many hands make light work.'
```