A REST API developed in Python using the Flask framework, featuring full CRUD (Create, Read, Update, Delete) operations for task management.
List tasks: Retrieve all registered tasks (GET)
Create tasks: Add new tasks to the system (POST)
Update tasks: Modify existing task details (PUT)
Delete tasks: Remove tasks from the list (DELETE)
Python: Core programming language.
Flask: Micro-framework for web development and API routing.
REST Architecture: Standard for web services communication.
Clone the repository: git clone https://github.com/VictorViapiana/task-api-with-flask.git
Navigate to the project folder: cd task-api-flask
Install Flask: pip install flask
Run the application: python app.py
The API will be available at http://127.0.0.1:5000.
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.