Easily Encode & Decode Morse Code
Project description
Requirements
Introduction
MorseCodePy helps with encoding text into Morse code and decoding it back. It supports multiple languages, including English, Russian, Ukrainian, Spanish, French. It also has support for numbers and other special characters.
Usage
encode(string, /, language, *, dot, dash, error, markup)
Encodes the string into Morse code
string: Input stringlanguage: Language for encoding (e.g.,english,french,spanish,russian,ukrainian,numbers,special)dot: (optional) Symbol representing dots (default is.)dash: (optional) Symbol representing dashes (default is-)separator: (optional) Symbol separating words (default is/)error: (optional) Symbol representing errors when the index is not found in the dictionary (default is*)markup: (optional) If True, shows the original character in brackets before its Morse code (default isFalse)
from MorseCodePy import encode
# Encoding a simple English sentence
encoded_string: str = encode('Python is fun!', language='english')
print(encoded_string)
# Output: .--. -.-- - .... --- -. / .. ... / ..-. ..- -. -.-.--
from MorseCodePy import encode
# Encoding a Ukrainian sentence with custom dot and dash symbols and unsupported characters
encoded_string: str = encode('Привіт, світ! Ü', language='ukrainian', dot='*', dash='=', error='#')
print(encoded_string)
# Output: *==* *=* =*== *== ** = ==**== / *** *== ** = =*=*== / #
from MorseCodePy import encode
# Encoding a Russian sentence with markup
encoded_string: str = encode('До встречи!', language='russian', markup=True)
print(encoded_string)
# Output: [Д] -.. [О] --- / [В] .-- [С] ... [Т] - [Р] .-. [Е] . [Ч] ---. [И] .. [!] -.-.--
decode(code, /, language, *, dot, dash, error, markup)
Decode the Morse code into a string
code: Input Morse code stringlanguage: Language for decoding (e.g.,english,french,spanish,russian,ukrainian,numbers,special)dot: (optional) Symbol representing dots (default is.)dash: (optional) Symbol representing dashes (default is-)separator(optional) Symbol separating words (default is/)error: (optional) Symbol representing errors when the index is not found in the dictionary (default is*)markup: (optional) If True, shows the original Morse code sequence in brackets before the decoded character (default isFalse)
from MorseCodePy import decode
# Decoding Morse code to Spanish text
decoded_string: str = decode('-- --- .-. ... . / -.-. --- -.. .', language='spanish')
print(decoded_string)
# Output: morse code
from MorseCodePy import decode
# Decoding Morse code numbers with custom symbols
decoded_string: str = decode('****- **--- / *---- -----', language='numbers', dot='*', error='#')
print(decoded_string)
# Output: 42 10
chart(*, dot, dash)
Print Morse code chart in the console
dot: (optional) Symbol representing dots (default is·)dash: (optional) Symbol representing dashes (default is-)
from MorseCodePy import chart
chart(dot='.', dash='_')
Command Lines
MorseCodePy also has terminal commands! You can encode, decode, view a Morse code chart, list supported languages, and more directly from the terminal. All the commands are very similar to the original Python function, so I recommend reading the documentation for them first.
encode
Encode text into Morse code
Command: morsecodepy encode <text> <language> [--dot DOT] [--dash DASH] [--separator SEPARATOR] [--error ERROR] [--markup]
morsecodepy encode "Python is fun!" english
decode
Decode Morse code into text
Command: morsecodepy decode <code> <language> [--dot DOT] [--dash DASH] [--separator SEPARATOR] [--error ERROR] [--markup]
morsecodepy decode "-- --- .-. ... . / -.-. --- -.. ." spanish
chart
Print out the code chart
Command: morsecodepy chart [--dot DOT] [--dash DASH]
morsecodepy chart --dot '*' --dash '='
languages
Print out the list of supported languages
Command: morsecodepy languages
Contact
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file morsecodepy-4.2-py3-none-any.whl.
File metadata
- Download URL: morsecodepy-4.2-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a70b12273c3009bb3f87567823f96d997a347466fbb1f8af095de31cd45cfea1
|
|
| MD5 |
28470f504f2dcf8eaa475c54004d235a
|
|
| BLAKE2b-256 |
3aff75353680aaea8c0f6f3ad127a10303fcc41ef5fccd0b70b3775abdfb54b4
|