Morse code is a method used in telecommunication to encode text character as standardized sequences of two different signal durations, called dots and dashes
Text Input restrictions:
- Letters: 26 basic Latin letter A to Z.
- Numbers: 0 to 9.
- Punctuation Marks: . , ? ' ! / ( ) & : ; = + - _ " $ @
Morse Code Input restrictions:
- Character Set: Only dots(.) and dashes(-).
- Spacing: Separate characters by a space and words by three spaces.
Features included:
- Convert text to morse code.
- Convert morse code to text.
- Play morse code.
- Save morse code in clipboard.
For Windows:
Download and Install the latest version of Python.
Download and Install the latest version of PyCharm Community Edition.
For Linux:
Linux comes preinstalled with Python.
To install the latest version of PyCharm Community Edition, run the following command:
sudo snap install pycharm-community --classic
You can install all the required packages listed in the requirements.txt file for the project at the same time:Β
On Windows type:
python -m pip install -r requirements.txt
On MacOS type:
pip3 install -r requirements.txt
Initial work - grandeurkoe