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.
- Host: GitHub
- URL: https://github.com/averageencoreenjoer/taskmate
- Owner: averageencoreenjoer
- Created: 2024-12-08T02:33:22.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-08T03:06:50.000Z (6 months ago)
- Last Synced: 2025-03-28T20:17:11.187Z (2 months ago)
- Topics: postman, python3, rest-api, sqlite
- Language: Python
- Homepage:
- Size: 35.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-sqlalchemypython
from app import app, db
with app.app_context():
db.create_all()python app.py