-
Notifications
You must be signed in to change notification settings - Fork 200
Open
Labels
Description
What is your feature request?
search(title=None, libtype=None, **kwargs)
and other methods which rely on kwargs for search would be able to accept this filter object
will add editor support for filters
Are there any workarounds?
currently one needs to refer documentation for this and pass in the filters as kwargs, which do not give proper developer support
Code Snippets
No response
Additional Context
somehting like this
filter = Filter().genre("foo").year(le=2020)
# or
filter = Filter(genre="foo", year=2020)
lib.search(filter=filter)