{"id":24042338,"url":"https://github.com/rajtilak-2020/morsecode_converter","last_synced_at":"2025-08-11T21:04:59.610Z","repository":{"id":270546596,"uuid":"910710722","full_name":"rajtilak-2020/Morsecode_converter","owner":"rajtilak-2020","description":"This project converts user-input words into Morse code. Each letter or digit in the input is translated into its corresponding Morse code representation using a predefined dictionary.","archived":false,"fork":false,"pushed_at":"2025-01-22T04:37:48.000Z","size":5,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-26T11:49:55.992Z","etag":null,"topics":["cli","development","morse-code","morse-code-converter","project","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rajtilak-2020.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-01T06:39:22.000Z","updated_at":"2025-06-09T04:30:37.000Z","dependencies_parsed_at":"2025-01-01T08:17:51.398Z","dependency_job_id":"aec4d0d6-50bd-4d85-bf39-c9c11a1dbc8f","html_url":"https://github.com/rajtilak-2020/Morsecode_converter","commit_stats":null,"previous_names":["rajtilak-2020/morsecode_converter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rajtilak-2020/Morsecode_converter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajtilak-2020%2FMorsecode_converter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajtilak-2020%2FMorsecode_converter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajtilak-2020%2FMorsecode_converter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajtilak-2020%2FMorsecode_converter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rajtilak-2020","download_url":"https://codeload.github.com/rajtilak-2020/Morsecode_converter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rajtilak-2020%2FMorsecode_converter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269956177,"owners_count":24503116,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","development","morse-code","morse-code-converter","project","python"],"created_at":"2025-01-08T22:38:10.075Z","updated_at":"2025-08-11T21:04:59.536Z","avatar_url":"https://github.com/rajtilak-2020.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Morse Code Converter\n\nThis project converts user-input words into Morse code. Each letter or digit in the input is translated into its corresponding Morse code representation using a predefined dictionary.\n\n## Features\n- Converts English letters (a-z) and digits (0-9) into Morse code.\n- Supports continuous input from the user.\n\n## How It Works\n1. The user inputs a word or phrase.\n2. Each character of the input is checked against a predefined dictionary of Morse code symbols.\n3. The corresponding Morse code is appended to the output string.\n4. The Morse code output is displayed to the user.\n\n## Usage\n1. Clone or download the repository.\n2. Run the script in a Python environment:\n   ```bash\n   python morse_code_converter.py\n   ```\n3. Input a word or phrase when prompted.\n4. The script will output the Morse code equivalent.\n\n## Example\n### Input\n```\ntype: hello\n```\n\n### Output\n```\n.... . .-.. .-.. ---\n```\n\n## Morse Code Reference\nThe following table outlines the Morse code symbols used in this project:\n\n| Character | Morse Code |   | Character | Morse Code |\n|-----------|------------|---|-----------|------------|\n| a         | .-         |   | n         | -.         |\n| b         | -...       |   | o         | ---        |\n| c         | -.-.       |   | p         | .--.       |\n| d         | -..        |   | q         | --.-       |\n| e         | .          |   | r         | .-.        |\n| f         | ..-.       |   | s         | ...        |\n| g         | --.        |   | t         | -          |\n| h         | ....       |   | u         | ..-        |\n| i         | ..         |   | v         | ...-       |\n| j         | .---       |   | w         | .--        |\n| k         | -.-        |   | x         | -..-       |\n| l         | .-..       |   | y         | -.--       |\n| m         | --         |   | z         | --..       |\n| 1         | .----      |   | 6         | -....      |\n| 2         | ..---      |   | 7         | --...      |\n| 3         | ...--      |   | 8         | ---..      |\n| 4         | ....-      |   | 9         | ----.      |\n| 5         | .....      |   | 0         | -----      |\n\n## Project Structure\n- `morse_code_converter.py`: Main script containing the Morse code dictionary and the logic for conversion.\n\n## Future Enhancements\n- Add support for punctuation.\n- Handle spaces between words in the input.\n- Provide a graphical user interface (GUI) for easier use.\n\n## License\nThis project is licensed under the MIT License. See the `LICENSE` file for more details.\n\n## Acknowledgments\n- Inspired by the simplicity of Morse code as a communication method.\n- Morse code references taken from publicly available sources.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frajtilak-2020%2Fmorsecode_converter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frajtilak-2020%2Fmorsecode_converter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frajtilak-2020%2Fmorsecode_converter/lists"}