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
Prepare test release v0.0.1-python for PyPI publisher activation
- Set version to 0.0.1 in pyproject.toml
- Ready to activate pending PyPI publishers for arcadedb-embed and arcadedb-embed-jre
- This will validate the new simplified build system and GitHub Actions workflows
Copy file name to clipboardExpand all lines: README.md
+22-17Lines changed: 22 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,9 @@
2
2
3
3
> **Python bindings for [ArcadeDB](https://github.com/ArcadeData/arcadedb)** - A multi-model database supporting Graph, Document, Key/Value, Vector, and Time Series models with extreme performance.
pip install arcadedb-embedded-headless # Recommended for production
21
-
pip install arcadedb-embedded-minimal # With Studio UI for development
22
-
pip install arcadedb-embedded # With Gremlin + GraphQL
19
+
pip install arcadedb-embed # Base package (requires Java 21+)
20
+
pip install arcadedb-embed-jre # With bundled JRE (coming soon)
23
21
```
24
22
25
-
**Requirements:** Python 3.8+ and [Java 21+](https://adoptium.net/) (JRE)
23
+
**Requirements:**
24
+
25
+
-**Base package:** Python 3.8+ and [Java 21+](https://adoptium.net/) (JRE)
26
+
-**JRE package:** Python 3.8+ only (JRE bundled)
26
27
27
28
**💡 Tip:** See "JVMCI is not enabled" warnings? Install [GraalVM](https://humemai.github.io/arcadedb-embedded-python/latest/getting-started/installation/#eliminate-polyglot-warnings-optional) to fix them
28
29
@@ -122,23 +123,26 @@ result = db.query("sql", """
122
123
123
124
✅ **Embedded Mode** - Runs in your Python process (no server needed)
124
125
✅ **Multi-Model** - Graph, Document, Key/Value, Vector, Time Series
0 commit comments