@@ -13,7 +13,7 @@ As an offline-first solution, ObjectBox makes sure your app reliably works offli
1313_ Table of Contents_
1414
1515- [ Feature Highlights] ( #feature-highlights )
16- - [ Code Example (CRUD - Create, Read, Update, Delete)] ( #code-example-crud--- create-read-update-delete )
16+ - [ Code Example (CRUD - Create, Read, Update, Delete)] ( #code-example-crud-create-read-update-delete )
1717- [ Getting Started] ( #getting-started )
1818- [ Alpha Notes] ( #alpha-notes )
1919- [ Help wanted] ( #help-wanted )
@@ -37,7 +37,8 @@ Feature Highlights
3737* MacOS x86-64 and arm64 (Intel 64-bit and Apple Silicon)
3838* Windows x86-64 (64-bit)
3939
40- #### Code Example (CRUD - Create, Read, Update, Delete)
40+ Code Example: CRUD (Create, Read, Update, Delete)
41+ -------------------------------------------------
4142
4243What does using ObjectBox in Python look like?
4344
@@ -55,15 +56,16 @@ store = Store()
5556# Get a box for the "Person" entity; a Box is the main interaction point with objects and the database.
5657box = store.box(Person)
5758
58- person = Person()
59- person.name = " Joe Green"
59+ person = Person(name = " Joe Green" )
6060id = box.put(person) # Create
6161person = box.get(id ) # Read
6262person.name = " Joe Black"
6363box.put(person) # Update
6464box.remove(person) # Delete
6565```
6666
67+ Ready for more? Check the [ example folder] ( https://github.com/objectbox/objectbox-python/tree/main/example ) .
68+
6769Getting started
6870---------------
6971Latest version: 4.0.0 (2024-05-28)
@@ -82,9 +84,8 @@ and learn how to setup your first entity classes.
8284
8385Do you prefer to dive right into working examples?
8486We have you covered in the [ example] ( https://github.com/objectbox/objectbox-python/tree/main/example ) folder.
85- It comes with a task list application and a vector search example using cities.
86- Additionally, for AI enthusiasts, we provide an "ollama" example,
87- which integrates a local LLM (via [ ollama] ( https://ollama.com ) )
87+ It comes with a task list application and a vector search example using cities (CLI app and Jupyter notebook).
88+ For AI developers , we provide an "ollama" example, which integrates a local LLM (via [ ollama] ( https://ollama.com ) )
8889with ObjectBox to manage and search embeddings effectively.
8990
9091Help wanted
0 commit comments