removed the work on filte for now, cleaned up files and repo structure. This branch is complete and ready to be merged into main. Also releasing this version to the site.
API to help make public data easier to access. Idea started with need for King County, WA COVID-19 data in API format while only having an excel file for source data.
## Development Setup
### Datastore
@ -20,6 +19,22 @@ docker ps # to find the CONTAINER ID
docker exec -it 05b3a3471f6f bash
```
From the shell login to the db and setup initial user and database
```bash
psql -U postgres
```
Create your creds.py from the creds_sample.py
```bash
cp creds_sample.py creds.py
```
Edit creds.py with correct info for your db.
More info coming soon on using the scripts in database/ to create tables and load them with data.
### Development Env.
Project is using Python 3.7
@ -29,8 +44,16 @@ In the project we use [pipenv](https://pipenv.pypa.io/en/latest/) when developin
```bash
pipenv install && pipenv shell
```
### Production
When running on Debian server libpq-dev is required, this is postgresl library.
```bash
sudo apt-get install libpq-dev
```
### Data Available
- King County, Washington COVID-19 Data
- King County, Washington COVID-19 Data
- [King County, WS Covid-19 by ZipCode](https://api.seattlematrix.org/v1/kingcounty/covid-19/zipcode/all)