Source code for amadeus.shopping._flight_offers_search

from amadeus.client.decorator import Decorator


[docs]class FlightOffersSearch(Decorator, object):
[docs] def get(self, **params): ''' Get the cheapest flights on a given journey .. code-block:: python amadeus.shopping.flight_offers_search.get( originLocationCode='MAD', destinationLocationCode='BOS', departureDate='2019-11-01', adults='1' ) :param originLocationCode: the City/Airport IATA code from which the flight will depart. ``"MAD"``, for example for Madrid. :param destinationLocationCode: the City/Airport IATA code to which the flight is going. ``"BOS"``, for example for Boston. :param departureDate: the date on which to fly out, in `YYYY-MM-DD` format :param adults: the number of adult passengers with age 12 or older :rtype: amadeus.Response :raises amadeus.ResponseError: if the request could not be completed ''' return self.client.get('/v2/shopping/flight-offers', **params)
[docs] def post(self, body): ''' Get the cheapest flights on a given journey. .. code-block:: python amadeus.shopping.flight_offers_search.post(body) :param body: the parameters to send to the API :rtype: amadeus.Response :raises amadeus.ResponseError: if the request could not be completed ''' return self.client.post('/v2/shopping/flight-offers', body)