skillfed

fr24

Retrieve Flightradar24 data over gRPC

fr24 v0.3.1 97.8K downloads/30d#13,126 on PyPI44
Permissive license MIT License Copyright (c) 2023 Abraham Cheung Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to… (full text in the JSON record) Active released

What it is and what it does

fr24 is a Python client for Flightradar24's gRPC API that fetches real-time and historical flight data—including live feeds within geographic bounds, aircraft tracking, flight status, and detailed aircraft information. It uses asynchronous programming to handle concurrent requests efficiently and supports multiple output formats (protobuf, dictionary, Polars dataframe) plus file-based caching via platformdirs. The library comes with minimal core dependencies but offers optional extras for dataframe I/O (polars) and a command-line interface.

The package is designed for developers building aviation data applications, research tools, or monitoring systems that need structured access to Flightradar24's data without relying on deprecated JSON endpoints. It handles gRPC protocol details internally, exposing a clean async API. As of May 2026, Cloudflare bot protection with TLS fingerprinting requires gRPC—the library's primary transport—making it the supported path forward for programmatic access.

Use it for:

  • Monitor real-time aircraft positions and flight status within specific geographic regions for air traffic analysis.
  • Build historical flight tracking dashboards by caching live feed snapshots and querying them later with Polars.
  • Retrieve detailed flight information (origin, destination, aircraft type, callsign) for a specific live flight.
  • Export flight data to Parquet or CSV for downstream analysis in data pipelines or research workflows.
  • Query the most viewed flights or nearest aircraft within a radius for real-time aviation monitoring applications.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

fr24 retrieves real-time and historical flight data from Flightradar24 using gRPC, supporting live feeds, flight tracking, status updates, and detailed aircraft information.

Yes. fr24 is actively maintained, has low install friction, no known vulnerabilities, and provides the only supported path to Flightradar24 data after JSON API deprecation. Install it if you need programmatic access to flight data; be aware you'll need valid Flightradar24 credentials and should review the legal notice regarding data usage restrictions.

Install

fr24 on PyPI

pip

pip install fr24

uv

uv add fr24

poetry

poetry add fr24

Installing fr24

Before you install

Low install friction with six runtime dependencies. Actively maintained with recent commits and no known vulnerabilities. Supports Python 3.9 through 3.14.

License in practice

MIT license permits free use, modification, and redistribution with minimal restrictions—suitable for commercial and open-source projects.

Quickstart

import asyncio
from fr24 import FR24, BoundingBox

async def main():
    async with FR24() as client:
        bbox = BoundingBox(south=42, north=52, west=-8, east=10)
        result = await client.live_feed.fetch(bbox)
        print(result.to_dict())

asyncio.run(main())

Requires Flightradar24 subscription key and token (via environment variables or explicit configuration); as of 2026-05-01, JSON APIs are no longer supported due to Cloudflare bot protection.

Verify before relying

  • Whether Cloudflare bot protection affects reliability or requires authentication beyond what the library handles
  • Performance characteristics under high-frequency polling or concurrent request loads
  • Whether gRPC endpoint availability or rate limits are documented

Package facts

License MIT License Copyright (c) 2023 Abraham Cheung Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to… (full text in the JSON record) (permissive)
Python support supports the current Python release (>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 6 — httpx, isqx, orjson, platformdirs, protobuf, typing-extensions
Maintenance actively maintained — 102 days since the last release
Last repo commit
First released
Downloads 97,798/month — #13,126 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: fr24-0.3.1-py3-none-any.whl

Development Status :: 4 - BetaIntended Audience :: Information TechnologyIntended Audience :: Science/ResearchLicense :: OSI Approved :: MIT LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.9Typing :: Typed

Tags

flightradar24 data retrievalflight tracking apigrpc flight datareal-time aircraft trackingaviation data clientflight status updatesaircraft position data
aviation-datagrpc-clientasync-api

More Internet packages