Metadata-Version: 2.4
Name: xzy
Version: 2.1.0
Summary: Encoding, decoding, and utility tools by XZY Developments
Author: XZY Developments
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# XZY
Encoding, decoding, and utility tools by XZY.

## Installation
```bash
pip install xzy
```

## Usage
```python
from xzy import encode, decode

text = "Hello\nWorld"
encoded = encode(text)
print(encoded)
decoded = decode(encoded)
print(decoded)
```

## Example Output
```text
%5%x0xx1xx1xx16x&&%3%x16xx20xx1xx14x
Hello
World
```

## Features
- Encode/decode text (supports letters, digits, punctuation, capitals, newlines)
- Caesar cipher (`caesar` / `decaesar`)
- Text cleaning (`clean`)
- Secure random string generation (`randomstring`)
- Word/character counting (`word.count` / `char.count`)
- Text reversal (`text.reverse`)
- File encode/decode (`encodefile` / `decodefile`)
- Lightweight, no dependencies beyond the standard library

## Author
XZY Developments
