Metadata-Version: 2.1
Name: is_base_64
Version: 0.0.1
Summary: Simple library for check the string is base64
Project-URL: Homepage, https://github.com/juunini/is-base-64-py
Project-URL: Bug Tracker, https://github.com/juunini/is-base-64-py/issues
Author-email: juunini <juuni.ni.i@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

<div align="center">

# is-base-64

![python](https://img.shields.io/badge/Python-FFD43B?style=for-the-badge&logo=python&logoColor=blue)
![pypi](https://img.shields.io/badge/pypi-3775A9?style=for-the-badge&logo=pypi&logoColor=white)

</div>

## Installation

```bash
pip install is-base-64-py
```

## Usage

```python
from is_base_64 import is_base_64

is_base_64('aGVsbG8gd29ybGQ=') # True
is_base_64('this is not a base64 string') # False
```
