Python RESTful API developed by using Flask and MongoDB, it has all basic CRUD (Create, Read, Update, Delete) as well as reading every entry from databases and ID auto generation.
This API requires you to have In order to run the API you have to create an account in MongoDB Cloud, create a database as well as a collection. Once you've created it, just type in the terminal:
$ export MONGO_URI="YOUR_MONGO_URI"
$ FLASK_APP=Flask\ API flask run
A POST request sent to the API containing JSON data with the fields "nome", "banda", "ano" e "categorias".
A GET request sent to the API with no parameter passed in the URL.
A GET request sent to the API with the desired entry ID.
A PUT request sent to the API with the entry ID for update.
A DELETE request sent to the API with the entry ID for deletion.




