From 70e2af61722cf6bc7b50e218178fd230b11f58fb Mon Sep 17 00:00:00 2001 From: moanos Date: Sun, 26 Jan 2025 17:04:56 +0100 Subject: [PATCH] fix: fix key --- src/fellchensammlung/animal_shelter.py | 114 ++++++++++++------------- 1 file changed, 57 insertions(+), 57 deletions(-) diff --git a/src/fellchensammlung/animal_shelter.py b/src/fellchensammlung/animal_shelter.py index 9fe1060..f727dbb 100644 --- a/src/fellchensammlung/animal_shelter.py +++ b/src/fellchensammlung/animal_shelter.py @@ -1,57 +1,57 @@ -import json -import requests - -OSM_DATA_FILE = "osm_data.geojson" -ENDPOINT = "https://test.notfellchen.org/api/organizations/" -HEADERS = { - "Authorization": "API_KEY", - "Content-Type": "application/json" -} - -def load_osm_data(file_path): - #Load OSM data from a GeoJSON file. - with open(file_path, "r", encoding="utf-8") as file: - data = json.load(file) - return data - -def transform_osm_data(feature): - #Transform a single OSM feature into the API payload format - prop = feature.get("prop", {}) - geometry = feature.get("geometry", {}) - - return { - "name": prop.get("name", "Unnamed Shelter"), - "phone": prop.get("phone"), - "website": prop.get("website"), - "opening_hours": prop.get("opening_hours"), - "email": prop.get("email"), - "location": { - "type": geometry.get("type", "Point"), - "coordinates": geometry.get("coordinates", []) - }, - "external_object_id": prop.get("@id"), - "external_source_id": "OSM" - } - -def send_to_api(data): - #Send transformed data to the Notfellchen API. - response = requests.post(ENDPOINT, headers=HEADERS, json=data) - if response.status_code == 201: - print(f"Success: Shelter '{data['name']}' uploaded.") - elif response.status_code == 400: - print(f"Error: Shelter '{data['name']}' already exists or invalid data.") - else: - print(f"Unexpected Error: {response.status_code} - {response.text}") - -def main(): - # Step 1: Load OSM data - osm_data = load_osm_data(OSM_DATA_FILE) - - - # Step 2: Process each shelter and send it to the API - for feature in osm_data.get("features", []): - shelter_data = transform_osm_data(feature) - send_to_api(shelter_data) - -if __name__ == "__main__": - main() +import json +import requests + +OSM_DATA_FILE = "osm_data.geojson" +ENDPOINT = "https://test.notfellchen.org/api/organizations/" +HEADERS = { + "Authorization": "API_KEY", + "Content-Type": "application/json" +} + +def load_osm_data(file_path): + #Load OSM data from a GeoJSON file. + with open(file_path, "r", encoding="utf-8") as file: + data = json.load(file) + return data + +def transform_osm_data(feature): + #Transform a single OSM feature into the API payload format + prop = feature.get("properties", {}) + geometry = feature.get("geometry", {}) + + return { + "name": prop.get("name", "Unnamed Shelter"), + "phone": prop.get("phone"), + "website": prop.get("website"), + "opening_hours": prop.get("opening_hours"), + "email": prop.get("email"), + "location": { + "type": geometry.get("type", "Point"), + "coordinates": geometry.get("coordinates", []) + }, + "external_object_id": prop.get("@id"), + "external_source_id": "OSM" + } + +def send_to_api(data): + #Send transformed data to the Notfellchen API. + response = requests.post(ENDPOINT, headers=HEADERS, json=data) + if response.status_code == 201: + print(f"Success: Shelter '{data['name']}' uploaded.") + elif response.status_code == 400: + print(f"Error: Shelter '{data['name']}' already exists or invalid data.") + else: + print(f"Unexpected Error: {response.status_code} - {response.text}") + +def main(): + # Step 1: Load OSM data + osm_data = load_osm_data(OSM_DATA_FILE) + + + # Step 2: Process each shelter and send it to the API + for feature in osm_data.get("features", []): + shelter_data = transform_osm_data(feature) + send_to_api(shelter_data) + +if __name__ == "__main__": + main()