, ...], ...}
```
* #### `MontyList`
Experimental, a subclass of `list`, combined the common CRUD methods from Mongo's Collection and Cursor.
```python
from montydb.utils import MontyList
mtl = MontyList([1, 2, {"a": 1}, {"a": 5}, {"a": 8}])
mtl.find({"a": {"$gt": 3}})
MontyList([{'a': 5}, {'a': 8}])
```
### Why did I make this?
Mainly for personal skill practicing and fun.
I work in the VFX industry and some of my production needs (mostly edge-case) requires to run in a limited environment (e.g. outsourced render farms), which may have problem to run or connect a MongoDB instance. And I found this project really helps.
---
This project is supported by JetBrains