Skip to content

Commit c439a6f

Browse files
committed
Updating portal url to developers.amadeus.con, and adding stackoverflow url and support email address
1 parent 1dc8b75 commit c439a6f

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.github/SUPPORT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Amadeus Support
22

3-
Our [developer support team](https://developer.amadeus.com/developers) is here to help you. You can find us on [Twitter](#), [StackOverflow](#), and [email](#).
3+
Our [developer support team](https://developers.amadeus.com/developers) is here to help you. You can find us on [Twitter](#), [StackOverflow](https://stackoverflow.com/questions/tagged/amadeus), and [email](#).

README.rst

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Amadeus provides a set of APIs for the travel industry. Flights, Hotels,
88
Locations and more.
99

1010
For more details see the `Python
11-
documentation <https://developer.amadeus.com/docs/python>`__ on
12-
`Amadeus.com <https://developer.amadeus.com>`__ and the `class
11+
documentation <https://developers.amadeus.com/docs/python>`__ on
12+
`Amadeus.com <https://developers.amadeus.com>`__ and the `class
1313
reference <https://amadeus4dev.github.io/amadeus-python>`__ here on
1414
GitHub.
1515

@@ -24,15 +24,15 @@ directly with pip.
2424
pip install amadeus==1.0.0b6
2525
2626
**Next**: `Get Started with the Python
27-
SDK. <https://developer.amadeus.com/docs/python/get_started/initialize>`__
27+
SDK. <https://developers.amadeus.com/docs/python/get_started/initialize>`__
2828

2929
Getting Started
3030
---------------
3131

3232
To make your first API call you will need to `register for an
33-
Amadeus Developer Account <https://developer.amadeus.com/register>`__
33+
Amadeus Developer Account <https://developers.amadeus.com/register>`__
3434
and `set up your first
35-
application <https://dashboard.developer.amadeus.com/applications>`__.
35+
application <https://dashboard.developers.amadeus.com/applications>`__.
3636

3737
.. code:: py
3838
@@ -51,7 +51,7 @@ application <https://dashboard.developer.amadeus.com/applications>`__.
5151
print(error)
5252
5353
**Next**: `Learn more about checkin
54-
links <https://developer.amadeus.com/docs/python/get_started/checkin_links>`__
54+
links <https://developers.amadeus.com/docs/python/get_started/checkin_links>`__
5555
with our Python SDK.
5656

5757
Initialization
@@ -73,8 +73,8 @@ environment variables ``AMADEUS_CLIENT_ID`` and
7373
amadeus = Client()
7474
7575
Your credentials can be found on the `Amadeus
76-
dashboard <https://dashboard.developer.amadeus.com/client_ids>`__. `Sign
77-
up <https://developer.amadeus.com/register>`__ for an account today.
76+
dashboard <https://dashboard.developers.amadeus.com/client_ids>`__. `Sign
77+
up <https://developers.amadeus.com/register>`__ for an account today.
7878

7979
By default the environment for the SDK is the ``test`` environment. To
8080
switch to a production (paid-for) environment please switch the hostname
@@ -85,7 +85,7 @@ as follows:
8585
amadeus = Client(hostname='production')
8686
8787
**Next**: `Learn more about our initializing the Python
88-
SDK <https://developer.amadeus.com/docs/python/get_started_initialize>`__
88+
SDK <https://developers.amadeus.com/docs/python/get_started_initialize>`__
8989
in our documentation.
9090

9191
Documentation
@@ -95,20 +95,20 @@ Amadeus has a large set of APIs, and our documentation is here to get
9595
you started today.
9696

9797
- `Get
98-
Started <https://developer.amadeus.com/docs/python/get_started>`__
98+
Started <https://developers.amadeus.com/docs/python/get_started>`__
9999
documentation
100100

101101
- `Initialize the
102-
SDK <https://developer.amadeus.com/docs/python/get_started/initialize>`__
102+
SDK <https://developers.amadeus.com/docs/python/get_started/initialize>`__
103103
- `Find an
104-
Airport <https://developer.amadeus.com/docs/python/get_started/find_an_airport>`__
104+
Airport <https://developers.amadeus.com/docs/python/get_started/find_an_airport>`__
105105
- `Book a
106-
Flight <https://developer.amadeus.com/docs/python/get_started/book_a_flight>`__
106+
Flight <https://developers.amadeus.com/docs/python/get_started/book_a_flight>`__
107107
- `Get Flight
108-
Inspiration <https://developer.amadeus.com/docs/python/get_started/get_flight_inspiration>`__
108+
Inspiration <https://developers.amadeus.com/docs/python/get_started/get_flight_inspiration>`__
109109

110110
Alternatively, head over to our
111-
`Reference <https://developer.amadeus.com/docs/python/reference>`__
111+
`Reference <https://developers.amadeus.com/docs/python/reference>`__
112112
documentation for in-depth information about every SDK method, it’s
113113
arguments and return types.
114114

@@ -231,7 +231,7 @@ Help
231231
----
232232

233233
Our `developer support
234-
team <https://developer.amadeus.com/developers>`__ is here to help you.
234+
team <https://developers.amadeus.com/developers>`__ is here to help you.
235235
You can find us on `Twitter <#>`__, `StackOverflow <#>`__, and
236236
`email <#>`__.
237237

@@ -244,4 +244,4 @@ You can find us on `Twitter <#>`__, `StackOverflow <#>`__, and
244244
.. |Dependencies| image:: https://raw.githubusercontent.com/amadeus4dev/amadeus-python/master/.github/images/dependencies.svg?sanitize=true
245245
:target: ttps://badge.fury.io/py/amadeus
246246
.. |Contact Support| image:: https://raw.githubusercontent.com/amadeus4dev/amadeus-python/master/.github/images/support.svg?sanitize=true
247-
:target: http://developer.amadeus.com/support
247+
:target: http://developers.amadeus.com/support

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
description='Python module for the Amadeus travel APIs',
2020
long_description=long_description,
2121
author='Amadeus',
22-
author_email='developer@amadeus.com',
22+
author_email='developers@amadeus.com',
2323
python_requires='>=2.7.0',
2424
url='https://github.com/amadeus4dev/amadeus-python',
2525
install_requires=[],

0 commit comments

Comments
 (0)