Skip to content

dougdale/python-taskpaper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-taskpaper

Provides an API for working with TaskPaper formatted documents in Python.

Based on original work by Emil Erlandsson, Matt Dawson, and Bjoern Brandenburg.

This version is compatible with Python 3.

Example of usage

A simple example that reads in then prints the contents of a TaskPaper file.

import codecs

from taskpaper.taskpaper import TaskPaper

f = codecs.open('todo.taskpaper', 'r', 'utf8')
todo = TaskPaper.parse(f)
f.close()

print(todo)

About

Provides an API for working with Taskpaper formatted documents in Python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%