You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great not to have to specify items sometimes in methods like query_feature().
Here are a few ideas, and they should all be keyword arguments:
Make items take Optional[Iterable[str]] rather than being an unpacked iterable. The current signature looks nice but when you use it, it isn't the best.
An contains kwarg that filters using metadata["id"].str.contains(id_contains)
An matches kwarg that filters using metadata["id"].str.match(id_matches)
The text was updated successfully, but these errors were encountered:
It would be great not to have to specify
items
sometimes in methods likequery_feature()
.Here are a few ideas, and they should all be keyword arguments:
items
takeOptional[Iterable[str]]
rather than being an unpacked iterable. The current signature looks nice but when you use it, it isn't the best.contains
kwarg that filters usingmetadata["id"].str.contains(id_contains)
matches
kwarg that filters usingmetadata["id"].str.match(id_matches)
The text was updated successfully, but these errors were encountered: