fast-flights 2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fast_flights/__init__.py +20 -0
- fast_flights/_generated_enum.py +3315 -0
- fast_flights/cookies.proto +15 -0
- fast_flights/cookies_impl.py +49 -0
- fast_flights/cookies_pb2.py +32 -0
- fast_flights/core.py +153 -0
- fast_flights/fallback_playwright.py +52 -0
- fast_flights/filter.py +26 -0
- fast_flights/flights.proto +42 -0
- fast_flights/flights_impl.py +179 -0
- fast_flights/flights_pb2.py +35 -0
- fast_flights/primp.py +7 -0
- fast_flights/primp.pyi +117 -0
- fast_flights/py.typed +0 -0
- fast_flights/schema.py +23 -0
- fast_flights/search.py +18 -0
- fast_flights-2.1.dist-info/METADATA +200 -0
- fast_flights-2.1.dist-info/RECORD +20 -0
- fast_flights-2.1.dist-info/WHEEL +4 -0
- fast_flights-2.1.dist-info/licenses/LICENSE +21 -0
fast_flights/__init__.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from .cookies_impl import Cookies
|
|
2
|
+
from .core import get_flights_from_filter, get_flights
|
|
3
|
+
from .filter import create_filter
|
|
4
|
+
from .flights_impl import Airport, FlightData, Passengers, TFSData
|
|
5
|
+
from .schema import Flight, Result
|
|
6
|
+
from .search import search_airport
|
|
7
|
+
|
|
8
|
+
__all__ = [
|
|
9
|
+
"Airport",
|
|
10
|
+
"TFSData",
|
|
11
|
+
"create_filter",
|
|
12
|
+
"FlightData",
|
|
13
|
+
"Passengers",
|
|
14
|
+
"get_flights_from_filter",
|
|
15
|
+
"Result",
|
|
16
|
+
"Flight",
|
|
17
|
+
"search_airport",
|
|
18
|
+
"Cookies",
|
|
19
|
+
"get_flights",
|
|
20
|
+
]
|