Skip to content

Latest commit

 

History

History
190 lines (169 loc) · 8.58 KB

README.md

File metadata and controls

190 lines (169 loc) · 8.58 KB

COVID-19

INDEX

  1. Task list
  2. API
    1. API Structure
  3. MONGO
  4. DASHBOARD
    1. DASHBOARD Structure
  5. PRE-COMMIT
  6. REFERENCES

Task list

  • L1: Crear api en fastapi
  • L1: Crear dashboard en streamlit
  • L1: Base de datos en MongoDB o PostgreSQL
  • L2: Utilizar de datos geoespaciales y geoqueries en MongoDB o Postgres (Usando PostGIS)*
  • L2: Tener la base de datos en el Cloud (Hay servicios gratis en MongoDB Atlas, Heroku Postgres, dentre otros)
  • L2: Generar reporte pdf de los datos visibles en Streamlit, descargable mediante boton.
  • L2: Un dashboard de multiples páginas en Streamlit
  • L3: Que el dashboard te envie el reporte pdf por e-mail
  • L3: Poder subir nuevos datos a la bbdd via la API (usuario y contraseña como headers del request)
  • L4: Poder actualizar la base de datos via Streamlit (con usuario y contraseña, en una página a parte. El dashboard debe hacer la petición anterior que añade datos via API)
  • L4: Crear contenedor Docker y hacer deploy de los servicios en el cloud (Heroku. Los dos servicios deben subirse separadamente)
  • L5: Controlar el pipeline con Apache Airflow

*With this data is impossible to get geoqueries, because the different coordinate points are too far.

API

The API has different endpoints: You can have the documentation of the api here. The API is divided by cases, deaths and recoveries. It has other endpoints that are common for example the internals endpoint can use to CRUD requests.

To run the api in your local machine you need a conda virtual environment (best option), install the requirements with pip:

$ pip install -r requirements.txt

When the last command finished you only need to run the following command inside the api/src directory:

uvicorn main:app --reload

And you can go to http://localhost:8000/docs to get the api correctly running.

You need the following environment variables or put a .env file in the api/src directory:

- MONGO_URI -> The mongo url with the user and pass to get the information.
- MONGO_DB -> The database where thhe information is stored.
- MONGO_COL -> The collection of the database.
- API_KEY -> Api key used to access to the internals uris.

API Structure

.
├── Dockerfile
├── requirements.txt -> Dependencies
└── src -> The directory with all the code.
    ├── config.py -> Configure the variables (".env" or with "os.getenv").
    ├── db -> All the scripts to connect with mongodb
    │   ├── db.py
    │   └── __init__.py
    ├── __init__.py
    ├── internals
    │   └── internal_operations.py -> Internal endpoints with authentication
    ├── main.py -> Principal app to run Fastapi
    ├── models -> The different models uses to validate the schema response for each endpoint.
    │   ├── confirmed_model.py
    │   ├── deaths_model.py
    │   ├── __init__.py
    │   ├── internals_model.py
    │   └── recoveries_model.py
    ├── routers -> The different FastApi routers with its respective endpoints.
    │   ├── common.py
    │   ├── confirmed_cases.py
    │   ├── deaths.py
    │   ├── __init__.py
    │   └── recoveries.py
    └── utils -> Utilities to use (time_response.py can get the response time on a header)
        ├── functutils.py
        ├── __init__.py
        └── time_response.py

MONGO

It's deployed using mongo atlas in a shared cluster.

Each mongo document has the following structured:

{
    "country": "country",
    "date": "date",
    "cases": "cases_per_day",
    "cases_accumulated": "total_cases",
    "deaths": "deaths_per_day",
    "deaths_accumulated": "total_deaths",
    "recoveries": "recoveries_per_day",
    "recoveries_accumulated": "total_recoveries",
    "latitude": "lat",
    "longitude": "long",
    "location":
        {
            "type": "Point",
            "coordinates": ["long", "lat"]
        }
}

It has a GEOSPHERE index to make the possibility to geoqueries. Also, the mongo has two more index:

  • Index in the date field.
  • Index compound by country and date fields.

DASHBOARD

The dashboard has made with streamlit and it's divided in multipages:

  • Home -> Home page (Nothing more to explain here).
  • Cases -> Cases page. Here you can navigate and select the countries with a date range, you can see the different options in the sidebar to get different results. The results were the cases per each country.
  • Deaths -> Deaths page. Here you can navigate and select the countries with a date range, you can see the different options in the sidebar to get different results. The results were the deaths per each country.
  • Recoveries -> Recoveries page. Here you can navigate and select the countries with a date range, you can see the different options in the sidebar to get different results. The results were the recoveries per each country.
  • Report -> Here you can select a date range and a some countries, you can download the pdf or with a password you can send it by email.
  • Maps -> Here you can select between cases, deaths and recoveries and a date and show a map with heatmap with the cases, deaths or recoveries for the date selected.
  • Internals -> Here you can update, create and delete a row. Providing a password.

To run the dashboard in your local machine you need a conda virtual environment and install the packages provided in the dashboard/requirements.txt file.

$ pip install -r requirements.txt

When you install all the required packages you can get the dashboard up and running executing the following command inside the directory dashboard/src/:

$ streamlit run main.py

You need the following environment variables:

- MJ_APIKEY_PUBLIC -> The public api key to configure mailjet.
- MJ_APIKEY_PRIVATE -> The secret api key to auth with mailjet.
- USER_PASS -> The password used to get into the internals page.
- API_KEY -> Api key used to connect with the authentication endpoints.
- API_URL -> Api URL used by streamlit to get the information
- MAIL -> From mail used from mailjet to send emails.

Dashboard Structure

├── Dockerfile
├── requirements.txt -> Dependencies
├── src -> Dashboard source code
│   ├── config.py -> Configure some environment variables
│   ├── data -> Uses to request to the different api endpoints.
│   │   └── funcdata.py
│   ├── main.py -> Principal app.
│   ├── multiapp.py -> Multipage class
│   ├── pages -> The different pages.
│   │   ├── cases.py
│   │   ├── deaths.py
│   │   ├── home.py
│   │   ├── internals.py
│   │   ├── maps.py
│   │   ├── pdf_report.html -> This html is here to generate the pdf report with Jinja2.
│   │   ├── recoveries.py
│   │   └── report.py
│   └── utils -> Utilies to use.
│       ├── funcutils.py
│       └── streamlit_utils.py -> Some functions to avoid repetition on some pages.
└── start.sh -> Script used to deploy in heroku. (The $PORT is needed).

Pre-commit

This pre-commit is used to get good practices on python coding. It uses the following modules:

REFERENCES