An example REST API, built in Python with the Flask framework, and deployed to a Heroku server.
Different branches of this repository contain different versions of this application, and exist to illustrate differences in datastores.
branch | heroku app | description |
---|---|---|
master |
https://groceries-api-limited.herokuapp.com/ | A read-only version, using an in-memory datastore. Only supports the "List" and "Show" operations. |
csv |
https://groceries-api-csv.herokuapp.com/ | A fully-functional version, using a CSV file datastore. Supports all operations. |