Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/coldbydefault/todopython
- Owner: ColdByDefault
- Created: 2024-08-06T18:18:26.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-06T18:47:58.000Z (5 months ago)
- Last Synced: 2024-08-06T22:10:21.400Z (5 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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