Metadata-Version: 2.4
Name: mencryptor-dcryptor
Version: 0.1.0
Summary: Custom Python code encryptor and decryptor using defined character mappings. Made by Yeahya Hamza
Home-page: https://github.com/#/mencryptor-dcryptor
Author: manik121
Author-email: yhmanik789@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# mencryptor-dcryptor

A Python module to encrypt and decrypt code or text using custom character-to-number mapping.

## Installation
```bash
pip install mencryptor-dcryptor
```

## Usage
```python
from mencryptor_dcryptor import encrypt, decrypt

text = "def add(a, b): return a + b"
encrypted = encrypt(text)
print(encrypted)

decrypted = decrypt(encrypted)
print(decrypted)
```
