This is a Translation tool which tanslate normal text to morse code
https://morse-code-translater.herokuapp.com/
- Use Flask
- Show the result without reloading page
- use javascript for that
- use Bootstrap for html form
- Deployed on Heroku Try it on Heroku https://morse-code-translater.herokuapp.com/
- click==7.1.2
- Flask==1.1.2
- gunicorn==20.0.4
- itsdangerous==1.1.0
- Jinja2==2.11.3
- MarkupSafe==1.1.1
- Werkzeug==1.0.1
- Static This folder contain stylesheet , images & javascript.
- templates This folder contain html template for the site .
- app.py This is the main app file
- Procfile This file is used to tell the Heroku that this is a webapp for deploying purpose not needed on local server
- Readme.md Discription and usage wirtten in this file
- Requirements.txt This file contain the required module name which are nedded ot use this webapp.
- don't change Procfile
- Try to solve the given issue .
- If you don't know python then try to imporove frontend by making the website looks good
- make meaning full commit's
- add appropriate comment's to the code both python and html , js ,css don't create any extra file
- only valid PR will be merged.
-
clone or download the app clone using git git clone https://github.com/Nktech-Official/MorseCodeTranlator.git
-
Install the requirement files pip install -r requirements.txt
-
Now launch the app.py python app.py
-
After launching the application you will get following ouptut
- Serving Flask app "app" (lazy loading)
- Environment: production WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
- Debug mode: on
- Restarting with stat
- Debugger is active!
- Debugger PIN: 125-144-452
- Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) 127.0.0.1 - - [28/Mar/2021 15:55:29] "GET / HTTP/1.1" 200 -
-
open WebBrowser and type in addressbar link given in second last line of output http://127.0.0.1:5000/
-
To quit or exit the app in the command line Press CTRL+C.