We have access to a movies database which is accessible through a REST API on a specific URL. The database holds the following data:
-Actors-
o Name (string)
o Date of birth (datetime)
-Directors-
o Name (string)
o Date of birth (datetime)
-Movies-
o Name (string)
o Production year (integer)
o Director (linked to Directors endpoint)
o Actors (linked to Actors endpoint)
This project implements the exposed REST API. It fully implements the CRUD(create, read, update, delete) for the endpoints.
DataBase credentials are not provided.
run_terminal.py
or
run_flask.py
The README.md file was created based on the model: https://www.makeareadme.com/.