Metadata-Version: 2.4
Name: b64-cli-tool
Version: 0.1.1
Summary: CLI tool for base64 encoding and decoding.
License: MIT
Project-URL: Homepage, https://github.com/atlanmatrix/b64-cli-tool
Keywords: base64,cli,encoding,decoding
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0.0
Dynamic: license-file

## b64 CLI

Simple CLI for base64 encoding and decoding.

### Install

```bash
pip install b64-cli-tool
```

### Usage

Decode:

```bash
b64 -d SGVsbG8=
```

Encode:

```bash
b64 -e "Hello"
```
