Skip to main content

ArcadeDB embedded multi-model database with bundled JRE - no Java installation required

Project description

ArcadeDB Python Bindings

Native Python bindings for ArcadeDB - the multi-model database that supports Graph, Document, Key/Value, Search Engine, Time Series, and Vector models.

Status: โœ… Production Ready | Tests: 290 Passed | Platforms: 4 Supported


๐Ÿ“š Documentation

๐Ÿ“– Read the Full Documentation โ†’


๐Ÿš€ Quick Start

Installation

uv pip install arcadedb-embedded

Requirements:

  • Python 3.10โ€“3.14 (packaged/tested on CPython 3.12) - No Java installation required!
  • Supported Platforms: Prebuilt wheels for 4 platforms
    • Linux: x86_64, ARM64
    • macOS: Apple Silicon (ARM64)
    • Windows: x86_64

5-Minute Example

import arcadedb_embedded as arcadedb

# Create database (context manager for automatic open and close)
with arcadedb.create_database("./mydb") as db:
    # Create schema (DDL)
    db.command("sql", "CREATE DOCUMENT TYPE Person")
    db.command("sql", "CREATE PROPERTY Person.name STRING")
    db.command("sql", "CREATE PROPERTY Person.age INTEGER")

    # Insert data (requires transaction)
    with db.transaction():
        db.command("sql", "INSERT INTO Person SET name = 'Alice', age = 30")

    # Query data
    result = db.query("sql", "SELECT FROM Person WHERE age > 25")
    for record in result:
        print(f"Name: {record.get('name')}")

๐Ÿ‘‰ See full tutorial


โœจ Features

  • โ˜• No Java Installation Required: Bundled JRE (~60MB uncompressed)
  • ๐ŸŒ 4 Platforms Supported: Linux (x86_64, ARM64), macOS (ARM64), Windows (x86_64)
  • ๐Ÿš€ Embedded Mode: Direct database access in Python process (no network)
  • ๐ŸŒ Server Mode: Optional HTTP server with Studio web interface
  • ๐Ÿ“ฆ Self-contained: All dependencies bundled (~73MB current Linux wheel)
  • ๐Ÿ”„ Multi-model: Graph, Document, Key/Value, Vector, Time Series
  • ๐Ÿ” Multiple query languages: SQL, OpenCypher, MongoDB
  • โšก High performance: Direct JVM integration via JPype
  • ๐Ÿ”’ ACID transactions: Full transaction support
  • ๐ŸŽฏ Vector storage: Store and query vector embeddings with HNSW (JVector) indexing
  • ๐Ÿ“ฅ Data import: Built-in CSV and ArcadeDB JSONL import

๐Ÿ“ฆ What's Inside

The arcadedb-embedded package is platform-specific and self-contained:

Package Contents (current Linux x86_64 dev build; varies by platform and version):

  • Wheel size (compressed): ~73MB
  • ArcadeDB JARs (uncompressed): ~32MB
  • Bundled JRE (uncompressed): ~60MB (platform-specific Java 25 runtime via jlink)
  • Installed package size: ~102MB

The compressed wheel size is measured from dist/*.whl, and the installed package size is measured from the extracted site-packages/arcadedb_embedded/ directory.

Note: Some JARs are excluded to optimize package size (e.g., gRPC wire protocol). See scripts/jar_exclusions.txt for details.

Import: import arcadedb_embedded as arcadedb


๐Ÿงช Testing

Status: 290 passed

# Run all tests
pytest tests/

# Run specific test file
pytest tests/test_core.py -v

See testing documentation for detailed test documentation.


๐Ÿ”ง Building from Source (Advanced)

Linux uses Docker. macOS and Windows use a native Java 25+ JDK with jlink.

cd bindings/python/

# Install uv (one-time)
curl -LsSf https://astral.sh/uv/install.sh | sh

# Create virtual environment with uv
uv venv .venv
source .venv/bin/activate

# Install build and test dependencies
uv pip install build
uv pip install -e ".[test]"

# Build for your current platform (auto-detected)
./scripts/build.sh

Built wheels will be in dist/.

Build instructions

Developer Note: See build architecture docs for comprehensive documentation of the multi-platform build architecture, including how we achieve platform-specific JRE bundling across the supported platforms on GitHub Actions.

Development

Versions are automatically extracted from the main ArcadeDB pom.xml. See versioning strategy for details on development vs release mode handling.


๐Ÿ“‹ Package Structure

arcadedb_embedded/
โ”œโ”€โ”€ async_executor.py    # Asynchronous command/query + record execution
โ”œโ”€โ”€ citation.py          # Citation helper
โ”œโ”€โ”€ core.py              # Database and DatabaseFactory
โ”œโ”€โ”€ exceptions.py        # ArcadeDBError exception
โ”œโ”€โ”€ exporter.py          # Data export (JSONL, GraphML, GraphSON, CSV)
โ”œโ”€โ”€ graph.py             # Graph wrappers
โ”œโ”€โ”€ __init__.py          # Public API exports
โ”œโ”€โ”€ jvm.py               # JVM lifecycle management
โ”œโ”€โ”€ results.py           # ResultSet and Result wrappers
โ”œโ”€โ”€ schema.py            # Schema management API
โ”œโ”€โ”€ server.py            # ArcadeDBServer for HTTP mode
โ”œโ”€โ”€ transactions.py      # TransactionContext manager
โ”œโ”€โ”€ type_conversion.py   # Python-Java type conversion utilities
โ””โ”€โ”€ vector.py            # Vector search and HNSW (JVector) indexing

Architecture details


๐Ÿค Contributing

See our contributing guidelines

๐Ÿ“„ License

Both upstream ArcadeDB (Java) and this ArcadeDB Embedded Python project are licensed under Apache 2.0, fully open and free for everyone, including commercial use.


๐Ÿ”— Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

arcadedb_embedded-26.4.2-cp314-cp314-win_amd64.whl (312.2 MB view details)

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.4.2-cp314-cp314-manylinux_2_35_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.4.2-cp314-cp314-manylinux_2_35_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.4.2-cp314-cp314-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.4.2-cp313-cp313-win_amd64.whl (311.8 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.4.2-cp313-cp313-manylinux_2_35_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.4.2-cp313-cp313-manylinux_2_35_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.4.2-cp313-cp313-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.4.2-cp312-cp312-win_amd64.whl (311.8 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.4.2-cp312-cp312-manylinux_2_35_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.4.2-cp312-cp312-manylinux_2_35_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.4.2-cp312-cp312-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.4.2-cp311-cp311-win_amd64.whl (311.8 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.4.2-cp311-cp311-manylinux_2_35_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.4.2-cp311-cp311-manylinux_2_35_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.4.2-cp311-cp311-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.4.2-cp310-cp310-win_amd64.whl (311.8 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.4.2-cp310-cp310-manylinux_2_35_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.4.2-cp310-cp310-manylinux_2_35_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.4.2-cp310-cp310-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file arcadedb_embedded-26.4.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ef4b803a36c18820bd34fb93b381440addd90cf8574d363475d2f2320faced01
MD5 c76ab57cb467659ed4b7d4c34a3ff1e4
BLAKE2b-256 d681ead703776c0732c801c169d8ce8739d1a734250360539b6c0c9413903372

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp314-cp314-win_amd64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp314-cp314-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp314-cp314-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 c5cbff287e70ca9ac5039c71f04667b81820e4918dc8310d31197e71b8ddce37
MD5 cdad32b8359613d0e2376c2b76dcbc06
BLAKE2b-256 5180ffde6b0da70a0d338d8f0621f0a176ef472c130680c6c7c2657d697b247a

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp314-cp314-manylinux_2_35_x86_64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 279dfcbd8147eff2be510a3987d759ec29ab106abf38f534f8d8d17cbfc507aa
MD5 e3fb4d7f358d850a2eceb636b9cb9a33
BLAKE2b-256 7b4beb780fb82e84d83a692364467ed55eb09089086ab55cb05efb55ef0065e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp314-cp314-manylinux_2_35_aarch64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1e1055d3319fc4325538a266b08006e6307a912ddee37171cf78f3347da39f5
MD5 cd30bc80fba787f9328b78148d00206d
BLAKE2b-256 b4e0aa56f6e07ad78b41dcad33507cf7aed493bb478d075aa74bbb7ec5a55062

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6635ff5a1582af0edea1913a763b15445ea72556952dcd26291b1f33a1621575
MD5 b87984ec6d0e09097ff5b464bc22489a
BLAKE2b-256 6a87a6bd2d07814f052cc80fadbdda8df5466abbcb3638305e38ecce49902b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp313-cp313-win_amd64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp313-cp313-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp313-cp313-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 9b2b00564b4a1eb8c5c2e66a92dc54a69c380b7cfbe9cf30bcc77c184ddd63a4
MD5 525bcbdf938252a9cff04d28ec3bdcc6
BLAKE2b-256 31d5e64e8f3ce1045e9c1790e74a05501ea4dbff3c12b8b2c88a62391fa5f2c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp313-cp313-manylinux_2_35_x86_64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 7e18c1a9fa81f224c1e696ea4d33e69b79dd8700a3af87818acf398e90f2e8a2
MD5 a408cfbc2ed5fda49f5d71e835e56ba1
BLAKE2b-256 272728e571c724638d4ddecd0422053a16343da95abaf51139cc92b7d54c726d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp313-cp313-manylinux_2_35_aarch64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 247a323bd0dffee48303cd79ee2fd957f60420a841070f3ab8287f08f015ce2b
MD5 3b94fcf926736e69925603759a92b007
BLAKE2b-256 cc2478eb1eb25811b2e38a684fcf963c431e320fbbbf1e666604926fdb76ef81

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b0a7a7df6c73acfd195f2f82fc56d8c7b3cf1572fc1a629ee635fe9d83760966
MD5 3d5fccc3fa00db18ab0350e6f38587e7
BLAKE2b-256 54f249f95ae3ead07715f5d304598d53fa00968775bad87a5dfe60a3a9ac1005

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp312-cp312-win_amd64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 9f4fe35dec40a43eec2e2a8991d6ec2fad0595cabcccc60fa73ab0d62620a26e
MD5 bdf3ef85bc80277b555fd26488b9895b
BLAKE2b-256 6706cb5932e493f2910664dcfe304ff761dbadd7e72a24b817b5b10ad6e373b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp312-cp312-manylinux_2_35_x86_64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 66acc5877ef0283de9b2a02ab7c4428ba42e72f06a57aea29709bb9d868bd7d1
MD5 7059517b3aa241bfc8c236c5781b3b1e
BLAKE2b-256 67ed7de8be17b00dd618144884206bd7960ba03b735efd2d1ac8e13c96bb5d3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp312-cp312-manylinux_2_35_aarch64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e8ad6084e416393a286d1a90ee74b96c525fb66e56f1f2dbf198d4f1dfa8f6
MD5 1b86b717452de7d81642dff017170abf
BLAKE2b-256 b23097f501d57f29cf0ead4cff8ad030c5fe2f64240d1d2528f1c210cd71804d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 511022ff5bc5a7487f5fce9e39c7e488c1401fa6e30c5658d5ca4b4fc4cf82a8
MD5 4625f47a264b801863d126dffd47fcb1
BLAKE2b-256 34d8dc60586ff7708885b54df60f4b66f38bf161259f85c2dbfa4d26e8d911ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp311-cp311-win_amd64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp311-cp311-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp311-cp311-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 ae84023dbd32053e4daf212f715d6e17af4da0b12b6b4bdc61f01d2d24458e74
MD5 00470e27e0929111a570ae60bc80e4e5
BLAKE2b-256 69d2fa3f39b0074ac003815c6d6781ff640236d400d8cf81d6cb663a7de9b55a

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp311-cp311-manylinux_2_35_x86_64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 d061aa08fc0bd9006285cf87d372525d3034edf9c663b8d765454478f88d6c76
MD5 bd3eb944b4045ef4aa722fe8c1ee170d
BLAKE2b-256 c13a571953fd935534c10b9a7fe6479bb75f5f7caf04909d0a0a251c6ae596e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp311-cp311-manylinux_2_35_aarch64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 033e90b0cc03ef968a8096d78f3a1b6cf59eaed5bb6806ede20b058a08cc4f16
MD5 50080aee49f99dd2d3a05a2ef90b89e7
BLAKE2b-256 e76bb9c640f4853b1e265602f27bad087f8634d8f2daaf61d9af80c8e2c2129d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a4dc7b0bf99c606a5093e0d417b97a26168e9be53d6d1f33624fd4ede2853d95
MD5 56c701b76a3e0aaa3aa94bcd43533eaa
BLAKE2b-256 ac88e219c84838c75cd3d299729a7c6a5ed795172f2f499bcb4d701c095417fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp310-cp310-win_amd64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp310-cp310-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 84d8b247e99fd7007cdcfc08fd122d67ca5b4256c2f69a90fe78ddcbc4d34f66
MD5 49582c037c0591f56e1b3b1d703dc02d
BLAKE2b-256 46be12b3e35a213bc9c6bbf750bfd7659350ef86d43969cab14dd0aeeaa59f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp310-cp310-manylinux_2_35_x86_64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 249d4c3ec13545057eaa9256b94c582e9f966e1c096e391a3c82ee0c90326e5f
MD5 99e603d7ad427a8644d732a9bd45ddfd
BLAKE2b-256 3ba33d1fb9525059e4b98b0081bdf797028e68eb47369aa3008444d054f2ced9

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp310-cp310-manylinux_2_35_aarch64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file arcadedb_embedded-26.4.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddc5457a847e72590841f82d4ae130be8fd3a9fc51e73cb108c8d2501ef192ba
MD5 783c43603c3e7f325d9480b2249b0e63
BLAKE2b-256 bc05844a52c8fe8a142be0518a66fb9d0f69eb22afeab7c66328e1a687d6891a

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.4.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-python-packages.yml on humemai/arcadedb-embedded-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page