Skip to content

Commit 214dcc0

Browse files
Merge branch 'thingsapi:main' into main
2 parents 979addb + 793d023 commit 214dcc0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ $ git clone https://github.com/thingsapi/things.py && cd things.py && make insta
102102

103103
## Background
104104

105-
The task management app Things stores all your to-dos in a SQLite database file (details [here](https://culturedcode.com/things/support/articles/2982272/#get-the-things-3-database-file)). This format is intended to be machine-readable, not human-readable. The aim of this project is let you access all your data in a human-readable way. We thereby stay as true to the database as possible while doing SQL joins and transformations to aid understanding of the data.
105+
The task management app Things stores all your to-dos in a SQLite database file (details [here](https://culturedcode.com/things/support/articles/2982272/#get-the-things-3-database-file)). This format is intended to be machine-readable, not human-readable. The aim of this project is let you access all your data in a human-readable way. We thereby stay as true to the database as possible while doing SQL joins and transformations to aid understanding of the data. Note that you can print the SQL used by adding the parameter `print_sql=True` to most API calls.
106106

107107
If any aspect of the API seems overly complex or doesn't meet your needs, please don't hesitate to add a new issue [here](https://github.com/thingsapi/things.py/issues).
108108

109109
### Terminology
110110

111-
Here's the technical terminology used involving the database:
111+
Here are the core technical terms used involving the database:
112112

113113
- area
114114
- tag
@@ -117,9 +117,9 @@ Here's the technical terminology used involving the database:
117117
- `'to-do'`: can have checklists;
118118
- `'project'`: can have to-dos and headings;
119119
- `'heading'`: part of a project; groups to-dos.
120-
- status: `"incomplete"`, `"canceled"`, or `"completed"`
120+
- status: `'incomplete'`, `'canceled'`, or `'completed'`
121121
- trashed: `True` or `False`
122-
- start: `"Inbox"`, `"Anytime"`, or `"Someday"`
122+
- start: `'Inbox'`, `'Anytime'`, or `'Someday'`
123123
- checklist item (contained within a to-do)
124124

125125
## Documentation

0 commit comments

Comments
 (0)