humbledb
humbledb copied to clipboard
HumbleDB - MongoDB Python Object-Document Mapper built on pymongo
Currently, I get an InvalidDocument error when I save a document with pytool.lang.UNSET values. It would be great if these were handled as None.
Hi there, could you give a simple example on how to use HumbleDB together with Django? I tried it out but it seems to spawn a new connection(pool) everytime I...
Hey! Thank you for your great project, we use it in a very extensive way and really like it. But recently we faced with a problem I want to complain...
Now install with pip3 got error: Downloading/unpacking humbledb Downloading humbledb-5.4.1.tar.gz Running setup.py (path:/private/var/folders/tx/l2n8tjgj1c3bmp2bv0jxgsqc0000gn/T/pip_build_peisong/humbledb/setup.py) egg_info for package humbledb Traceback (most recent call last): File "", line 17, in File "/private/var/folders/tx/l2n8tjgj1c3bmp2bv0jxgsqc0000gn/T/pip_build_peisong/humbledb/setup.py", line...
Hi! I wonder if I can set default values for **embeded** docs (https://humbledb.readthedocs.org/en/latest/tutorial.html#giving-documents-default-values) Example: ``` python class Foo(Document) bar = "bar", 321 // this works well a = EmbedDoc("a") a.buz...
The index examples don't mention that you can use dotted long key names for indexes, e.g. ``` config_indexes = ['meta.published', Index('meta.tags', sparse=True)] ```