FastAPI Task Management System This project is a RESTful API built with FastAPI that allows users to manage tasks.
Features Create tasks View all tasks View a single task Update tasks Delete tasks Filter completed tasks Delete all tasks Task statistics Persistent storage using JSON Lines format
Installation Install dependencies:
pip install fastapi uvicorn
Run the server uvicorn main:app --reload
API Documentation Open in browser:
Data Storage Tasks are stored in tasks.txt using JSON Lines format.