Install & Compatibility
Where this runs
tested against v1.5.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 70.6MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 3.3s · import 0.000s · 69MB
60MB installed
● package 60MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
FlightRadar24API
✓ from FlightRadar24 import FlightRadar24API
✗ from FlightRadarAPI import FlightRadarAPI
Initialize the API with credentials and fetch live flight data.
from FlightRadarAPI import FlightRadarAPI
# Initialize with your FlightRadar24 username/password or token
username = os.environ.get('FR24_USERNAME', '')
password = os.environ.get('FR24_PASSWORD', '')
api = FlightRadarAPI(username=username, password=password)
# Get real-time flights (returns list of Flight objects)
flights = api.get_flights()
for flight in flights:
print(flight.callsign, flight.latitude, flight.longitude)
Upgrade
Version history
1.5.1latest on PyPI · released May 12, 2026
Audit
Dependencies
requestsrequiredHTTP library for API calls