Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 756 Bytes

File metadata and controls

15 lines (12 loc) · 756 Bytes

Blog API - A Simple Blog Management System

Project Overview

This is a basic Blog API built using Django and Django Rest Framework. The API provides the functionality to manage and interact with blog posts. It allows users to perform CRUD operations (Create, Read, Update) on blog data.

Features:

  • GET /api/blogs/: Retrieve a list of all blogs.
  • GET /api/blogs/{id}/: Retrieve a specific blog by ID.
  • POST /api/blogs/: Create a new blog post.
  • PUT /api/blogs/{id}/: Update an existing blog post by ID.

Technologies Used:

  • Django: A Python web framework for building the API.
  • Django Rest Framework: A toolkit for building Web APIs in Django.
  • Postman: For testing the API and exporting requests.