v4.0.0
Release 4.0.0
New or Improved Features
-
The behavior of
exclude_KEYWORD
parameters inconstruct_query
has been changed to allowexclude_KEYWORD
to accept the values to exclude rather than negating the values assigned toKEYWORD
. This is not compatible with prior versions. For example to exclude a label went fromconstruct_query(labels='finance', exclude_labels=True)
to
construct_query(exclude_labels='finance')
which allows users to more easily combine positive and negative search terms. This is a big quality of life improvement for creating complex queries.