{"library":"mongoquery","title":"mongoquery","description":"A utility library that provides a MongoDB-like query language for querying Python collections, especially lists of dicts from JSON or YAML parsers. Current version is 1.4.3. Releases are infrequent; the last release was around 2019.","language":"python","status":"maintenance","last_verified":"Fri May 01","install":{"commands":["pip install mongoquery"],"cli":null},"imports":["from mongoquery import Query"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from mongoquery import Query\n\nitems = [\n    {'name': 'Alice', 'age': 30},\n    {'name': 'Bob', 'age': 25},\n    {'name': 'Charlie', 'age': 35}\n]\n\nq = Query({'age': {'$gte': 30}})\nresult = q.match(items)\nprint(result)  # [{'name': 'Alice', 'age': 30}, {'name': 'Charlie', 'age': 35}]","lang":"python","description":"Basic usage: create a Query with a MongoDB-like filter and call .match() on a list of dicts.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}