{"id":20322946,"url":"https://github.com/naemazam/text-to-morse","last_synced_at":"2026-03-19T15:15:52.203Z","repository":{"id":112434251,"uuid":"430174272","full_name":"naemazam/Text-to-morse","owner":"naemazam","description":"Morse code is a method used in telecommunication to encode text characters as standardized sequences of two different signal durations, called dots and dashes, or dits and dahses. In here,Convert Text to Morse Code With Python","archived":false,"fork":false,"pushed_at":"2021-11-20T18:09:36.000Z","size":1,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-19T12:45:01.031Z","etag":null,"topics":["morse-code","morse-code-python","morse-learning","morse-translator","morsecode","naemazam"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/naemazam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2021-11-20T18:03:32.000Z","updated_at":"2025-06-02T14:32:28.000Z","dependencies_parsed_at":"2023-05-15T03:00:25.472Z","dependency_job_id":null,"html_url":"https://github.com/naemazam/Text-to-morse","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/naemazam/Text-to-morse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naemazam%2FText-to-morse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naemazam%2FText-to-morse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naemazam%2FText-to-morse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naemazam%2FText-to-morse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/naemazam","download_url":"https://codeload.github.com/naemazam/Text-to-morse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/naemazam%2FText-to-morse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29145831,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T01:13:33.096Z","status":"online","status_checked_at":"2026-02-06T02:00:08.092Z","response_time":59,"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":["morse-code","morse-code-python","morse-learning","morse-translator","morsecode","naemazam"],"created_at":"2024-11-14T19:25:43.821Z","updated_at":"2026-02-06T02:31:28.588Z","avatar_url":"https://github.com/naemazam.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ch1 align=\"center\"\u003eText to Morse\u003c/h1\u003e\n  \u003cp align=\"center\"\u003e Convert Text to Morse Code With Python  \u003c/p\u003e\n\u003c/p\u003e \n\n## Simple Knowledge\n\nMorse code is a method used in telecommunication to encode text characters as standardized sequences of two different signal durations, called dots and dashes, or dits and dahs. Morse code is named after Samuel Morse, one of the inventors of the telegraph.\n\n## Python Code \n\nEnter a Text  to convert into MC\n\nCopy code and test on Any Editor\n\n\n\n```Python\n\nText = input()\nprint('YOUR TEXT ',Text,' IN MORSE IS ::')\nprint('')\nfor i in Text:\n    i = i.upper()\n    if (i == 'A'):\n       print(i , '._')\n    elif (i == 'B'):\n       print(i , '_...')  \n    elif (i == 'C'):\n       print(i , '_._.')\n    elif (i == 'D'):\n       print(i , '_..')\n    elif (i == 'E'):\n       print(i , '.')\n    elif (i == 'F'):  \n       print(i , '.._.')\n    elif (i == 'G'): \n       print(i , '__.')\n    elif (i == 'H'):\n       print(i , '....')\n    elif (i == 'I'):\n       print(i , '..')\n    elif (i == 'J'):\n       print(i , '.___')\n    elif (i == 'K'):\n       print(i , '_._')\n    elif (i == 'L'):\n       print(i , '._..')\n    elif (i == 'M'):\n       print(i , '__')\n    elif (i == 'N'):\n       print(i , '_.')\n    elif (i == 'O'):\n       print(i , '___')\n    elif (i == 'P'):\n       print(i , '.__.')\n    elif (i == 'Q'):\n       print(i , '__._')\n    elif (i == 'R'):\n       print(i , '._.')\n    elif (i == 'S'):\n       print(i , '...')\n    elif (i == 'T'):\n       print(i , '_')\n    elif (i == 'U'):\n       print(i ,'.._')\n    elif (i == 'V'):\n       print(i ,'..._')\n    elif (i == 'W'):\n       print(i ,'.__')\n    elif (i == 'X'):\n       print(i ,'_.._')\n    elif (i == 'Y'):\n       print(i ,'_.__')\n    elif (i == 'Z'):\n       print(i ,'__..')\n    elif (i == ' '):\n       print('_______________')\n    else:\n        print('______')\n\n        print('____________________________')\n\nprint('_____________________')\nprint('Finished......#######')\n```\n\n\n## Demo \nInput Thank You\n\noutput\n\n```python\nT _\nH ....\nA ._\nN _.\nK _._\n_______________\n\nY _.__\nO ___\nU .._\n```\n\n## Contributing\n\nContributions are always welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaemazam%2Ftext-to-morse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnaemazam%2Ftext-to-morse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnaemazam%2Ftext-to-morse/lists"}