Metadata-Version: 2.4
Name: pyencryptor-tool
Version: 0.3.1
Summary: Encrypt text and files with character scrambling
Author: The-coder
Description-Content-Type: text/markdown
Requires-Dist: termcolor
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: summary

# pyencryptor

Encrypt text and files by scrambling characters into unreadable symbols.

## Installation

pip install pyencryptor-tool

## Usage
```python
from pyencryptor import encrypt_text, encrypt_file

# Encrypt text and save to file
encrypt_text("Hello World", "secret.txt")

# Encrypt an existing file
encrypt_file("myfile.txt")
