Using OpenDataPhilly covid-19 information, I'm using it as an opportunity to practice my Python whilst maybe finding something information.
OpenDataPhilly Homepage
OpenDataPhilly Covid Dataset Search
We help departments share data from city government with the public on OpenDataPhilly. Access to data, like City payments, property assessments, and 311 service requests makes government more transparent.
This dataset is published to carto, which allows you to query the data using SQL (specifically the PostgreSQL flavor with the PostGIS extension). Rather than executing the queries in a database program, you execute them through HTTP (ie. the web browser) via Carto's SQL API, passing your query as the q parameter. For example:
https://phl.carto.com/api/v2/sql?q=SELECT * FROM covid_cases_by_date
You can do just about everyting you'd expect from a PostgreSQL+PostGIS database - even joins between tables.
My project uses Jupyter Notebooks + repo2docker
I will be borrowing from another project like this one [ENGR2011 Project (https://github.com/3keepmovingforward3/OpenDataPhilly_Database_ENGR2011)