Note
EncryptedCode is a python library accessible to everyone that is under improvements where I use a new encryption algorithm created by © Software Engineer Leandro Gonzalez Espinosa. and named L0123.
pip install encryptedcode
Important
REMEMBER SAVE THE KEY INSIDE TO ENVIROMENT VARIABLE FOR YOUR SECURITY
#imports
from encryptedcode.encrypted_code import generate_key, encode, decode
key = generate_key()
cadena = "Hey! I'm a simple String"
encoded = encode(cadena, key)
print(f"Encoded: {encoded}")
decoded = decode(encoded, key)
print(f"Decoded: {decoded}")