Metadata-Version: 2.1
Name: myln
Version: 0.1.0
Summary: A simple text compression package for Python.
Home-page: https://github.com/elder-plinius/MYLN
Author: Pliny
Author-email: plinius8@proton.me
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Myln Compression Package

A simple Python package for compressing text by removing non-essential vowels and applying common abbreviations.

## Installation

Install the package using pip:

```bash
pip install myln-compression
```

## Usage

To use the text compression functionality, import the `MylnCompressor` from the package and use the `compress_text` method:

```python
from myln_compression import MylnCompressor

input_text = "This is a test message, to see how as soon as possible can be compressed."
compressed_text = MylnCompressor.compress_text(input_text)
print(compressed_text)
```

## Features

- Removes vowels from non-essential words longer than three characters.
- Applies common abbreviations to reduce text length.
- Easy integration into existing Python projects.

## Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.
