1
0
A todo.txt client on telegram
This repository has been archived on 2021-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2018-08-09 20:02:44 +01:00
.gitignore add gitignore 2018-06-26 21:31:42 +01:00
bot.py Fix bug where not using add command resulted in loss of capitalization 2018-08-09 19:54:43 +01:00
README.md Generate text on __str__ 2018-07-11 20:28:05 +01:00
Task_tests.py Change priority to always upper case 2018-08-09 20:02:44 +01:00
Task.py Change priority to always upper case 2018-08-09 20:02:44 +01:00

todo.txt as a Telegram bot

A bot to hold your todo.txt tasks

commands

All commands require a preceding /.

  • add - add a task
  • rm - remove a task, requires task id
  • ls - list tasks, use 'f[ilter]:FILTERTEXT' syntax to search
  • do - complete a task, requires task id
  • undo - undo a task, requires task id
  • marco - responds 'polo', tests the bot it up

If no command is specified, it is assumed to be the add command.

todo

  • favourite commands
  • reminders for tasks with due dates
  • use a real database instead of json files
  • multiple todo lists
  • default filters
  • Task object generates new string on __str__ method instead of relying on accurate updating from functions
  • exporting all tasks