Как сохранить полученные данные в базе данных по моему выбору на моем ноутбуке с помощью Python?
How to process the retrieved data and store it in a database of your choice. This should be stored using a high-resolution index appropriate for the data type.
Что я уже пробовал:
import requests import json url = "https://ws1.chic.ulster.ac.uk/SensorCentral/REST/SensorDataRangeNanos/flgSh9oHnutzvZVOnnixFNjXIda2zula_101_101?startTs=1594297110372000000&endTs=1594297110372000000" response = requests.get(url) data = response.text parsed = json.loads(data) print(json.dumps(parsed, indent=1))