An open API service indexing awesome lists of open source software.

https://github.com/mert-eryl14/texttomorse

Simple Text to Morse converter
https://github.com/mert-eryl14/texttomorse

cli mit-license morse morse-code python

Last synced: 7 months ago
JSON representation

Simple Text to Morse converter

Awesome Lists containing this project

README

          

# TextToMorse

TextToMorse is a simple program written in python that can turn any text into Morse code, after the standards for [International Morse Code](https://en.wikipedia.org/wiki/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:

```bash
python -m venv .venv
```



Then activate the virtual environment.

- On Linux/MacOs:
```bash
source .venv/bin/activate
```

- On Windows:
```bash
.venv\Scripts\activate.bat
```



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

```bash
pip install -r requirements.txt
```

Now you are ready to go and run:
```bash
python main.py
```



Ps.: After usage deactivate the venv like this:

```bash
deactivate
```

## Preview
![image](https://github.com/eywa14/YoutubeDownloader-GUI/assets/85054971/23b5a81a-1e2b-42f3-8367-8f785608a0e1)

## Contributing

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