Mirror of https://github.com/Jxck-S/plane-notify This is the backend to ElonsJet and other bots
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
357 B

def pullplane(TRACK_PLANE):
import configparser
config = configparser.ConfigParser()
config.read('config.ini')
from opensky_api import OpenSkyApi
opens_api = OpenSkyApi(config.get('OPENSKY', 'USERNAME'), config.get('OPENSKY', 'PASSWORD'))
planeData = opens_api.get_states(time_secs=0, icao24=TRACK_PLANE.lower())
return planeData