Metadata-Version: 2.4
Name: Codexify
Version: 0.1.0
Summary: Text-to-coded transformation library
Author: maksalmaz
Author-email: maksalmaz <maksalmaz15@gmail.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: requires-python

# Codexify

Codexify is a lightweight Python library for transforming text into a custom encoded form.  
It applies a simple character-shifting algorithm to letters and digits while keeping all other symbols unchanged.

This library is intended for simple text encoding, experiments, or as a foundation for custom cipher logic.

---

## Usage example

from Codexify import Converter

converter = Converter()

text = "hello world"

encoded = converter.convert_text(text)

print(encoded)

---

- Encodes letters by shifting them to the next character  
- Encodes digits in the same way  
- Other characters remain unchanged  
- Simple API  
- No dependencies  
- Works on Python 3.7+

---

## Installation

```bash
pip install Codexify
