Scrape a local dataset of employee data and return the processed data at an endpoint using Python and Flask.
Feel free to consult as many outside resources as you would like and push your code to a fork of this repository when you are done.
Questions, errors, or needed clarifications? Reach out here: sirajsc2 [at] illinois [dot] edu.
__init__.py to complete this exercisedata.csv into a JSON structure as follows{
employees: [
{
name: <full name of employee>,
timezone: <timezone of employee>,
dept: <department of employee>
}
...
]
}
/api/fetchpip3 install requirements.txt OR pip install requirements.txt depending on your system installation of Pythonexport FLASK_RUN=__init__.py (for macOS/Linux, environment variables are under Control Panel/System on Windows w/o WSL)flask run in the repository to run a development server