Skip to content

Extends the traditional morse code to include attention to case sensitivity and encode/decode a human readable nice text

License

Notifications You must be signed in to change notification settings

danysrour/morsecodeplus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MorseCodePlus

MorseCodePlus is a Python package that provides functionality for encoding and decoding Morse code.

Installation

You can install MorseCodePlus using pip:

pip install morsecodeplus

Usage

Encoding

To encode text into Morse code, you can use the encode function:

from morsecodeplus import encode

encoded_message = encode('Hello, World!')
print(encoded_message)

Output:

.... . .-.. .-.. --- --..-- / .-- --- .-. .-.. -.. -.-.--

Decoding

To decode Morse code into text, you can use the decode function:

from morsecodeplus import decode

decoded_message = decode('.... . .-.. .-.. --- --..-- / .-- --- .-. .-.. -.. -.-.--')
print(decoded_message)

Output:

HELLO, WORLD!

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvement, please open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License


You can now copy this code and use it as your README.md file.

About

Extends the traditional morse code to include attention to case sensitivity and encode/decode a human readable nice text

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages