You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,23 @@ box.put(person) # Update
83
83
box.remove(person) # Delete
84
84
```
85
85
86
-
Additionally, see the [TaskList example app](https://github.com/objectbox/objectbox-python/tree/main/example).
86
+
Additionally, see the [TaskList example app](https://github.com/objectbox/objectbox-python/tree/main/example). After checking out this repository to run the example:
87
+
```
88
+
// Set up virtual environment, download ObjectBox libraries
89
+
make depend
90
+
91
+
// Activate virtual environment...
92
+
// ...on Linux
93
+
source .venv/bin/activate
94
+
// ...on Windows
95
+
.venv\Scripts\activate
96
+
97
+
// Run the example
98
+
python3 -m example
99
+
100
+
// Once done, leave the virtual environment
101
+
deactivate
102
+
```
87
103
88
104
For more information and code examples, see the tests folder. The docs for other languages may also help you understand the basics.
0 commit comments