Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/coldbydefault/todopython

A simple command-line tool for managing a to-do list using Python.
https://github.com/coldbydefault/todopython

Last synced: about 1 month ago
JSON representation

A simple command-line tool for managing a to-do list using Python.

Awesome Lists containing this project

README

        

# CLI To-Do List Application

A simple command-line tool for managing a to-do list using Python.

## Features

- Add, remove, and list tasks
- Mark tasks as completed
- Persistent storage of tasks

## Installation

1. Clone the repository:
```bash
git clone https://github.com/ColdByDefault/toDoPython.git
```
2. Navigate into the project directory:
```bash
cd cli-todo-list
```
3. Create env:
```bash
python -m venv venv
```
###### venv:
cmd:
```bash
python -m pip install --user virtualenv
```

## Usage
1. Activate the virtual environment:
```bash
source venv/bin/activate # On macOS/Linux
.\venv\Scripts\activate # On Windows
```
2. Run the application:
```bash
python todo.py
```

## Contributing

1. Fork the repository
2. Create a new branch (git checkout -b feature/your-feature)
3. Commit your changes (git commit -m 'Add your feature')
4. Push to the branch (git push origin feature/your-feature)
5. Create a new Pull Request