Metadata-Version: 2.1
Name: cryptly
Version: 0.1.1
Summary: A Python library implementing common encryption and cipher techniques, providing easy-to-use functions for encryption and decryption.
Author-email: Ubaid Ur Rehman <rehmanubaid2003@gmail.com>
Project-URL: Homepage, https://github.com/ubaidrmn/cryptly
Project-URL: Issues, https://github.com/ubaidrmn/cryptly/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE

# Cryptly

**Cryptly** is a Python library implementing common encryption and cipher techniques. It provides easy-to-use functions for both encryption and decryption.

## Installation

You can install **Cryptly** using pip:

```bash
pip install cryptly
```

## Features

- Implementations of various encryption algorithms.
- Simple API for encryption and decryption.
- Supports custom alphabets.

## Usage

Here’s a quick example of how to use Cryptly:

```python
import string
from cryptly import AffineCipher

cipher = AffineCipher(key_1=5, key_2=24, alphabet=string.ascii_lowercase)
encrypted = cipher.encrypt("hello")
print(encrypted)
```

## Contribute

Contributions are welcome! If you have suggestions for improvements or new features, please fork the repository and submit a pull request.

## License

This project is licensed under the MIT License - see the LICENSE file for details.
