We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a586cc7 commit c7c1f0fCopy full SHA for c7c1f0f
FlightDealsStart/flight_data.py
@@ -1,7 +1,7 @@
1
from FlightDealsStart.data_manager import DataManager
2
3
class FlightData:
4
- #This class is responsible for structuring the flight data.
+ # This class is responsible for structuring the flight data.
5
6
def __init__(self, api_key: str):
7
self.__flights = DataManager(api_key).get_flights_from_google_sheet()
FlightDealsStart/flight_search.py
@@ -1,7 +1,9 @@
import requests
class FlightSearch:
- #This class is responsible for talking to the Flight Search API.
+ # This class is responsible for talking to the Flight Search API.
+ # https://tequila.kiwi.com/
+ # https://api.tequila.kiwi.com/v2/search?
8
def __init__(self):
9
pass
0 commit comments