rs1090-python 0.5.2

Python binding to rs1090, a library to decode Mode S and ADS-B signals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
from rs1090 import aircraft_information


def test_info() -> None:
    info = aircraft_information("39b415")
    assert info == {
        "country": "France",
        "registration": "F-HNAV",
        "pattern": "^F-",
        "icao24": "39b415",
        "flag": "🇫🇷",
    }