mirror of
https://github.com/michivonah/themepark-alerts.git
synced 2025-12-22 20:36:27 +01:00
14 lines
No EOL
221 B
Python
14 lines
No EOL
221 B
Python
import requests
|
|
|
|
endpoint = "https://api.wartezeiten.app/v1/waitingtimes"
|
|
|
|
header = {
|
|
"language":"de",
|
|
"park":"europapark"
|
|
}
|
|
|
|
req = requests.get(url = endpoint, params = header)
|
|
|
|
result = req.json()
|
|
|
|
print(result) |