diff --git a/data_collection/adzuna.py b/data_collection/adzuna.py index 98b05195..d053a2bb 100644 --- a/data_collection/adzuna.py +++ b/data_collection/adzuna.py @@ -77,8 +77,10 @@ for i, job_title in enumerate(JOB_TITLES): for job in jobs['results']: to_append = { "job_title": job_title, - "location": location, - "location_code": location_config["PCON22CD"], + "search_location": location, + "search_location_code": location_config["PCON22CD"], **job } results.append(to_append) + +results_df = pd.DataFrame(results)