Skip to content

Latest commit

 

History

History
54 lines (38 loc) · 1.14 KB

README.md

File metadata and controls

54 lines (38 loc) · 1.14 KB

TextToMorse

TextToMorse is a simple program written in python that can turn any text into Morse code, after the standards for International Morse Code.

Installation

The Project is build in Python version 3.12. After you downloaded or cloned the Repo, go into TextToMorse (if you download as zip it's TextToMorse - master) directory. It is recommended to create a virtual environment like this:

python -m venv .venv

Then activate the virtual environment.
  • On Linux/MacOs:
source .venv/bin/activate
  • On Windows:
.venv\Scripts\activate.bat

In the venv now use the package manager pip to install the requirements.
pip install -r requirements.txt

Now you are ready to go and run:

python main.py

Ps.: After usage deactivate the venv like this:
deactivate

Preview

image

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.