tasklib icon indicating copy to clipboard operation
tasklib copied to clipboard

A Python library for interacting with taskwarrior databases.

Results 37 tasklib issues
Sort by recently updated
recently updated
newest added

Sometimes, there may exist non-printable characters in the taskwarrior `pending.data` file, for example due to an emoji added to the task description but is not yet properly parsed by python....

**TaskWarrior Version** 2.6.2 **Tasklib version** 2.2.1 **Problem** i want to filter data in with filter ```tw.tasks.filter("status:completed")``` but i get this error, where am i wrong? ``` Traceback (most recent call...

https://github.com/vit-project/vit/issues/300 exposes a limitation in `LazyUUIDTaskSet`, namely, that it cannot be used in a standard Python comparison, because of a type mismatch. It seems reasonable for tasklib to provide some...

Let's say I have a task folder in `~/_sample_data`. The output of `unset TASKRC; task rc.data.location=~/_sample_data` is (removing the "configuration override" notes): ``` ID Age Tag Description Urg 2 5min...

First of all, thank you for the work you've done on this! For a task with a custom UDA such as project duration (`duration`) in man-days, or number of resources...

Long time now, I have troubles with tools using tasklib due to a custom setting of TZ environment variable ("CET-1", without summertime) While python is able to work correct with...

I realized that urgency is not even a Task attribute. The only way to get is exporting data and then getting the urgency key from a dictionary. Also thought that...

I have a task generated by bugwarrior from a github issue. The `githubbody` UDA contains this line: ``` UDA githubbody: blah blah blah blhín blah blah blah ``` Also, another...

The below lines fail with the error >>> from tasklib import TaskWarrior >>> tw = TaskWarrior('~/.task') >>> tasks = tw.tasks.pending() >>> tasks Traceback (most recent call last): File "", line...