https://github.com/amadeus4dev/amadeus-flight-booking-django
Python/Django application demonstrating the Amadeus Self-Service flight booking APIs
https://github.com/amadeus4dev/amadeus-flight-booking-django
demo django example prototype python
Last synced: 5 months ago
JSON representation
Python/Django application demonstrating the Amadeus Self-Service flight booking APIs
- Host: GitHub
- URL: https://github.com/amadeus4dev/amadeus-flight-booking-django
- Owner: amadeus4dev
- License: mit
- Created: 2019-12-18T16:58:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-06-09T13:08:14.000Z (12 months ago)
- Last Synced: 2025-06-09T14:24:01.601Z (12 months ago)
- Topics: demo, django, example, prototype, python
- Language: Python
- Homepage: https://developers.amadeus.com/
- Size: 1.02 MB
- Stars: 53
- Watchers: 3
- Forks: 41
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flight booking engine


With the Amadeus Self-Service APIs you can integrate flight booking capabilities in your application. In this prototype we demonstrate the end-to-end booking process, which works in conjunction with three APIs:
* [Flight Offer Search](https://developers.amadeus.com/self-service/category/air/api-doc/flight-offers-search): to search for the best bookable flight offers.
* [Flight Offer Price](https://developers.amadeus.com/self-service/category/air/api-doc/flight-offers-price): confirms the latest price and availability of a specific chosen flight.
* [Flight Create Orders](https://developers.amadeus.com/self-service/category/air/api-doc/flight-create-orders): to book flights and ancillary services proposed by the airline.
## How to run the project via Docker (recommended)
Build the image from the Dockerfile. The following command will
```sh
make
```
The container receives your API key/secret from the environment variables.
Before running the container, make sure your have your credentials correctly
set:
```sh
export AMADEUS_CLIENT_ID=YOUR_API_KEY
export AMADEUS_CLIENT_SECRET=YOUR_API_SECRET
export AMADEUS_HOSTNAME=test
```
Finally, start the container from the image:
```
make run
```
At this point you can open a browser and go to `http://localhost:8000/`.
Note that it is also possible to run in detached mode so your terminal is still
usable:
```
make start
```
Stop the container with:
```
make stop
```
## How to run the project locally
Clone the repository.
```sh
git clone https://github.com/amadeus4dev/amadeus-flight-booking-django.git
cd amadeus-flight-booking-django
```
Next create a virtual environment with [virtualenv](https://virtualenv.pypa.io/en/stable/installation.html) and install the dependencies.
```sh
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
```
For Windows run the command below to activate the virtual environment.
```
./venv/scripts/activate.bat
```
For authentication add your API key/secret to your environmental variables.
```sh
export AMADEUS_CLIENT_ID=YOUR_API_KEY
export AMADEUS_CLIENT_SECRET=YOUR_API_SECRET
```
You can easily switch between `test` and `production` environments by setting:
```
export AMADEUS_HOSTNAME="test" # an empty value will also set the environment to test
```
or
```
export AMADEUS_HOSTNAME="production"
```
> Each environment has different API keys. Do not forget to update them!
Finally, run the Django server.
```sh
python amadeus_demo_api/manage.py runserver
```
Finally, open a browser and go to `http://127.0.0.1:8000`
## License
This library is released under the [MIT License](LICENSE).
## Help
You can find us on [StackOverflow](https://stackoverflow.com/questions/tagged/amadeus) or join our developer community on
[Discord](https://discord.gg/cVrFBqx).