15 lines
404 B
Markdown
15 lines
404 B
Markdown
# REST API Blog Example (Flask)
|
|
|
|
This is a simple Flask REST API example added inside the Flask repo fork for the IT6 Final Drill.
|
|
|
|
## Features
|
|
- Full CRUD operations for blog posts (id, title, content)
|
|
- Proper error handling and HTTP status codes
|
|
- Unit tests with 100% coverage (using unittest)
|
|
|
|
## How to run
|
|
|
|
1. Install dependencies (preferably in a virtual environment):
|
|
|
|
```bash
|
|
pip install flask
|