Metadata-Version: 2.1
Name: btoa
Version: 1.0.1
Summary: Python implementation btoa and atob functions from javascript
Author-email: LazyDeus <dimaprodeus@yandex.ru>
Project-URL: Homepage, https://github.com/Demetrous-fd/btoa
Project-URL: Bug Tracker, https://github.com/Demetrous-fd/btoa/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown


### Install
```shell
pip install btoa
```

### Example
```python
from btoa import btoa, atob

assert btoa("Hello World!") == "SGVsbG8gV29ybGQh"
assert atob("SGVsbG8gV29ybGQh") == "Hello World!"
```
