Closed
Description
get items with pythonic operations like pandas.
db = Database()
query1: Query = Key('age') < 30
query2: Query = Key('name') == 'Bruce'
db.find(query1 & query2) # -> list of items
or
cond1: Condition = Query.Key('age') < 30
cond2: Condition = Query.Key('name') == 'Bruce'
db.find(Logical.And(cond1, cond2)) # -> list of items
Metadata
Metadata
Assignees
Labels
No labels
Projects
Status
Done