Metadata-Version: 2.4
Name: ascii2ext_ascii
Version: 0.1.2
Summary: Turn your text into cursed trademarks. -> Ôõòî ùïõò ôåøô éîôï ãõòóåä ôòáäåíáòëó®
Project-URL: Homepage, http://185.68.244.71/dima/ascii2ext_ascii
Project-URL: Repository, http://185.68.244.71/dima/ascii2ext_ascii.git
Project-URL: Issues, http://185.68.244.71/dima/ascii2ext_ascii/issues
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: typer

# ASCII 2 Extended ASCII

python package with a cli that gives you cursed trademarks for your perfectly fine text.

## How to use

### As a module:

assuming you already have it installed, here's a test code snippet:

```python
import ascii2ext_ascii

cursed = ascii2ext_ascii.to_extended("The quick brown fox jumps over the lazy dog.")
print(cursed)

# Output: Ôèå ñõéãë âòï÷î æïø êõíðó ïöåò ôèå ìáúù äïç®
```

or, backwards:

```python
import ascii2ext_ascii

normal = ascii2ext_ascii.to_ascii("Ôèå ñõéãë âòï÷î æïø êõíðó ïöåò ôèå ìáúù äïç®")
print(normal)

# Output: The quick brown fox jumps over the lazy dog.
```

## As a CLI:

```bash
ascii-toggle "The quick brown fox jumps over the lazy dog."
# Output: Ôèå ñõéãë âòï÷î æïø êõíðó ïöåò ôèå ìáúù äïç®
```

backwards:

```bash
ascii-toggle "Ôèå ñõéãë âòï÷î æïø êõíðó ïöåò ôèå ìáúù äïç®"
# Output: The quick brown fox jumps over the lazy dog.
```
