aboutsummaryrefslogtreecommitdiff
path: root/bindings/python/docs/source/query.rst
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2025-02-15 15:30:43 -0400
committerDavid Bremner <david@tethera.net>2025-02-22 07:01:47 -0400
commitd526797ad198e394bb8b4909f43976b76fb347f1 (patch)
treeb924eefb8a1278afb988387a67e9fe413738003e /bindings/python/docs/source/query.rst
parent9782c8651192c1496541bd8949b7991c41528b3f (diff)
python: move legacy python bindings to contrib.
This forces us to verify the build and test suite completes without the legacy python bindings. As of this commit the legacy python bindings are unsupported by notmuch. They are provided in contrib/ for now, but will most likely eventually be removed from there as well. We recommend that downstream/distro packagers phase out their packages for the legacy python bindings.
Diffstat (limited to 'bindings/python/docs/source/query.rst')
-rw-r--r--bindings/python/docs/source/query.rst43
1 files changed, 0 insertions, 43 deletions
diff --git a/bindings/python/docs/source/query.rst b/bindings/python/docs/source/query.rst
deleted file mode 100644
index 785e984b..00000000
--- a/bindings/python/docs/source/query.rst
+++ /dev/null
@@ -1,43 +0,0 @@
-:class:`Query` -- A search query
-================================
-
-.. currentmodule:: notmuch
-
-.. autoclass:: Query
-
- .. automethod:: create
-
- .. attribute:: Query.SORT
-
- Defines constants that are used as the mode in which to open a database.
-
- SORT.OLDEST_FIRST
- Sort by message date, oldest first.
-
- SORT.NEWEST_FIRST
- Sort by message date, newest first.
-
- SORT.MESSAGE_ID
- Sort by email message ID.
-
- SORT.UNSORTED
- Do not apply a special sort order (returns results in document id
- order).
-
- .. automethod:: set_sort
-
- .. attribute:: sort
-
- Instance attribute :attr:`sort` contains the sort order (see
- :attr:`Query.SORT`) if explicitly specified via
- :meth:`set_sort`. By default it is set to `None`.
-
- .. automethod:: exclude_tag
-
- .. automethod:: search_threads
-
- .. automethod:: search_messages
-
- .. automethod:: count_messages
-
- .. automethod:: count_threads