Metadata-Version: 2.4
Name: pybelugaxl
Version: 0.1.2
Summary: A Python library to track the Airbus BelugaXL flights in real time using FlightRadar24
Author: TGA25dev
License-Expression: MIT
Project-URL: Homepage, https://github.com/TGA25dev/pybelugaxl
Project-URL: Repository, https://github.com/TGA25dev/pybelugaxl.git
Project-URL: Issues, https://github.com/TGA25dev/pybelugaxl/issues
Keywords: belugaxl,airbus,beluga,flightradar24,realtimetracking
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: FlightRadarAPI
Dynamic: license-file

# 🐋 pybelugaxl

A Python library to track the Airbus BelugaXL flights in real time using FlightRadar24.

## Features
- Fetch current BelugaXL flights
- Filter by registration number, flight status, or departure/arrival airport
- Returns detailed flight information: position, speed, altitude, departure/arrival times

## Usage
```python
from pybelugaxl import get_beluga

flights = get_beluga(status="enroute")
for f in flights:
    print(f"{f.registration}: {f.from_airport} -> {f.to_airport}, Altitude: {f.altitude} ft")
```

## Installation
```bash
pip install pybelugaxl
```

## Attribution 
Data is provided by the unofficial [FlightRadarAPI](https://github.com/JeanExtreme002/FlightRadarAPI)
 library (MIT License).

## License
This project uses an MIT license, see [LICENSE](LICENSE) file for more information.
