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
- Host: GitHub
- URL: https://github.com/mert-eryl14/texttomorse
- Owner: mert-eryl14
- License: mit
- Created: 2024-03-08T13:59:47.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-13T12:06:40.000Z (over 1 year ago)
- Last Synced: 2025-01-27T08:12:09.023Z (8 months ago)
- Topics: cli, mit-license, morse, morse-code, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
## Contributing
Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.