curl
curl 'https://api.weather.gov/points/40.7128,-74.0060'
import requests
resp = requests.get("https://api.weather.gov/points/40.7128,-74.0060")
data = resp.json()
import zingu_apis
api = zingu_apis.api("weather")
result = api.fetch("points/{latitude},{longitude}")
for item in result:
print(item)
const resp = await fetch("https://api.weather.gov/points/40.7128,-74.0060");
const data = await resp.json();