- Python 3.9.5
- Pytest 6.2.4
- Flask 2.0.0
- Fork and Clone this repository
- Run
pipenv installto ensure packages are installed in your environment - Run
pytestto run this app's tests to ensure it is working correctly - To run this application locally, run
gunicorn run:appand follow the given address
Required path params:
locationtitle
will return 404 if not provided
GET '/api/v1/jobs?location=denver,co&title=software+engineer
{ "data": [{ "id": "integer", "type": "job_post", "attributes":{ "title": "string", "company": "string", "category": "array(strings)", "description": "string", "location": "string", "publish_date": "datetime", "link": "string" }, {...} }] }