things
A simple Python 3 library to read your Things app data.
1"""A simple Python 3 library to read your Things app data.""" 2 3__author__ = ["Alexander Willner", "Michael Belfrage"] 4__copyright__ = "2021 Alexander Willner & Michael Belfrage" 5__credits__ = ["Alexander Willner", "Michael Belfrage"] 6__license__ = "Apache License 2.0" 7__version__ = "0.0.15" 8__maintainer__ = ["Alexander Willner", "Michael Belfrage"] 9__email__ = "alex@willner.ws" 10__status__ = "Development" 11 12from things.api import ( # noqa isort:skip 13 anytime, 14 areas, 15 canceled, 16 checklist_items, 17 complete, 18 completed, 19 deadlines, 20 get, 21 inbox, 22 last, 23 link, 24 logbook, 25 projects, 26 search, 27 show, 28 someday, 29 tags, 30 tasks, 31 today, 32 todos, 33 token, 34 trash, 35 upcoming, 36 url, 37) 38 39from things.database import Database # noqa