An open API service indexing awesome lists of open source software.

https://github.com/averageencoreenjoer/taskmate

TaskFlow is a simple RESTful task management API built on Flask and using SQLite for data storage. The project is designed to practice working with APIs, HTTP requests, databases, and creating mini-projects.
https://github.com/averageencoreenjoer/taskmate

postman python3 rest-api sqlite

Last synced: 2 months ago
JSON representation

TaskFlow is a simple RESTful task management API built on Flask and using SQLite for data storage. The project is designed to practice working with APIs, HTTP requests, databases, and creating mini-projects.

Awesome Lists containing this project

README

        

# TaskFlow

TaskFlow is a simple RESTful API for task management, developed in Flask and using SQLite for data storage. The project is intended for practicing working with APIs, HTTP requests, databases and creating mini-projects.

## Features
- View a list of all tasks.
- Add a new task.
- Update a task (change the name and execution status).
- Delete a task.

## Technologies used
- **Python** (Flask)
- **SQLite** (via SQLAlchemy)
- **Postman** (for testing the API)

## How to run the project
Install dependencies:
```bash
pip install flask flask-sqlalchemy

python
from app import app, db
with app.app_context():
db.create_all()

python app.py