#A Simple REST API
A REST API using Google Cloud Datastore that models three entities: Users, Boats, and Loads.
Users can own 0 or more Boats and each Boat can have 0 or more Loads.
Create, Read, Update and Delete functionallity for each entity.
Requires Python3
Download from Github. From the Simple Rest API directory run
'pip install requirements.txt'
From the Simple Rest API directory run
'python main.py'
Send HTTP requests to 'http://127.0.0.1:8080/'
The Postman Collection folder contains a collection of requests that can be used for testing or as examples along with the needed environment variables.