Metadata-Version: 2.4
Name: ezencode
Version: 0.6
Summary: A simple text encoder: EZ Encode
Author-email: "Rayshawn Levy (sneekyfoxx)" <sneekyfoxx09@gmail.com>
Maintainer-email: "Rayshawn Levy (sneekyfoxx)" <sneekyfoxx09@gmail.com>
License-Expression: BSD-3-Clause
License-File: LICENSE
Keywords: EZ,decode,encode,ez,ezencode
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.13
Description-Content-Type: text/markdown

> **EZ Encode** is a simple custom encoder that has and
> *two* layer encoding mechanism which makes it a bit more secure.
> Though, the conecpt could be improved upon it really works well.

#### *Example*:

```python
# import the ezencode classe
from ezencode import ezencode

# Generate some text to encode
text = "Hello, world! The encoder and decoder really works. \n\n"

# Encode the text
encoded = ezencode(text).encode()    # encode and store the encoded text

# Decode the text
decoded = ezencode(encoded).decode() # decode and store the decoded text

print("Encoded: ", encoded, end="\n")  # print the encoded text
print("Decoded: ", decoded, end="\n")  # print the decoded text
```
