Last active
May 24, 2021 16:50
-
-
Save afcotroneo/16908e07fa6fb5b2ab12c06197f3b47d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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