{ "info": { "author": "Amadeus", "author_email": "developers@amadeus.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "\nAmadeus Python SDK\n==================\n\n|Module Version| |Build Status| |Maintainability| |Dependencies|\n|Contact Support|\n\nAmadeus provides a set of APIs for the travel industry. Flights, Hotels,\nLocations and more.\n\nFor more details see the `Amadeus for Developers Portal\n`__ and the `class reference\n`__ here on GitHub.\n\nInstallation\n------------\n\nThis SDK requires Python 2.7+ or 3.4+. You can install it directly with pip.\n\n.. code:: sh\n\n pip install amadeus\n\nYou can also add it to your `requirements.txt` file and install using: \n\n.. code:: sh\n\n pip install -r requirements.txt\n\n\nGetting Started\n---------------\n\nTo make your first API call you will need to `register for an Amadeus Developer\nAccount `__ and set up your first\napplication.\n\n.. code:: py\n\n from amadeus import Client, ResponseError\n\n amadeus = Client(\n client_id='REPLACE_BY_YOUR_API_KEY',\n client_secret='REPLACE_BY_YOUR_API_SECRET'\n )\n\n try:\n response = amadeus.reference_data.urls.checkin_links.get(airlineCode='BA')\n print(response.data)\n except ResponseError as error:\n print(error)\n\n\nInitialization\n--------------\n\nThe client can be initialized directly.\n\n.. code:: py\n\n # Initialize using parameters\n amadeus = Client(client_id='REPLACE_BY_YOUR_API_KEY', client_secret='REPLACE_BY_YOUR_API_SECRET')\n\nAlternatively it can be initialized without any parameters if the\nenvironment variables ``AMADEUS_CLIENT_ID`` and\n``AMADEUS_CLIENT_SECRET`` are present.\n\n.. code:: py\n\n amadeus = Client()\n\nYour credentials can be found on the `Amadeus dashboard\n`__. `Sign\nup `__ for an account today.\n\nBy default the environment for the SDK is the ``test`` environment. To\nswitch to a production (paid-for) environment please switch the hostname\nas follows:\n\n.. code:: py\n\n amadeus = Client(hostname='production')\n\nDocumentation\n-------------\n\nAmadeus has a large set of APIs, and our documentation is here to get you\nstarted today. Head over to our `Reference\n`__\ndocumentation for in-depth information about every SDK method, its arguments\nand return types.\n\n - `Initialize the SDK `__\n - `Find an Airport `__\n - `Find a Flight `__\n - `Get Flight Inspiration `__\n\nMaking API calls\n----------------\n\nThis library conveniently maps every API path to a similar path.\n\nFor example, ``GET /v2/reference-data/urls/checkin-links?airlineCode=BA``\nwould be:\n\n.. code:: py\n\n amadeus.reference_data.urls.checkin_links.get(airlineCode='BA')\n\nSimilarly, to select a resource by ID, you can pass in the ID to the\nsingular path.\n\nFor example, ``GET /v2/shopping/hotel-offers/XZY`` would be:\n\n.. code:: py\n\n amadeus.shopping.hotel_offer('4BA070CE929E135B3268A9F2D0C51E9D4A6CF318BA10485322FA2C7E78C7852E').get()\n\nYou can make any arbitrary API call as well directly with the ``.get``\nmethod:\n\n.. code:: py\n\n amadeus.get('/v2/reference-data/urls/checkin-links', airlineCode='BA')\n\nResponse\n--------\n\nEvery API call returns a ``Response`` object. If the API call contained\na JSON response it will parse the JSON into the ``.result`` attribute.\nIf this data also contains a ``data`` key, it will make that available\nas the ``.data`` attribute. The raw body of the response is always\navailable as the ``.body`` attribute.\n\n.. code:: py\n\n from amadeus import Location\n\n response = amadeus.reference_data.locations.get(\n keyword='LON',\n subType=Location.ANY\n )\n\n print(response.body) #=> The raw response, as a string\n print(response.result) #=> The body parsed as JSON, if the result was parsable\n print(response.data) #=> The list of locations, extracted from the JSON\n\nPagination\n----------\n\nIf an API endpoint supports pagination, the other pages are available\nunder the ``.next``, ``.previous``, ``.last`` and ``.first`` methods.\n\n.. code:: py\n\n from amadeus import Location\n\n response = amadeus.reference_data.locations.get(\n keyword='LON',\n subType=Location.ANY\n )\n\n amadeus.next(response) #=> returns a new response for the next page\n\nIf a page is not available, the method will return ``None``.\n\nLogging & Debugging\n-------------------\n\nThe SDK makes it easy to add your own logger.\n\n.. code:: py\n\n import logging\n\n logger = logging.getLogger('your_logger')\n logger.setLevel(logging.DEBUG)\n\n amadeus = Client(\n client_id='REPLACE_BY_YOUR_API_KEY',\n client_secret='REPLACE_BY_YOUR_API_SECRET',\n logger=logger\n )\n\nAdditionally, to enable more verbose logging, you can set the\nappropriate level on your own logger, though the easiest way would be to\nenable debugging via a parameter on initialization, or using the\n``AMADEUS_LOG_LEVEL`` environment variable.\n\n.. code:: py\n\n amadeus = Client(\n client_id='REPLACE_BY_YOUR_API_KEY',\n client_secret='REPLACE_BY_YOUR_API_SECRET',\n log_level='debug'\n )\n\nList of supported endpoints\n---------------------------\n\n.. code:: py\n\n # Flight Inspiration Search\n amadeus.shopping.flight_destinations.get(origin='MAD')\n\n # Flight Cheapest Date Search\n amadeus.shopping.flight_dates.get(origin='MAD', destination='MUC')\n\n # Flight Low-fare Search\n amadeus.shopping.flight_offers.get(origin='MAD', destination='NYC', departureDate='2019-08-01')\n\n # Flight Checkin Links\n amadeus.reference_data.urls.checkin_links.get(airlineCode='BA')\n\n # Airline Code Lookup\n amadeus.reference_data.airlines.get(airlineCodes='U2')\n\n # Airport and City Search (autocomplete)\n # Find all the cities and airports starting by 'LON'\n amadeus.reference_data.locations.get(keyword='LON', subType=Location.ANY)\n # Get a specific city or airport based on its id\n amadeus.reference_data.location('ALHR').get()\n\n # Airport Nearest Relevant Airport (for London)\n amadeus.reference_data.locations.airports.get(longitude=0.1278, latitude=51.5074)\n\n # Flight Most Searched Destinations\n # Which were the most searched flight destinations from Madrid in August 2017?\n amadeus.travel.analytics.air_traffic.searched.get(originCityCode='MAD', marketCountryCode='ES', searchPeriod='2017-08')\n # How many people in Spain searched for a trip from Madrid to New-York in September 2017?\n amadeus.travel.analytics.air_traffic.searched_by_destination.get(originCityCode='MAD', destinationCityCode='NYC', marketCountryCode='ES', searchPeriod='2017-08')\n\n # Flight Most Booked Destinations\n amadeus.travel.analytics.air_traffic.booked.get(originCityCode='MAD', period='2017-08')\n\n # Flight Most Traveled Destinations\n amadeus.travel.analytics.air_traffic.traveled.get(originCityCode='MAD', period='2017-01')\n\n # Flight Busiest Travel Period\n amadeus.travel.analytics.air_traffic.busiest_period.get(cityCode='MAD', period='2017', direction='ARRIVING')\n\n # Hotel Search\n # Get list of Hotels by city code\n amadeus.shopping.hotel_offers.get(cityCode = 'LON')\n # Get list of offers for a specific hotel\n amadeus.shopping.hotel_offers_by_hotel.get(hotelId = 'IALONCHO')\n # Confirm the availability of a specific offer\n amadeus.shopping.hotel_offer('D5BEE9D0D08B6678C2F5FAD910DC110BCDA187D21D4FCE68ED423426D0A246BB').get()\n # Point of Interest\n # What are the popular places in Barcelona (based a geo location and a radius)\n amadeus.reference_data.locations.points_of_interest.get(latitude=41.397158, longitude=2.160873)\n # What are the popular places in Barcelona? (based on a square)\n amadeus.reference_data.locations.points_of_interest.by_square.get(north=41.397158, west=2.160873, south=41.394582, east=2.177181)\n\n\nDevelopment & Contributing\n--------------------------\n\nWant to contribute? Read our `Contributors\nGuide <.github/CONTRIBUTING.md>`__ for guidance on installing and\nrunning this code in a development environment.\n\nLicense\n-------\n\nThis library is released under the `MIT License `__.\n\nHelp\n----\n\nOur `developer support team `__ is here\nto help you. You can find us on `StackOverflow `__, and `email `__.\n\n.. |Module Version| image:: https://badge.fury.io/py/amadeus.svg\n :target: https://pypi.org/project/amadeus/\n.. |Build Status| image:: http://img.shields.io/travis/amadeus4dev/amadeus-python.svg\n :target: http://travis-ci.org/amadeus4dev/amadeus-python\n.. |Maintainability| image:: https://api.codeclimate.com/v1/badges/c2e19cf9628d6f4aece2/maintainability\n :target: https://codeclimate.com/github/amadeus4dev/amadeus-python/maintainability\n.. |Dependencies| image:: https://raw.githubusercontent.com/amadeus4dev/amadeus-python/master/.github/images/dependencies.svg?sanitize=true\n :target: ttps://badge.fury.io/py/amadeus\n.. |Contact Support| image:: https://raw.githubusercontent.com/amadeus4dev/amadeus-python/master/.github/images/support.svg?sanitize=true\n :target: http://developers.amadeus.com/support\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/amadeus4dev/amadeus-python", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "amadeus", "package_url": "https://pypi.org/project/amadeus/", "platform": "", "project_url": "https://pypi.org/project/amadeus/", "project_urls": { "Homepage": "https://github.com/amadeus4dev/amadeus-python" }, "release_url": "https://pypi.org/project/amadeus/3.1.0/", "requires_dist": null, "requires_python": ">=2.7.0", "summary": "Python module for the Amadeus travel APIs", "version": "3.1.0" }, "last_serial": 5012391, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "c811df6bc47d22eb353a245d55fbdc97", "sha256": "600c615973d524f1fe4cc1b92d05485e927350e2714195692eb60925e075aa97" }, "downloads": -1, "filename": "amadeus-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c811df6bc47d22eb353a245d55fbdc97", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5428, "upload_time": "2015-08-03T02:57:32", "url": "https://files.pythonhosted.org/packages/31/c7/d112f8ef7ea5fc3632c2719a7df9a477bd6407b1b56e80c6031592cec32b/amadeus-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be0a4a74b72207c7b8630d787f71ccd6", "sha256": "b7fb514822ec6905bdcc5c484b9fe6b6e5136fbf78744ee0cb12842642a24fff" }, "downloads": -1, "filename": "amadeus-0.1.0.tar.gz", "has_sig": false, "md5_digest": "be0a4a74b72207c7b8630d787f71ccd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15123, "upload_time": "2015-08-03T02:57:36", "url": "https://files.pythonhosted.org/packages/83/8d/f37fef54315783022a96d8d8f0c9b3aab558a632aa46d7c4a3aff7fbb698/amadeus-0.1.0.tar.gz" } ], "0.1.0a1": [ { "comment_text": "", "digests": { "md5": "22881b0e41984472f07abe575db85c55", "sha256": "dc7843bc77029e30ccf77611f6db3ebc1c75a270f741fbd1338dd229d688a6dc" }, "downloads": -1, "filename": "amadeus-0.1.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "22881b0e41984472f07abe575db85c55", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4478, "upload_time": "2015-08-01T09:38:37", "url": "https://files.pythonhosted.org/packages/90/4e/740d918980320c5d95a6283f07d421bde74e324551898444b0f564b959ea/amadeus-0.1.0a1-py2.py3-none-any.whl" } ], "0.1.0b1": [ { "comment_text": "", "digests": { "md5": "f0f3caaecde9190e3b1fab2ce12927db", "sha256": "023f981c19c17155e41cf2e7ef34b524ae763f8b480b902c78c117f9a683393b" }, "downloads": -1, "filename": "amadeus-0.1.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f0f3caaecde9190e3b1fab2ce12927db", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4657, "upload_time": "2015-08-01T15:44:25", "url": "https://files.pythonhosted.org/packages/c2/86/2c85cbf37fd7d80205486f805b67fcd3cf2e4effceafd6d7f28d2c739202/amadeus-0.1.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ed821110972050047dda404bfbb290b", "sha256": "59a889713f0df97b9ba6a70448120bf352c44326b50ae2d0fa224f6682f8a6b4" }, "downloads": -1, "filename": "amadeus-0.1.0b1.tar.gz", "has_sig": false, "md5_digest": "1ed821110972050047dda404bfbb290b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14068, "upload_time": "2015-08-01T15:44:30", "url": "https://files.pythonhosted.org/packages/85/61/638cf1f12cbde3d4dc58a11ff415d450cd04e2dcfcc125b5162e9ae45d3a/amadeus-0.1.0b1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "1bcac90709954efeed3951376d398556", "sha256": "763786866029e6cbf1ddbba382cc89c28cb5b276460912820f7f749c26592703" }, "downloads": -1, "filename": "amadeus-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1bcac90709954efeed3951376d398556", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5985, "upload_time": "2015-10-04T13:11:30", "url": "https://files.pythonhosted.org/packages/a6/e9/03ffeeabd8f4221b50710ce33ca69f86b06426b76237c9b00686ee6f39a3/amadeus-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc81b6dd076298ff9934ba832ed74f9f", "sha256": "10cebc2c813777efb99693f743a7cca81577f8ee2e390de92c6cf83586a1fe5a" }, "downloads": -1, "filename": "amadeus-0.1.1.tar.gz", "has_sig": false, "md5_digest": "dc81b6dd076298ff9934ba832ed74f9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15718, "upload_time": "2015-10-04T13:11:36", "url": "https://files.pythonhosted.org/packages/02/a3/741d9573f0a67f76c322b8e0f5ce40ade3517e17ae855045f7c73434bc90/amadeus-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "bec3e1dac5c712fe748840ba45e622f7", "sha256": "d14cf30b6366445d600b85941ae3514c22fbb1af8fe2516752a40d05bac0b857" }, "downloads": -1, "filename": "amadeus-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bec3e1dac5c712fe748840ba45e622f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6002, "upload_time": "2015-10-04T13:26:55", "url": "https://files.pythonhosted.org/packages/e8/9d/079a2ea86c1520c9050f2cca7efe68670711e0035a161f041bdb60545ec3/amadeus-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88829aeaedef27269e964de77f88c110", "sha256": "6d081c859fec98e12af5372511a154efdf82a9b485d5b1f102d35a06ba3d8c3a" }, "downloads": -1, "filename": "amadeus-0.1.2.tar.gz", "has_sig": false, "md5_digest": "88829aeaedef27269e964de77f88c110", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15723, "upload_time": "2015-10-04T13:27:02", "url": "https://files.pythonhosted.org/packages/58/74/fbe21c2375f8548b5f69adc74f2094b4228b5b19ede324174f54433c32d3/amadeus-0.1.2.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ddd5d9d4a61058b04effb84df9e58f9b", "sha256": "a91b019f7796ea5de53d3530a773591ebcd739abf91f78910d9f8a32b1538782" }, "downloads": -1, "filename": "amadeus-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ddd5d9d4a61058b04effb84df9e58f9b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 32384, "upload_time": "2018-04-20T01:17:25", "url": "https://files.pythonhosted.org/packages/5a/c2/6cacaad2b64d01df38e2d0b6eed3ef6cdc38d3dbe528f886f2e34695e3ef/amadeus-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8942f271c6b59899761fddb2385c8a85", "sha256": "73b3b3745951710f1d83c67f422f4f31440a72b7da7608a608cc0d4bb0542521" }, "downloads": -1, "filename": "amadeus-1.0.0.tar.gz", "has_sig": false, "md5_digest": "8942f271c6b59899761fddb2385c8a85", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 16808, "upload_time": "2018-04-20T01:17:26", "url": "https://files.pythonhosted.org/packages/f7/d2/6d0bb59986c1dd127c63a3ad21ea73acf8d7deb5040975711bd796c652c2/amadeus-1.0.0.tar.gz" } ], "1.0.0b4": [ { "comment_text": "", "digests": { "md5": "1f2565d2f7e5d97b8e5797153c73f6b1", "sha256": "c92f172e11769a40f1c7ad027a62d7cdb1a2309038ecfbb607b98bd6f89f29f5" }, "downloads": -1, "filename": "amadeus-1.0.0b4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f2565d2f7e5d97b8e5797153c73f6b1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 30623, "upload_time": "2018-04-05T16:06:43", "url": "https://files.pythonhosted.org/packages/c7/de/5de81f66ef815f7b0b3e7415b5522106a2d59f6872eb9aa231ac9b92a7f4/amadeus-1.0.0b4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b428476133979a81b67856e97aa94d1", "sha256": "f50c857f0a72ea6da14e6b22280d1b7cfe84db46384e42f4d389647bcd2fb192" }, "downloads": -1, "filename": "amadeus-1.0.0b4.tar.gz", "has_sig": false, "md5_digest": "2b428476133979a81b67856e97aa94d1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 15883, "upload_time": "2018-04-05T16:06:44", "url": "https://files.pythonhosted.org/packages/26/0c/5669da93673fe83d0d048aedc8ddbd027265edb9950ca17ab4e0ed44b521/amadeus-1.0.0b4.tar.gz" } ], "1.0.0b5": [ { "comment_text": "", "digests": { "md5": "bbbc46b99774130545ee0d206b0fa2cf", "sha256": "3bbad67702854c9c6a2e974114dfc53bebb3dc783ceb6e61da3e1d07b269144d" }, "downloads": -1, "filename": "amadeus-1.0.0b5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bbbc46b99774130545ee0d206b0fa2cf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 30967, "upload_time": "2018-04-06T10:17:06", "url": "https://files.pythonhosted.org/packages/38/63/50c54b8db32b0d0828e27c23bddf335ded79a93fea44e7a2448e274d48a2/amadeus-1.0.0b5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23598ed2cc724c16dae57e6be1110f29", "sha256": "0305f88e12bd888904762974f450b4f7a3b3c17357bfefe65928568f0829e9ae" }, "downloads": -1, "filename": "amadeus-1.0.0b5.tar.gz", "has_sig": false, "md5_digest": "23598ed2cc724c16dae57e6be1110f29", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 16260, "upload_time": "2018-04-06T10:17:07", "url": "https://files.pythonhosted.org/packages/17/9f/58a9e1a48a7878196490d290d8c386448a9311738aa05a0c31d9dd4c050c/amadeus-1.0.0b5.tar.gz" } ], "1.0.0b6": [ { "comment_text": "", "digests": { "md5": "9cb3129de9484f920102e19f21f1282a", "sha256": "e4ede2e4d8965a106645621f919c40a4a5e1cd87ba3113487a669c42d297c6bd" }, "downloads": -1, "filename": "amadeus-1.0.0b6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9cb3129de9484f920102e19f21f1282a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 31102, "upload_time": "2018-04-06T10:50:42", "url": "https://files.pythonhosted.org/packages/cb/5e/da70ae83c676f6585e38774cef7448128abf9c955a8e592b6d7435e09ce8/amadeus-1.0.0b6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "19d37f3ea6fc44dd77b73d7a2144c040", "sha256": "e571666e7facaf85e4fb1ffc2a8ccf5c9d4be21bffb756eaf28012e14ef80663" }, "downloads": -1, "filename": "amadeus-1.0.0b6.tar.gz", "has_sig": false, "md5_digest": "19d37f3ea6fc44dd77b73d7a2144c040", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 16374, "upload_time": "2018-04-06T10:50:43", "url": "https://files.pythonhosted.org/packages/31/a8/61efb3892fe199752a6beabec6aa58d4f077019abc7673653899d01e7b38/amadeus-1.0.0b6.tar.gz" } ], "1.0.0b7": [ { "comment_text": "", "digests": { "md5": "ea9a0ac3501b117f859da6b5635aec5e", "sha256": "7928b318c1eec65d93b311d7430d88c77576ddc05f6b4abe886ec299bf208171" }, "downloads": -1, "filename": "amadeus-1.0.0b7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ea9a0ac3501b117f859da6b5635aec5e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 31120, "upload_time": "2018-04-09T15:48:38", "url": "https://files.pythonhosted.org/packages/6f/94/e859dda23241d9b80f680433cd1d19d5963e2954dcdb2d9c2d7c29dc3f6c/amadeus-1.0.0b7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9c8bb47d3bc1dbf82c7de808e1cc12a", "sha256": "3e78a5ce54d62b1c3849afb9afe3cd36721f58aa1f0c3a17d7619239bf04f834" }, "downloads": -1, "filename": "amadeus-1.0.0b7.tar.gz", "has_sig": false, "md5_digest": "d9c8bb47d3bc1dbf82c7de808e1cc12a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 16390, "upload_time": "2018-04-09T15:48:39", "url": "https://files.pythonhosted.org/packages/84/1a/b3b577e46735609ba1f7e3aeb836db4d504d09ad5cd2f588c962f9865515/amadeus-1.0.0b7.tar.gz" } ], "1.0.0b8": [ { "comment_text": "", "digests": { "md5": "8c4d4a0c3efac30b6ba99c81c1989ccd", "sha256": "a4a7b087613517dcfbaeb904d64148ce192c3817220fdb42b69eb894828af18a" }, "downloads": -1, "filename": "amadeus-1.0.0b8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c4d4a0c3efac30b6ba99c81c1989ccd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 31376, "upload_time": "2018-04-19T17:12:45", "url": "https://files.pythonhosted.org/packages/2e/9b/44e24b7117512b0e5e625fa05d2f9be1160b7d17d7c64a5b01e7c46db96b/amadeus-1.0.0b8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94706c32048246e975d9595ca26da476", "sha256": "03443b833119b9251db21ae500014c8f71beee31bff06236db82777bda2a7465" }, "downloads": -1, "filename": "amadeus-1.0.0b8.tar.gz", "has_sig": false, "md5_digest": "94706c32048246e975d9595ca26da476", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 16265, "upload_time": "2018-04-19T17:12:46", "url": "https://files.pythonhosted.org/packages/92/27/b886adbfb51d45a353d26582b68ec958de51fb8e08559485a27917118ca0/amadeus-1.0.0b8.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "271dd84f18129a4417dfebafdfcaf373", "sha256": "131db4b7d5c64a4875f048e35235e67a5384f15880e4dd1311c0ccd8f382b557" }, "downloads": -1, "filename": "amadeus-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "271dd84f18129a4417dfebafdfcaf373", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 35064, "upload_time": "2018-08-01T13:51:02", "url": "https://files.pythonhosted.org/packages/9d/bc/276784a86355b674249c43c46eb73ea081cabf4062c3b85798016fff3731/amadeus-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "866e82ea8f0a41ca3bbd546fa1d7edab", "sha256": "59bd394fccea2fe5d27e7cf4fbcb6b58a0dd1bf7b4c763c6dd0c5325fc3babca" }, "downloads": -1, "filename": "amadeus-1.1.0.tar.gz", "has_sig": false, "md5_digest": "866e82ea8f0a41ca3bbd546fa1d7edab", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 18468, "upload_time": "2018-08-01T13:51:03", "url": "https://files.pythonhosted.org/packages/07/5b/3dfbdedb38a20d0eba8b89c12833d5e52823050bfbd5da947f56fac69170/amadeus-1.1.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "dbcd3f3817bda5c04ac76eeb963e6330", "sha256": "8601a93197299f9816db76e3e8fe96520619e30a1958526ff59aba29aee719db" }, "downloads": -1, "filename": "amadeus-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dbcd3f3817bda5c04ac76eeb963e6330", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 36143, "upload_time": "2018-11-14T15:28:19", "url": "https://files.pythonhosted.org/packages/64/fe/7968a6a8d096966aa03e3c42fec7a0147dc2f3ba793319bb2627f0fb5dd4/amadeus-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5d9123d99cae6571a648551dfb9d730", "sha256": "600d9d932fc84a5cf09cd7fc14ac3ad97a5e48f6206719d67ab01f18fd3693cb" }, "downloads": -1, "filename": "amadeus-2.0.0.tar.gz", "has_sig": false, "md5_digest": "a5d9123d99cae6571a648551dfb9d730", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 21324, "upload_time": "2018-11-14T15:28:20", "url": "https://files.pythonhosted.org/packages/2d/62/3e9e06204a1ea6ecc563ff2c875a63fb688910534a528b09b144127697dd/amadeus-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "759985196c8b4ff0c7b93dfa56dba560", "sha256": "59b356f00431274beac2b78eff6cfc8b2ab43267bf0e40809ee465e9bcdd4b26" }, "downloads": -1, "filename": "amadeus-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "759985196c8b4ff0c7b93dfa56dba560", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 36631, "upload_time": "2019-01-17T16:37:19", "url": "https://files.pythonhosted.org/packages/a8/61/8bd8e4953f8cf07636df8e794c5d2887059e0c4b8dfc81a921e9c225aec6/amadeus-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b28fd630f84a147767af2c164704edb", "sha256": "76a508c30e56f118fa9acd045df3ba28866f93cb6a960ce7a2d063a3530ffa25" }, "downloads": -1, "filename": "amadeus-2.0.1.tar.gz", "has_sig": false, "md5_digest": "3b28fd630f84a147767af2c164704edb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 21846, "upload_time": "2019-01-17T16:37:21", "url": "https://files.pythonhosted.org/packages/24/7f/29cc437c0e60704c9fd809d72be1397923ecab788e0dba2005c3005ac18b/amadeus-2.0.1.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "1bdf2230954e477ea56baf7caa22f5d0", "sha256": "066270b9070f3b92820f4245212ce01aaf32083cb558252ee72ad8190250f067" }, "downloads": -1, "filename": "amadeus-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1bdf2230954e477ea56baf7caa22f5d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 36592, "upload_time": "2019-01-22T12:00:21", "url": "https://files.pythonhosted.org/packages/73/e6/cbf06c23426ce6132646d9764c0078cf22789cd27e9c7db9a7a2e4105afa/amadeus-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "060735aa5027c36971b4a7aae28010b2", "sha256": "6b7ff07b5b272865ac3680e047efff0ca553dbd19c27ffcaf209bb1968e6a789" }, "downloads": -1, "filename": "amadeus-3.0.0.tar.gz", "has_sig": false, "md5_digest": "060735aa5027c36971b4a7aae28010b2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 22149, "upload_time": "2019-01-22T12:00:23", "url": "https://files.pythonhosted.org/packages/7e/36/18361a2efe695efe1092a43bd113715bb507147e56036704e9ded9f21b83/amadeus-3.0.0.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "48da3fbc7b8eea1e289a3348e919b578", "sha256": "a47874ec4575a64f5ffde95bbdb1cd687904609afab5aa2a28540ddfd72375d7" }, "downloads": -1, "filename": "amadeus-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48da3fbc7b8eea1e289a3348e919b578", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 38896, "upload_time": "2019-04-01T10:18:28", "url": "https://files.pythonhosted.org/packages/25/06/e42e14e144c6ef03ae7cb6efa5c65558b8ef1b82bdfe4d0c57d46e45d6ac/amadeus-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abd1bc81d1c9307696caeaff5547b2b2", "sha256": "cc590d39c91a9310b0239495ee7997c08a66a9fc285f285c918c3a850620a652" }, "downloads": -1, "filename": "amadeus-3.1.0.tar.gz", "has_sig": false, "md5_digest": "abd1bc81d1c9307696caeaff5547b2b2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 23263, "upload_time": "2019-04-01T10:18:29", "url": "https://files.pythonhosted.org/packages/47/8c/a9188d8dc73599128357385e1c5cc6a620a1e48eeafdb76600457e935533/amadeus-3.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "48da3fbc7b8eea1e289a3348e919b578", "sha256": "a47874ec4575a64f5ffde95bbdb1cd687904609afab5aa2a28540ddfd72375d7" }, "downloads": -1, "filename": "amadeus-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48da3fbc7b8eea1e289a3348e919b578", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.0", "size": 38896, "upload_time": "2019-04-01T10:18:28", "url": "https://files.pythonhosted.org/packages/25/06/e42e14e144c6ef03ae7cb6efa5c65558b8ef1b82bdfe4d0c57d46e45d6ac/amadeus-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abd1bc81d1c9307696caeaff5547b2b2", "sha256": "cc590d39c91a9310b0239495ee7997c08a66a9fc285f285c918c3a850620a652" }, "downloads": -1, "filename": "amadeus-3.1.0.tar.gz", "has_sig": false, "md5_digest": "abd1bc81d1c9307696caeaff5547b2b2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.0", "size": 23263, "upload_time": "2019-04-01T10:18:29", "url": "https://files.pythonhosted.org/packages/47/8c/a9188d8dc73599128357385e1c5cc6a620a1e48eeafdb76600457e935533/amadeus-3.1.0.tar.gz" } ] }