├── .gitignore ├── LICENSE.txt ├── README.md ├── conversion_prompts.md ├── examples ├── chatgtp │ ├── add_tags.py │ ├── expand_content.py │ └── requirements.txt └── document_analysis │ └── word_cloud.py ├── images ├── add_tags_contextual_menu.png ├── after_expansion.png ├── api_key_prompt.png ├── before_expansion.png ├── create_record_with_doc.png ├── custom_toolbar.png ├── docstring_example_1.png ├── docstring_example_2.png ├── docstring_example_3.png └── generated_tags.png ├── pydt3 ├── __init__.py ├── application.py ├── apps │ ├── devonthink │ │ ├── __init__.py │ │ ├── database.py │ │ ├── devonthink.py │ │ ├── item.py │ │ ├── record.py │ │ ├── reminder.py │ │ ├── smartgroup.py │ │ ├── tab.py │ │ ├── taggroup.py │ │ ├── text.py │ │ └── windows.py │ └── mail │ │ ├── __init__.py │ │ ├── account.py │ │ ├── mail.py │ │ ├── mailbox.py │ │ └── message.py ├── helper_bridging.py ├── jxa_helper.js ├── jxa_helper.scpt ├── jxa_helper_v2.js ├── objproxy.py ├── osascript.py └── utils.py ├── pyproject.toml ├── requirements.txt └── tests ├── test_bridging.py ├── test_database.py ├── test_devonthink_application.py ├── test_record.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/README.md -------------------------------------------------------------------------------- /conversion_prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/conversion_prompts.md -------------------------------------------------------------------------------- /examples/chatgtp/add_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/examples/chatgtp/add_tags.py -------------------------------------------------------------------------------- /examples/chatgtp/expand_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/examples/chatgtp/expand_content.py -------------------------------------------------------------------------------- /examples/chatgtp/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/examples/chatgtp/requirements.txt -------------------------------------------------------------------------------- /examples/document_analysis/word_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/examples/document_analysis/word_cloud.py -------------------------------------------------------------------------------- /images/add_tags_contextual_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/add_tags_contextual_menu.png -------------------------------------------------------------------------------- /images/after_expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/after_expansion.png -------------------------------------------------------------------------------- /images/api_key_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/api_key_prompt.png -------------------------------------------------------------------------------- /images/before_expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/before_expansion.png -------------------------------------------------------------------------------- /images/create_record_with_doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/create_record_with_doc.png -------------------------------------------------------------------------------- /images/custom_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/custom_toolbar.png -------------------------------------------------------------------------------- /images/docstring_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/docstring_example_1.png -------------------------------------------------------------------------------- /images/docstring_example_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/docstring_example_2.png -------------------------------------------------------------------------------- /images/docstring_example_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/docstring_example_3.png -------------------------------------------------------------------------------- /images/generated_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/images/generated_tags.png -------------------------------------------------------------------------------- /pydt3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/__init__.py -------------------------------------------------------------------------------- /pydt3/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/application.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/__init__.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/database.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/devonthink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/devonthink.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/item.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/record.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/reminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/reminder.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/smartgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/smartgroup.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/tab.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/taggroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/taggroup.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/text.py -------------------------------------------------------------------------------- /pydt3/apps/devonthink/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/devonthink/windows.py -------------------------------------------------------------------------------- /pydt3/apps/mail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydt3/apps/mail/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/mail/account.py -------------------------------------------------------------------------------- /pydt3/apps/mail/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/mail/mail.py -------------------------------------------------------------------------------- /pydt3/apps/mail/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/mail/mailbox.py -------------------------------------------------------------------------------- /pydt3/apps/mail/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/apps/mail/message.py -------------------------------------------------------------------------------- /pydt3/helper_bridging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/helper_bridging.py -------------------------------------------------------------------------------- /pydt3/jxa_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/jxa_helper.js -------------------------------------------------------------------------------- /pydt3/jxa_helper.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/jxa_helper.scpt -------------------------------------------------------------------------------- /pydt3/jxa_helper_v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/jxa_helper_v2.js -------------------------------------------------------------------------------- /pydt3/objproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/objproxy.py -------------------------------------------------------------------------------- /pydt3/osascript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/osascript.py -------------------------------------------------------------------------------- /pydt3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pydt3/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/test_bridging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/tests/test_bridging.py -------------------------------------------------------------------------------- /tests/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/tests/test_database.py -------------------------------------------------------------------------------- /tests/test_devonthink_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/tests/test_devonthink_application.py -------------------------------------------------------------------------------- /tests/test_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/tests/test_record.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekoc/devonthink-python/HEAD/tests/utils.py --------------------------------------------------------------------------------