GitHub - dougdale/python-taskpaper: Provides an API for working with Taskpaper formatted documents in Python. · GitHub
Skip to content

dougdale/python-taskpaper

 
 

Folders and files

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

Contributors

Languages

  • Python 100.0%