https://github.com/d4v1-sudo/simple-database-using-python
🗃️💾 - A basic Python to do list manager based in SQLite.
https://github.com/d4v1-sudo/simple-database-using-python
database database-management flask-application python python3 sql
Last synced: about 2 months ago
JSON representation
🗃️💾 - A basic Python to do list manager based in SQLite.
- Host: GitHub
- URL: https://github.com/d4v1-sudo/simple-database-using-python
- Owner: d4v1-sudo
- License: mit
- Created: 2023-10-06T10:31:58.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-28T23:41:30.000Z (about 2 years ago)
- Last Synced: 2025-06-04T11:31:05.604Z (about 1 year ago)
- Topics: database, database-management, flask-application, python, python3, sql
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🗃️💾 - To do list manager based in SQLite using Python
This is a simple command-line application that allows you to manage your to do tasks by adding, completing, and deleting them. You can also view your task list.
## Installation
1. Clone the repository:
``` shell
https://github.com/d4v1-sudo/simple-database-using-python.git
```
2. Navigate to the project directory:
``` shell
cd simple-database-using-python
```
3. Run the application:
``` shell
python3 app.py
```
## Usage
1. Run `app.py` to start the application.
2. Choose from the following options:
- Enter `1` to create a new task.
- Enter `2` to mark a task as complete.
- Enter `3` to delete a task.
- Enter `4` to exit the application.
## Files
- `app.py`: The main application file that handles user interaction.
- `db.py`: Manages the SQLite database for storing tasks.
- `messages.py`: Contains functions for displaying messages and managing tasks.
Make sure you have Python3 installed on your system to run this application.
Enjoy managing your tasks with this simple script!