A blog post web application built using Python Django and REST API using Django REST Framework
- User Authentication - Users can register, login and logout
- Create Posts, Edit, Delete Posts
-
GET /api/posts - Returns the list of all posts by all user
-
POST /api/posts - Creates a new post
-
GET /api/posts/<id> - Returns a post by it's post ID.
-
PUT /api/posts/<id> - Updates a post by it's post ID.
-
DELETE /api/posts/<id> - Deletes a post by it's post ID.