skyscanner просмотр цен API вызов

Я тестирую Skyscanner. Просматривайте цены API-вызовов между Лондонским Станстедом и Миланом Бергамо. Единственный перевозчик, которого он может найти, - Pegasus Airlines. Я бы ожидал найти Ryanair и т. Д...... для справки: это фрагмент URL-адреса, который я открываю self.browsePrices = " http://partners.api.skyscanner.net/apiservices/browsequotes/v1.0/{страна} / {валюта} / {локали}/{originPlace}/{destinationPlace}/{outboundPartialDate}/{inboundPartialDate}?apiKey={apiKey}"

data = dict(country='UK',currency='GBP',
                locale='en-GB',originPlace='STN',
                destinationPlace='BGY',outboundPartialDate='2017-12-23',
                inboundPartialDate='2017-12-28',adults=1,children=0,
                infants=0,apiKey=self.apiKey)
browseUrl = self.browsePrices.format(**data)
response = urllib2.urlopen(site)
return simplejson.load(response)

единственная авиакомпания, которую он может найти, - Pegasus Airlines... Кто-нибудь может знать, почему?

С уважением, Марко

0 ответов

Другие вопросы по тегам