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

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.

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!