Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chipbell4/todo
A Simple Python Todo List
https://github.com/chipbell4/todo
Last synced: 9 days ago
JSON representation
A Simple Python Todo List
- Host: GitHub
- URL: https://github.com/chipbell4/todo
- Owner: chipbell4
- Created: 2013-05-12T00:01:56.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-23T05:48:52.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T18:27:16.087Z (7 months ago)
- Language: Python
- Size: 146 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
todo
====A Simple Python Todo List. Here are the commands
* complete (c) - Finish an item on your todo list
* add (a) - Add an item to the bottom of your todo list
* move (m) - Move an item on your todo list
* list (l) - List all of the things on your todo listA tiny project for myself, used to try out TDD. Definitely a learning experience!
If you want to use this on your machine, my suggestion to you is to put it in /usr/local/bin,
and make sure that its in your path. I would modify the FileTodoList instance at the bottom to
point to some local file. In fact, a potential useful fork is to make the program work for all
users and allow each of them to have their own todo list. This can be acheived by choosing the
path for the FileTodoList to be based on the user's home directory (maybe /home/username/.todoList).