22
33<div class =" grid cards " markdown >
44
5- - :material-rocket-launch:{ .lg .middle } __ Production Ready __
5+ - :material-rocket-launch:{ .lg .middle } ** Production Ready **
66
77 ---
88
1111 ** Status** : ✅ Production Ready
1212 ** Tests** : ✅ 204 + 7 Examples Passing
1313
14- - :fontawesome-brands-python:{ .lg .middle } __ Pure Python API __
14+ - :fontawesome-brands-python:{ .lg .middle } ** Pure Python API **
1515
1616 ---
1717
1818 Pythonic interface to ArcadeDB's multi-model database
1919
2020 [ :octicons-arrow-right-24: Quick Start] ( getting-started/quickstart.md )
2121
22- - :material-graph:{ .lg .middle } __ Multi -Model Database __
22+ - :material-graph:{ .lg .middle } ** Multi -Model Database **
2323
2424 ---
2525
2626 Graph, Document, Key/Value, Vector, Time Series in one database
2727
2828 [ :octicons-arrow-right-24: Learn More] ( guide/core/database.md )
2929
30- - :material-lightning-bolt:{ .lg .middle } __ High Performance __
30+ - :material-lightning-bolt:{ .lg .middle } ** High Performance **
3131
3232 ---
3333
@@ -50,14 +50,15 @@ ArcadeDB is a next-generation multi-model database that supports:
5050
5151## Why Python Bindings?
5252
53- These bindings provide native Python access to ArcadeDB's full capabilities with __ two access methods__ :
53+ These bindings provide native Python access to ArcadeDB's full capabilities with ** two
54+ access methods** :
5455
5556### Java API (Embedded Mode)
5657
57- - __ Direct JVM Integration __ : Run database directly in your Python process via JPype
58- - __ Best Performance __ : No network overhead, direct method calls
59- - __ Use Cases __ : Single-process applications, high-performance scenarios
60- - __ Example __ :
58+ - ** Direct JVM Integration ** : Run database directly in your Python process via JPype
59+ - ** Best Performance ** : No network overhead, direct method calls
60+ - ** Use Cases ** : Single-process applications, high-performance scenarios
61+ - ** Example ** :
6162 ``` python
6263 with db.transaction():
6364 vertex = db.new_vertex(" Person" )
@@ -67,10 +68,10 @@ These bindings provide native Python access to ArcadeDB's full capabilities with
6768
6869### HTTP API (Server Mode)
6970
70- - __ Remote Access __ : HTTP REST endpoints when server is running
71- - __ Multi-Language __ : Any language can connect via HTTP
72- - __ Use Cases __ : Multi-process applications, web services, remote access
73- - __ Example __ :
71+ - ** Remote Access ** : HTTP REST endpoints when server is running
72+ - ** Multi-Language ** : Any language can connect via HTTP
73+ - ** Use Cases ** : Multi-process applications, web services, remote access
74+ - ** Example ** :
7475 ``` python
7576 import requests
7677 from requests.auth import HTTPBasicAuth
@@ -83,13 +84,13 @@ These bindings provide native Python access to ArcadeDB's full capabilities with
8384 )
8485 ```
8586
86- Both APIs can be used __ simultaneously __ on the same server instance.
87+ Both APIs can be used ** simultaneously ** on the same server instance.
8788
8889## Additional Features
8990
90- - __ Multiple Query Languages __ : SQL, Cypher, Gremlin, MongoDB syntax
91- - __ ACID Transactions __ : Full transactional guarantees
92- - __ Type Safety __ : Pythonic API with proper error handling
91+ - ** Multiple Query Languages ** : SQL, Cypher, Gremlin, MongoDB syntax
92+ - ** ACID Transactions ** : Full transactional guarantees
93+ - ** Type Safety ** : Pythonic API with proper error handling
9394
9495## Features
9596
@@ -139,7 +140,8 @@ with arcadedb.create_database("/tmp/mydb") as db:
139140
140141## Package Coverage
141142
142- These bindings provide ** comprehensive coverage** of ArcadeDB's Java API, focusing on features most relevant to Python developers:
143+ These bindings provide ** comprehensive coverage** of ArcadeDB's Java API, focusing on
144+ features most relevant to Python developers:
143145
144146| Module | Coverage | Description |
145147| --------| ----------| -------------|
@@ -176,27 +178,27 @@ import arcadedb_embedded as arcadedb
176178
177179<div class =" grid cards " markdown >
178180
179- - :material-download:{ .lg .middle } [ __ Install __ ] ( getting-started/installation.md )
181+ - :material-download:{ .lg .middle } [ ** Install ** ] ( getting-started/installation.md )
180182
181183 Installation instructions
182184
183- - :material-run-fast:{ .lg .middle } [ __ Quick Start __ ] ( getting-started/quickstart.md )
185+ - :material-run-fast:{ .lg .middle } [ ** Quick Start ** ] ( getting-started/quickstart.md )
184186
185187 Get up and running in 5 minutes
186188
187- - :material-book-open-variant:{ .lg .middle } [ __ User Guide __ ] ( guide/core/database.md )
189+ - :material-book-open-variant:{ .lg .middle } [ ** User Guide ** ] ( guide/core/database.md )
188190
189191 Comprehensive guide to all features
190192
191- - :material-api:{ .lg .middle } [ __ API Reference __ ] ( api/database.md )
193+ - :material-api:{ .lg .middle } [ ** API Reference ** ] ( api/database.md )
192194
193195 Detailed API documentation
194196
195197</div >
196198
197199## Requirements
198200
199- - ** Python** : 3.10–3.14 (packaged; primary testing on 3.11 )
201+ - ** Python** : 3.10–3.14 (packaged; primary testing on 3.12 )
200202- ** OS** : Linux, macOS, or Windows (x86_64 or ARM64)
201203
202204!!! note "Self-Contained"
0 commit comments