@@ -4,7 +4,7 @@ Welcome to tasklib's documentation!
44tasklib is a Python library for interacting with taskwarrior _ databases, using
55a queryset API similar to that of Django's ORM.
66
7- Supports Python 2.7, 3.4 - 3.8 with taskwarrior 2.1.x and above.
7+ Supports Python 3.5 and above, with taskwarrior 2.1.x and above.
88Older versions of taskwarrior are untested and may not work.
99
1010Requirements
@@ -21,7 +21,7 @@ Install via pip (recommended)::
2121
2222Or clone from github::
2323
24- git clone https://github.com/robgolding63 /tasklib.git
24+ git clone https://github.com/robgolding /tasklib.git
2525 cd tasklib
2626 python setup.py install
2727
@@ -212,7 +212,7 @@ Tasks can also be filtered using raw commands, like so::
212212 ['Upgrade Ubuntu Server']
213213
214214Although this practice is discouraged, as by using raw commands you may lose
215- some of the portablility of your commands over different TaskWarrior versions.
215+ some of the portability of your commands over different TaskWarrior versions.
216216
217217However, you can mix raw commands with keyword filters, as in the given example::
218218
@@ -306,7 +306,7 @@ Dealing with dates and time
306306
307307Any timestamp-like attributes of the tasks are converted to timezone-aware
308308datetime objects. To achieve this, Tasklib leverages ``pytz `` Python module,
309- which brings the Olsen timezone databaze to Python.
309+ which brings the Olsen timezone database to Python.
310310
311311This shields you from annoying details of Daylight Saving Time shifts
312312or conversion between different timezones. For example, to list all the
@@ -330,7 +330,7 @@ You can also use simple dates when filtering:
330330In such case, a 00:00:00 is used as the time component.
331331
332332Of course, you can use datetime naive objects when initializing Task object
333- or assigning values to datetime atrributes :
333+ or assigning values to datetime attributes :
334334
335335 >>> t = Task(tw, description = " Buy new shoes" , due = date(2015 ,2 ,5 ))
336336 >>> t[' due' ]
@@ -344,7 +344,7 @@ in Python, this can cause some unexpected behaviour:
344344
345345 >>> from datetime import datetime
346346 >>> now = datetime.now()
347- >>> t = Task(tw, description = " take out the trash now" )
347+ >>> t = Task(tw, description = " take out the trash now" )
348348 >>> t[' due' ] = now
349349 >>> now
350350 datetime.datetime(2015, 2, 1, 19, 44, 4, 770001)
@@ -401,7 +401,7 @@ For the list of acceptable formats and keywords, please consult:
401401* http://taskwarrior.org/docs/dates.html
402402* http://taskwarrior.org/docs/named_dates.html
403403
404- However, as each such assigment involves call to 'task calc' for conversion,
404+ However, as each such assignment involves call to 'task calc' for conversion,
405405it might cause some performance issues when assigning strings to datetime
406406attributes repeatedly, in a automated manner.
407407
@@ -572,8 +572,8 @@ We can also speficy UDAs as arguments in the TaskFilter::
572572Syncing
573573-------
574574
575- If you have configurated the needed config variables in your .taskrc, syncing
576- is as easy as::
575+ If you have configured the required configuration variables in your .taskrc,
576+ syncing is as easy as::
577577
578578 >>> tw = TaskWarrior()
579579 >>> tw.execute_command(['sync'])
0 commit comments