Fråga till oss: om "det skett en ökning över tid (före och efter pandemin) av jobbannonser med ”möjlighet till distansarbete”.
Svaret hittar med api:et för historiska annonser: https://historical.api.jobtechdev.se/search
Ett Python-program som gör sökningar för varje kvartal:
# pip install requests
import requests
url = "https://historical.api.jobtechdev.se/search"
def get(params):
r = requests.get(url, params)
return r.json()
print("start, end_month, remote ads}, total ads")
for year in [2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023]:
# one quarter at the time
for period in [("01", "03"), ("04", "06"), ("07", "09"), ("10", "12")]:
start, end = period
start_month = f"{year}-{start}"
end_month = f"{year}-{end}"
params = {"historical-from": start_month, "historical-to": end_month, "remote": True}
r = get(params)
number_of_ads = r["total"]["value"]
params_total = {"historical-from": start_month, "historical-to": end_month}
total = get(params_total)
total_number_of_ads = total["total"]["value"]
print(f"{start_month}, {end_month}, {number_of_ads}, {total_number_of_ads}")