Spaces:
Sleeping
Sleeping
File size: 4,029 Bytes
7f4e4c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
import requests
import json
import os
import datetime
from typing import List, Dict
SKITOUR_API_URL = 'https://skitour.fr/api/'
def get_massifs() -> List[Dict]:
"""
Fetch the list of massifs from the Skitour API.
Returns:
List[Dict]: List of massifs with their details.
"""
url = SKITOUR_API_URL + 'massifs'
headers = {'cle': os.getenv('SKITOUR_API_TOKEN')}
response = requests.get(url, headers=headers, timeout=10)
return response.json()
def get_topos(ids_massif: str) -> List[Dict]:
"""
Fetch ski touring itineraries for a given massif.
Args:
ids_massif (str): ID of the massif.
Returns:
List[Dict]: List of itineraries for the specified massif.
"""
url = SKITOUR_API_URL + 'topos'
headers = {'cle': os.getenv('SKITOUR_API_TOKEN')}
params = {'m': ids_massif}
response = requests.get(url, headers=headers, params=params, timeout=10)
return json.loads(response.text.replace('\\\\', '\\'))
def get_sommets(massif_id: str) -> List[Dict]:
"""
Fetch the list of summits for a given massif.
Args:
massif_id (str): ID of the massif.
Returns:
List[Dict]: List of summits with their details.
"""
url = SKITOUR_API_URL + 'sommets'
headers = {'cle': os.getenv('SKITOUR_API_TOKEN')}
params = {'m': massif_id}
response = requests.get(url, headers=headers, params=params)
response = response.json()
sommets = []
for _sommets in response:
sommets.append({
"name": _sommets['sommet'],
"lat": float(_sommets['latlon'][0]),
"lon": float(_sommets['latlon'][1]),
"range": _sommets['massif']['nom']
})
return sommets
def get_refuges(massif_ids: str) -> List[Dict]:
"""
Fetch the list of refuges for a given massif.
Args:
massif_ids (str): ID(s) of the massif(s).
Returns:
List[Dict]: List of refuges.
"""
url = SKITOUR_API_URL + 'refuges'
headers = {'cle': os.getenv('SKITOUR_API_TOKEN')}
params = {'m': massif_ids}
response = requests.get(url, headers=headers, params=params, timeout=10)
return response.json()
def get_details_topo(id_topo):
url = SKITOUR_API_URL + f'topo/{id_topo}'
headers = {'cle': os.getenv('SKITOUR_API_TOKEN')}
response = requests.get(url, headers=headers)
return response.json()
def get_conditions(massif_ids: str) -> List[Dict]:
"""
Fetch the list of refuges for a given massif.
Args:
massif_ids (str): ID(s) of the massif(s).
Returns:
List[Dict]: List of refuges.
"""
url = SKITOUR_API_URL + 'refuges'
headers = {'cle': os.getenv('SKITOUR_API_TOKEN')}
params = {'m': massif_ids}
response = requests.get(url, headers=headers, params=params, timeout=10)
return response.json()
def get_outing(id_outing: str) -> Dict:
"""
Fetch the details of a specific outing.
Args:
id_outing (str): ID of the outing.
Returns:
Dict: Details of the outing.
"""
url = SKITOUR_API_URL + f'sortie/{id_outing}'
headers = {'cle': os.getenv('SKITOUR_API_TOKEN')}
response = requests.get(url, headers=headers, timeout=10)
return response.json()
def get_recent_outings(massif_id: str) -> List[Dict]:
"""
Fetch the list of recent outings for a given massif.
Args:
massif_id (str): ID of the massif.
Returns:
List[Dict]: List of recent outings.
"""
url = SKITOUR_API_URL + 'sorties'
headers = {'cle': os.getenv('SKITOUR_API_TOKEN')}
params = {'m': massif_id, 'j':30}
response = requests.get(url, headers=headers, params=params, timeout=10)
response = response.json()
if response:
for _response in response:
_response['date'] = datetime.datetime.fromtimestamp(float(_response['date'])).strftime('%Y-%m-%d')
_response['description'] = get_outing(_response['id'])
return response
else:
return []
|