REST APIs with Flask and Python is a complete course that form knowledge and skills to develop complete, professional REST APIs using Flask, PostgreSQL, and Docker.
Link to the course on UDEMY platform: https://www.udemy.com/course/rest-api-flask-and-python/
pip3.6 install virtualenv
to install the virtual environment manager.virtualenv venv --python=python3.6
to create a new virtual environment (called venv) with the specified version of python.- To (enter) activate the environment:
source venv/bin/activate
- To (exit) deactivate the environment:
deactivate
- In terminal run
flask run
- To take a look at existing API's, visit http://127.0.0.1:5000/swagger-ui
- Insomnia test collections