https://github.com/david17c/text-morsecode-conv
A simple morsecode translation script that works bothways.
https://github.com/david17c/text-morsecode-conv
morse-code-translator morsecode python script
Last synced: 15 days ago
JSON representation
A simple morsecode translation script that works bothways.
- Host: GitHub
- URL: https://github.com/david17c/text-morsecode-conv
- Owner: David17c
- Created: 2026-05-05T15:04:16.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-29T19:03:10.000Z (23 days ago)
- Last Synced: 2026-05-29T21:04:29.396Z (23 days ago)
- Topics: morse-code-translator, morsecode, python, script
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Text-MorseCode-Conv
A basic Morse code translation script that works both ways.
## Usage examples
**Encode text to Morse:**
```bash
python main.py encode "David17c"
```
**Decode Morse to text:**
```bash
python main.py decode "-.. .- ...- .. -.. .---- --... -.-."
```
**Encode from a `input.txt`:**
```bash
python main.py encode input.txt
```
**Decode and save to a `output.txt`:**
```bash
python main.py decode morse.txt output.txt
```