A series of tutorials to understand Django by implementing a complete Temperature Converter Application.
This projet is built using these technologies:
- Programming Language: Python
- Web Browser: Mozilla Firefox
- Code Editor: Microsoft Visual Studio Code (with extensions)
- Virtual Environment: venv
- Create virtual environment with:
python -m venv django_venv
- Then, activate it with:
.\django_venv\Scripts\activate
- Create virtual environment with:
For the first step, we install the main package with: python -m pip install django
Then, create a new app with the title: first_django_app
In this steps, we have to achieve the following goals:
- Create two routes : converter and results
- Make the conversion from celsius to fahrenheit and vice versa
- Use only
urls.py
(routes) andviews.py
(functions)