objectbox-python icon indicating copy to clipboard operation
objectbox-python copied to clipboard

ObjectBox - the super-fast database

Results 9 objectbox-python issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/32270152/135407966-7173cbee-bba4-427a-955e-fe5ccd6593f1.png)

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...

enhancement
help wanted

- 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...

enhancement
help wanted

`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): ```...

help wanted

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...