Skip to main content

Python SDK for the Flightradar24 API

Project description

Flightradar24 Python SDK

Python SDK for the Flightradar24 API.

Features

  • Access to all Flightradar24 API v1 endpoints.
  • Intuitive client interface: client.airports.get_full("WAW")
  • Typed responses.
  • Robust error handling with custom exceptions.
  • Synchronous client (async coming soon).
  • Lightweight input validation for common parameters.

Installation

Release Version (TBD)

Using pip:

pip install fr24sdk

Using uv:

uv pip install fr24sdk

Github version

Using pip:

pip install https://github.com/Flightradar24/fr24api-sdk-python

Using uv:

uv pip install https://github.com/Flightradar24/fr24api-sdk-python

Setting up the environment with pip:

python -m venv .venv
source .venv/bin/activate # or .venv\Scripts\activate on Windows
pip install -e ".[dev]"

Setting up the environment with uv:

# Ensure uv is installed (e.g., pip install uv)
uv venv .venv # Creates a virtual environment using uv
source .venv/bin/activate # or .venv\Scripts\activate on Windows
uv pip install -e ".[dev]"

SDK Usage Guide

This guide provides a comprehensive overview of how to use the fr24sdk to interact with the Flightradar24 API.

1. Client Initialization

The Client is your main entry point to the API.

Using Environment Variable (Recommended):

Ensure your API token is set as an environment variable FR24_API_TOKEN.

export FR24_API_TOKEN="your_actual_token_here" # On Linux/macOS
# set FR24_API_TOKEN=your_actual_token_here # On Windows Command Prompt
# $Env:FR24_API_TOKEN="your_actual_token_here" # On Windows PowerShell

Then, initialize the client:

from fr24sdk.client import Client

client = Client()

Passing Token Directly: You can also pass the API token directly during client initialization.

client = Client(api_token="your_actual_token_here")

Using as a Context Manager: This ensures the underlying HTTP client is closed properly.

from fr24sdk.client import Client

with Client() as client:
    client.flight_summary(flight_ids="")
    pass

2. Accessing API Resources

The client provides access to different API resources as attributes. For example:

  • client.airlines: Fetch airline details.
  • client.airports: Fetch airport details.
  • client.live: Get live flight data, including flights within specific geographical bounds.
  • client.historic: Query historic flight information.
  • client.flight_summary: Retrieve summaries for specific flights.
  • client.flight_tracks: Access flight track data.
  • client.usage: Check your API usage statistics.

Each resource object then has methods to fetch data related to that resource.

3. Resource Examples

The SDK provides intuitive access to various API resources. Here's how you can typically interact with them:

a. Fetching Airport Details

This example demonstrates fetching detailed information for an airport (e.g., Warsaw Chopin Airport - WAW) and accessing its attributes.

from fr24sdk.client import Client
from fr24sdk.exceptions import ApiError

# Assumes client is initialized (e.g., via environment variable or by passing a token)
# For robust error handling and resource management, using a context manager is recommended:
# with Client() as client:
#     # your code here

# Initialize client (ensure FR24_API_TOKEN is set or pass api_token="your_token")
client = Client()

airport_iata = "WAW"
print(f"Fetching full details for airport: {airport_iata}")

airport_details = client.airports.get_full(airport_iata)

if airport_details:
    print(f"  Name: {airport_details.name}")
    print(f"  ICAO: {airport_details.icao}")
    print(f"  City: {airport_details.city}")
    print(f"  Country: {airport_details.country_name}")
    print(f"  Latitude: {airport_details.lat}")
    print(f"  Longitude: {airport_details.lon}")

b. Other Available Resources

The client provides access to a comprehensive set of Flightradar24 API resources, including but not limited to:

  • client.airlines: Fetch airline details.
  • client.live: Get live flight data, including flights within specific geographical bounds.
  • client.flight_summary: Retrieve summaries for specific flights.
  • client.flight_tracks: Access flight track data.
  • client.historic: Query historic flight information.
  • client.usage: Check your API usage statistics.

Each of these resources offers methods to interact with the corresponding API endpoints. For example, you might use client.live.get_flights(...) or client.airlines.get_by_iata(...). Please refer to the SDK's source code or future detailed documentation for specific method signatures and parameters.

4. Handling Responses

API methods return Python objects that represent the JSON response from the API. You can access data using dot notation, as shown in the examples.

# Example with AirportFull object
# waw_full = client.airports.get_full("WAW")
# print(waw_full.name)
# print(waw_full.timezone_name)

5. Error Handling

The SDK uses custom exceptions to indicate errors. The base exception is Fr24SdkError. More specific errors like ApiError, AuthenticationError, RateLimitError, etc., inherit from it.

import os
from fr24sdk.client import Client
from fr24sdk.exceptions import ApiError, AuthenticationError, Fr24SdkError # Import relevant exceptions

# Assumes FR24_API_TOKEN is set, or pass it to Client()
try:
    with Client() as client:
        # Example: Intentionally try to get a non-existent airport
        airport = client.airports.get_full("INVALID_IATA")
        if airport:
            print(airport.name)

except AuthenticationError:
    print("Authentication failed. Please check your API token.")
except ApiError as e:
    print(f"API Error occurred: Status {e.status}, Message: {e.message}")
    print(f"Request URL: {e.request_url}")
    if e.body:
        print(f"Response body: {e.body}")
except Fr24SdkError as e:
    print(f"An SDK-specific error occurred: {e}")
except Exception as e:
    print(f"An unexpected error occurred: {e}")

6. Closing the Client

If you are not using the client as a context manager (with Client() as client:), you should explicitly close it to release resources:

client = Client()
# ... use client ...
client.close()

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fr24sdk-0.0.1.tar.gz (118.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fr24sdk-0.0.1-py3-none-any.whl (25.1 kB view details)

Uploaded Python 3

File details

Details for the file fr24sdk-0.0.1.tar.gz.

File metadata

  • Download URL: fr24sdk-0.0.1.tar.gz
  • Upload date:
  • Size: 118.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.9

File hashes

Hashes for fr24sdk-0.0.1.tar.gz
Algorithm Hash digest
SHA256 879c5612de8ebfb19ea467a576478c9f900931df931b304c6fa7c903b7900c37
MD5 69bfa61f891b14b4eb6e928d09488bee
BLAKE2b-256 796d6103af90af27c92a42ef79d9bbed325684714587e36f9590973000df9053

See more details on using hashes here.

File details

Details for the file fr24sdk-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: fr24sdk-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 25.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.9

File hashes

Hashes for fr24sdk-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 99eab9e0a904e7c52ce92a8f2c00ab4272ddb9ed2fa1f2af0e96c24654e249db
MD5 7e716353b889e1d9eb60f817c542f666
BLAKE2b-256 b9923cf0322aa7e1cc00feebef90f9fc986922c81e70f63063d5ead5e8c03a19

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page