Skip to content
Snippets Groups Projects
  • thomaswoehlke's avatar
    d8d065b3
    ### 0.0.7 Release · d8d065b3
    thomaswoehlke authored
    * Issue #8 WhoServiceUpdate.update_db_short()
    * Issue #9 URL: /who/update/short
    * Issue #10 async who_update_short_task
    * Issue #11 WhoServiceUpdate.__update_who_global_data_short()
    * Fixed #12 better layout for flash messages
    d8d065b3
    History
    ### 0.0.7 Release
    thomaswoehlke authored
    * Issue #8 WhoServiceUpdate.update_db_short()
    * Issue #9 URL: /who/update/short
    * Issue #10 async who_update_short_task
    * Issue #11 WhoServiceUpdate.__update_who_global_data_short()
    * Fixed #12 better layout for flash messages
README.md 6.17 KiB

covid19python

  • Version 0.0.5 SNAPSHOT

git

gitlab

github

Data Sources:

Python

Info

Database

WHO

who_date_reported

CREATE TABLE public.who_date_reported (
    id integer NOT NULL,
    date_reported character varying(255) NOT NULL
);
class WhoDateReported(db.Model):
    __tablename__ = 'who_date_reported'

    id = db.Column(db.Integer, primary_key=True)
    date_reported = db.Column(db.String(255), unique=True, nullable=False)

who_region

CREATE TABLE public.who_region (
    id integer NOT NULL,
    region character varying(255) NOT NULL
);