A Blog API built with Django (python web framework) with Create, Read, Update, and Delete (CRUD) functionalities and User Management.
The API's endpoints are as follows:
| ENDPOINT | Methods | DESCRIPTION |
|---|---|---|
| posts/ | GET | GETS all the available posts |
| posts/new | POST | Create a new post |
| posts/id | GET PUT DELETE | Gets/Updates/Deletes a post |
...