Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Framework

fastapi is faster than flask. However I found flask a bit more easy at first to use. I think what makes fastapi strong is the concurrency and asnychronuous capability. Its definition is similar to flask, making it easy to migrate from flask to fastapi if needed.

Requirements

  • python 3.6 or higher

Getting started

  1. Clone the repository locally
  2. Setup a virtual environment.
  3. Install the dependencies pip install -r requirements.txt
  4. run the app locally with . run_app.sh, or uvicorn fastapi_app.webapp:app --reload --port 5001 you can visualize it in your browser under http://127.0.0.1:5001