This is an optional coding challenge for participants in the Python Office Hours. If you're stuck, you can look at this repository for example code.
We're scraping the city's database of employee salaries. You can find the JSON at https://opendata.arcgis.com/datasets/54e0445a54c144cda3ce09596f50a134_0.geojson
You must create a Peewee model to store employee data and use it to populate the database.
You must use Peewee to query:
- The number of employees whose last name is Lyles
- The number of employees whose job title is Mayor
- The largest salary paid to any city employee
- The name and job title of the person who is paid the largest salary.