Search Flights
Filter the cleaned flights CSV for specific routes and dates.
Installation
pip install pandas
Quick Start
from search_flights import Flights
flights = Flights()
print(flights.run("New York", "Los Angeles", "2022-01-15"))
通过捆绑的航班数据集,按出发地、目的地和出发日期搜索航班。在提议航班选项或检查某个路线/日期组合是否存在时使用此技能。
Filter the cleaned flights CSV for specific routes and dates.
pip install pandas
from search_flights import Flights
flights = Flights()
print(flights.run("New York", "Los Angeles", "2022-01-15"))