Skip to content

Commit 5da60ef

Browse files
committed
README.md: add another link to example/ from the CRUD example
1 parent cf8afb8 commit 5da60ef

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -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

4243
What 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.
5657
box = store.box(Person)
5758

58-
person = Person()
59-
person.name = "Joe Green"
59+
person = Person(name = "Joe Green")
6060
id = box.put(person) # Create
6161
person = box.get(id) # Read
6262
person.name = "Joe Black"
6363
box.put(person) # Update
6464
box.remove(person) # Delete
6565
```
6666

67+
Ready for more? Check the [example folder](https://github.com/objectbox/objectbox-python/tree/main/example).
68+
6769
Getting started
6870
---------------
6971
Latest version: 4.0.0 (2024-05-28)
@@ -82,9 +84,8 @@ and learn how to setup your first entity classes.
8284

8385
Do you prefer to dive right into working examples?
8486
We 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))
8889
with ObjectBox to manage and search embeddings effectively.
8990

9091
Help wanted

0 commit comments

Comments
 (0)