Metadata-Version: 2.1
Name: sweecrypt
Version: 1.0.4
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:<br>
`pip3 install sweecrypt`

Import:<br>
`import sweecrypt`

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

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