Skip to content

Instantly share code, notes, and snippets.

@afcotroneo
Last active May 24, 2021 16:50
Show Gist options
  • Save afcotroneo/16908e07fa6fb5b2ab12c06197f3b47d to your computer and use it in GitHub Desktop.
Save afcotroneo/16908e07fa6fb5b2ab12c06197f3b47d to your computer and use it in GitHub Desktop.
import json
import pandas as pd
import ibis
import requests
import time
satid = 25544
url = "https://api.n2yo.com/rest/v1/satellite/positions/"+str(satid)+"/41.702/-76.014/0/1/&apiKey=someKey"
res = requests.get(url)
satellites = json.loads(res.text)
satellites
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment