Metadata-Version: 2.1
Name: devtools-base64
Version: 1.0.0
Summary: Base64 encoder/decoder with UTF-8 support
Home-page: https://devtools.at/tools/base64
Author: DevTools.at
Author-email: hello@devtools.at
Project-URL: Homepage, https://devtools.at/tools/base64
Project-URL: Repository, https://github.com/nicokant/base64
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Base64 Encoder/Decoder

Base64 encoder/decoder with UTF-8 support.

## Online Tool

Use this tool online at **[DevTools.at](https://devtools.at/tools/base64)** - Free, fast, and no registration required!

## Installation

```bash
pip install devtools-base64
```

## Usage

```python
from devtools_base64 import encode, decode

# Encode
encoded = encode("Hello, World!")
print(encoded)  # SGVsbG8sIFdvcmxkIQ==

# Decode
decoded = decode("SGVsbG8sIFdvcmxkIQ==")
print(decoded)  # Hello, World!
```

## License

MIT License

---

Made with love by [DevTools.at](https://devtools.at)
