Skip to content

This is a simple Python module to encode or decode messages using the A1Z26 cipher.

Notifications You must be signed in to change notification settings

AlissonFaoli/A1Z26

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

A1Z26

This is a simple Python module to encode or decode messages using the A1Z26 cipher.

Usage:

from a1z26 import *

message = 'Hello, world!'
encoded_message = text_to_a1z26(message)
print(encoded_message)

[output]

8-5-12-12-15, 23-15-18-12-4!

hidden_message = '8-5-12-12-15, 23-15-18-12-4!'
decoded_message = a1z26_to_text(hidden_message)
print(decoded_message)

[output]

HELLO, WORLD!

About

This is a simple Python module to encode or decode messages using the A1Z26 cipher.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages