objectbox-python
objectbox-python copied to clipboard
ObjectBox - the super-fast database

Does Objectbox Python have reached stable? Could we contribute for the documentation?
Currently, the model is declared directly by constructing python objects: ```python @Entity(id=1, uid=1) class Person: id = Id(id=1, uid=1001) first_name = Property(str, id=2, uid=1002) last_name = Property(str, id=3, uid=1003) model...
- ongoing branch for relation feature :warning: Is in continuous development
It would be useful to have support for relations: standalone many-to-many as well as property-based to-one relations, see e.g. [Go relations](https://golang.objectbox.io/relations). To implement the minimal, the following needs to be...
`model/properties.py` currently handles the most common types. The missing types supported by ObjectBox should be added, e.g. date. The list of currently supported objectbox types (as of objectbox-c v0.10.0): ```...
I mean a python example to open a database.
old code is giving a logging error
I'm finding that adding and searching an objectbox database is really fast. However, the remove operation is really slow (1 second per object.) The database is on a local NVME...