todotxt

A Python library for dealing with todo.txt files


Keywords
todotxt
License
Apache-2.0
Install
pip install todotxt==0.0.2

Documentation

py-todotxt

A Python library for dealing with todo.txt files

Usage

todotxt can be used in varions ways. Here is one of them

from todotxt import Tasks
tasks = Tasks('./todo.txt')
print(tasks.filter_by('@today').order_by('priority'))

Tests

Located in ./tests, can be run with

./tests$ nosetests .