Skip to content

Commit 287171c

Browse files
committed
Rename full distribution from arcadedb-embedded-full to arcadedb-embedded
1 parent bdbda63 commit 287171c

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

bindings/python/Dockerfile.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ RUN export ARCADEDB_VERSION=$(python3 extract_version.py /arcadedb/pom.xml) && \
9090
DESCRIPTION="ArcadeDB embedded Python driver - Minimal distribution (excludes Gremlin, GraphQL, MongoDB/Redis wire protocols)" \
9191
;; \
9292
full) \
93-
PACKAGE_NAME="arcadedb-embedded-full" && \
93+
PACKAGE_NAME="arcadedb-embedded" && \
9494
DESCRIPTION="ArcadeDB embedded Python driver - Full distribution (includes Gremlin, GraphQL, MongoDB/Redis wire protocols, and Studio)" \
9595
;; \
9696
*) \

bindings/python/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pip install arcadedb-embedded-headless
2222
pip install arcadedb-embedded-minimal
2323

2424
# Full - Adds Gremlin + GraphQL support
25-
pip install arcadedb-embedded-full
25+
pip install arcadedb-embedded
2626
```
2727

2828
All distributions are imported the same way:
@@ -83,7 +83,7 @@ JPype. The difference is which Java JARs are included:
8383
| ------------ | ---------------------------- | ------ | ------------------------------------------------------- | --------- |
8484
| **Headless** | `arcadedb-embedded-headless` | ~94MB | SQL, Cypher, PostgreSQL wire, HTTP server | ❌ No |
8585
| **Minimal** | `arcadedb-embedded-minimal` | ~97MB | Everything in Headless + Studio UI | ✅ Yes |
86-
| **Full** | `arcadedb-embedded-full` | ~158MB | Everything in Minimal + Gremlin, GraphQL, MongoDB/Redis | ✅ Yes |
86+
| **Full** | `arcadedb-embedded` | ~158MB | Everything in Minimal + Gremlin, GraphQL, MongoDB/Redis | ✅ Yes |
8787

8888
### All Distributions Use Same Import
8989

@@ -378,7 +378,7 @@ pip install arcadedb-embedded-headless[vector]
378378

379379
# Or for other distributions
380380
pip install arcadedb-embedded-minimal[vector]
381-
pip install arcadedb-embedded-full[vector]
381+
pip install arcadedb-embedded[vector]
382382

383383
# Install with development tools (pytest, mypy, black, etc.)
384384
pip install arcadedb-embedded-headless[dev]
@@ -1257,7 +1257,7 @@ distributions to PyPI:
12571257
# Future: One-command installation
12581258
pip install arcadedb-embedded-headless
12591259
pip install arcadedb-embedded-minimal
1260-
pip install arcadedb-embedded-full
1260+
pip install arcadedb-embedded
12611261
```
12621262

12631263
This will make the package accessible to the wider Python community and eliminate the

bindings/python/notebooks/example.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"- 🧹 Resource management best practices\n",
2020
"\n",
2121
"**Requirements**: \n",
22-
"- ArcadeDB Python bindings installed (`pip install arcadedb-embedded-full`)\n",
22+
"- ArcadeDB Python bindings installed (`pip install arcadedb-embedded`)\n",
2323
"- Java Runtime Environment (JRE) installed"
2424
]
2525
},
@@ -635,7 +635,7 @@
635635
"\n",
636636
"**Installation**: For optimal performance with vectors, install with NumPy support:\n",
637637
"```bash\n",
638-
"pip install arcadedb-embedded-full[vector] # Includes NumPy\n",
638+
"pip install arcadedb-embedded[vector] # Includes NumPy\n",
639639
"```\n",
640640
"\n",
641641
"The vector API works with both NumPy arrays and plain Python lists!"
@@ -1167,11 +1167,11 @@
11671167
"1. **Install the appropriate distribution**:\n",
11681168
" - `arcadedb-embedded-headless` - Core features only (94 MB)\n",
11691169
" - `arcadedb-embedded-minimal` - + Server & Studio UI (97 MB)\n",
1170-
" - `arcadedb-embedded-full` - + Cypher & Gremlin (158 MB)\n",
1170+
" - `arcadedb-embedded` - + Cypher & Gremlin (158 MB)\n",
11711171
" \n",
11721172
"2. **For vector operations, install with NumPy**:\n",
11731173
" ```bash\n",
1174-
" pip install arcadedb-embedded-full[vector] # Includes NumPy\n",
1174+
" pip install arcadedb-embedded[vector] # Includes NumPy\n",
11751175
" ```\n",
11761176
"\n",
11771177
"3. **Explore the documentation**:\n",

0 commit comments

Comments
 (0)