Metadata-Version: 2.1
Name: sweecrypt
Version: 1.0.5
Summary: An easy and fun encryption module.
Author: SweeZero
Author-email: swee@mailfence.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
License-File: LICENSE

# SweeCrypt
A basic and fun cipher module for everyone. it converts regular text into symbols on a keyboard, kind of like a cipher. This is only for fun, using this module for cybersecurity is NOT ADVISED

Install:  
`pip3 install sweecrypt`

Import:  
`import sweecrypt`

Encrypt:  
`sweecrypt.encrypt("hello, world!")`  
Output:  
`!?~~(:,}(>~/a`

Decrypt:  
`sweecrypt.decrypt("!?~~(:,}(>~/a")`
<br>Output:  
`hello, world!`
