A simple Flask-based web application that translates text between different languages.
The app provides a user-friendly interface to input text, choose a language, and view the translated result.
- Translate text into multiple languages
- Simple and clean web interface
- Flask-powered backend
| Category | Technologies |
|---|---|
| Frontend | HTML5, CSS3 |
| Backend | Python, Flask |
| Translation Library | googletrans |
Translation-Web-App/
│
├── app.py
│
├── templates/
│ ├── index.html
│ └── result.html
│
├── static/
│ └── css/
│ ├── index.css
│ └── result.css
git clone https://github.com/your-username/translation-app.git
cd translation-app# For Mac/Linux
python -m venv venv
source venv/bin/activate
# For Windows
venv\Scripts\activatepip install flask
pip install googletrans==4.0.0-rc1python app.pyOpen your browser and visit:
http://127.0.0.1:5000/
Devansh Mankad
Computer Engineering Student
If you found this project useful, consider giving it a ⭐ Star on GitHub.
This project is licensed under the MIT License.