Metadata-Version: 2.1
Name: shifrator
Version: 2.0.0
Summary: This is encoder for your text.
Home-page: https://discord.gg/hbB4WBdshf
Author: harryys
Author-email: gniceso225@gmail.com
Project-URL: GitHub, https://github.com/gnice225
Keywords: files speedfiles
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

## What is this ? ##

Python library for text encryption.

```python
from shifrator.main import Shifrator 

sh = Shifrator()
print(sh.encrypt('Hello World!', 'test111'))
```

output: `WtР°Р°Рі РљРіС‘Р°s!`

```python
from shifrator.main import Shifrator 

sh = Shifrator()
print(sh.decrypt('Ifmmp Xpsme!', 'test111'))
```

output: `Hello World!`

## To encrypt files ##

in file text.txt:
`Hello World!`

```python
from shifrator.main import Shifrator

sh = Shifrator()
sh.shdocs(file='text.txt', op='shifr', key='test111')
```

after: 
`WtР°Р°Рі РљРіС‘Р°s` 

## Additionally ##

The encoder supports text encryption in both Russian and English.

