Compare commits
No commits in common. "e66945a82538fbdf4ff34cf52c1b4ecd8697f719" and "1e39e75117884375d69a79a51fcefb22e43a6107" have entirely different histories.
e66945a825
...
1e39e75117
|
@ -93,7 +93,6 @@ def load_flight_bookings(data_dir: str) -> list[StrDict]:
|
|||
"""Load flight bookings."""
|
||||
bookings = load_travel("flight", "flights", data_dir)
|
||||
airlines = yaml.safe_load(open(os.path.join(data_dir, "airlines.yaml")))
|
||||
iata = {a["iata"]: a["name"] for a in airlines}
|
||||
airports = travel.parse_yaml("airports", data_dir)
|
||||
for booking in bookings:
|
||||
for flight in booking["flights"]:
|
||||
|
@ -102,7 +101,7 @@ def load_flight_bookings(data_dir: str) -> list[StrDict]:
|
|||
if flight["to"] in airports:
|
||||
flight["to_airport"] = airports[flight["to"]]
|
||||
if "airline" in flight:
|
||||
flight["airline_name"] = iata.get(flight["airline"], "[unknown]")
|
||||
flight["airline_name"] = airlines.get(flight["airline"], "[unknown]")
|
||||
|
||||
flight["distance"] = travel.flight_distance(flight)
|
||||
return bookings
|
||||
|
|
|
@ -13,11 +13,9 @@ import agenda.trip
|
|||
import agenda.types
|
||||
|
||||
config = __import__("config.default", fromlist=[""])
|
||||
|
||||
data_dir = config.PERSONAL_DATA
|
||||
|
||||
|
||||
def check_trips() -> None:
|
||||
"""Check trips."""
|
||||
trip_list = agenda.trip.build_trip_list(data_dir)
|
||||
print(len(trip_list), "trips")
|
||||
|
||||
|
@ -25,27 +23,15 @@ def check_trips() -> None:
|
|||
print(len(coords), "coords")
|
||||
print(len(routes), "routes")
|
||||
|
||||
|
||||
def check_flights() -> None:
|
||||
"""Check flights."""
|
||||
flights = agenda.travel.parse_yaml("flights", data_dir)
|
||||
print(len(flights), "flights")
|
||||
|
||||
|
||||
def check_trains() -> None:
|
||||
"""Check trains."""
|
||||
trains = agenda.travel.parse_yaml("trains", data_dir)
|
||||
print(len(trains), "trains")
|
||||
|
||||
|
||||
def check_conferences() -> None:
|
||||
"""Check conferences."""
|
||||
conferences = agenda.conference.get_list(os.path.join(data_dir, "conferences.yaml"))
|
||||
print(len(conferences), "conferences")
|
||||
|
||||
|
||||
def check_events() -> None:
|
||||
"""Check events."""
|
||||
today = date.today()
|
||||
last_year = today - timedelta(days=365)
|
||||
next_year = today + timedelta(days=2 * 365)
|
||||
|
@ -53,9 +39,6 @@ def check_events() -> None:
|
|||
events = agenda.events_yaml.read(data_dir, last_year, next_year)
|
||||
print(len(events), "events")
|
||||
|
||||
|
||||
def check_airports() -> None:
|
||||
"""Check airports."""
|
||||
airports = typing.cast(
|
||||
dict[str, agenda.types.StrDict], agenda.travel.parse_yaml("airports", data_dir)
|
||||
)
|
||||
|
@ -65,34 +48,8 @@ def check_airports() -> None:
|
|||
assert agenda.get_country(airport["country"])
|
||||
|
||||
|
||||
def check_stations() -> None:
|
||||
"""Check stations."""
|
||||
stations = agenda.travel.parse_yaml("stations", data_dir)
|
||||
print(len(stations), "stations")
|
||||
for station in stations:
|
||||
assert "country" in station
|
||||
assert agenda.get_country(station["country"])
|
||||
|
||||
|
||||
def check_airlines() -> None:
|
||||
"""Check airlines."""
|
||||
airlines = agenda.travel.parse_yaml("airlines", data_dir)
|
||||
print(len(airlines), "airlines")
|
||||
for airline in airlines:
|
||||
assert airline.keys() == {"icao", "iata", "name"}
|
||||
|
||||
|
||||
def check() -> None:
|
||||
"""Validate personal data YAML files."""
|
||||
check_trips()
|
||||
check_flights()
|
||||
check_trains()
|
||||
check_conferences()
|
||||
check_events()
|
||||
check_airports()
|
||||
check_stations()
|
||||
check_airlines()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
check()
|
||||
|
|
Loading…
Reference in a new issue