Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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: 397 Passed | Platforms: 4 Supported


๐Ÿ“š Documentation

๐Ÿ“– Read the Full Documentation โ†’


๐Ÿš€ Quick Start

Installation

uv add arcadedb-embedded   # or: 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 (~63MB 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 in-process HTTP server with the Studio web UI โ€” costs ~8MB of wheel and nothing at runtime until you call create_server()
  • ๐Ÿ“ฆ Self-contained: All dependencies bundled (~67MB current Linux wheel)
  • ๐Ÿ”„ Multi-model: Graph, Document, Key/Value, Vector, Time Series
  • ๐Ÿ” Multiple query languages: SQL, OpenCypher
  • โšก 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): ~67MB
  • ArcadeDB JARs (uncompressed): ~31MB across 63 JARs
  • Bundled JRE (uncompressed): ~63MB (platform-specific Java 25 runtime via jlink)
  • Installed package size: ~94MB

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

Of that, the optional server stack is 12 JARs, 7.65MB uncompressed, and it adds ~8MB to the wheel (the extra ~0.8MB beyond the JARs is JRE modules that only the server needs). Server Mode breaks the cost down and explains what you pay at runtime (nothing, until you start a server).

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: 397 passed

Tests run against the built wheel via the uv project at the repo root โ€” no virtualenv activation needed, and uv run works from anywhere in the repo:

# Run all tests
uv run pytest

# Run specific test file
uv run 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

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

Built wheels will be in dist/. The build script also refreshes the uv dev environment at the repo root, so uv run pytest immediately tests the wheel you just built.

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
โ”œโ”€โ”€ graph_batch.py       # GraphBatch high-throughput graph ingest wrapper
โ”œโ”€โ”€ importer.py          # Data import (CSV, XML, ArcadeDB JSONL)
โ”œโ”€โ”€ __init__.py          # Public API exports
โ”œโ”€โ”€ jvm.py               # JVM lifecycle management
โ”œโ”€โ”€ _logging.py          # Internal logging helpers
โ”œโ”€โ”€ results.py           # ResultSet and Result wrappers
โ”œโ”€โ”€ schema.py            # Schema management API
โ”œโ”€โ”€ server.py            # ArcadeDBServer for optional HTTP/Studio 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

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.8.1.dev27-cp314-cp314-win_amd64.whl (67.3 MB view details)

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.8.1.dev27-cp314-cp314-manylinux_2_34_x86_64.whl (70.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev27-cp314-cp314-manylinux_2_34_aarch64.whl (69.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev27-cp314-cp314-macosx_11_0_arm64.whl (65.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev27-cp313-cp313-win_amd64.whl (66.9 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.8.1.dev27-cp313-cp313-manylinux_2_34_x86_64.whl (70.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev27-cp313-cp313-manylinux_2_34_aarch64.whl (69.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev27-cp313-cp313-macosx_11_0_arm64.whl (65.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev27-cp312-cp312-win_amd64.whl (66.9 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.8.1.dev27-cp312-cp312-manylinux_2_34_x86_64.whl (70.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev27-cp312-cp312-manylinux_2_34_aarch64.whl (69.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev27-cp312-cp312-macosx_11_0_arm64.whl (65.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev27-cp311-cp311-win_amd64.whl (66.9 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.8.1.dev27-cp311-cp311-manylinux_2_34_x86_64.whl (70.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev27-cp311-cp311-manylinux_2_34_aarch64.whl (69.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev27-cp311-cp311-macosx_11_0_arm64.whl (65.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev27-cp310-cp310-win_amd64.whl (66.9 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.8.1.dev27-cp310-cp310-manylinux_2_34_x86_64.whl (70.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev27-cp310-cp310-manylinux_2_34_aarch64.whl (69.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev27-cp310-cp310-macosx_11_0_arm64.whl (65.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file arcadedb_embedded-26.8.1.dev27-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f7afda6bb2882c03e0b247f9a1591e78031051dd01079483736dac390f9abccb
MD5 d1771cdc3fee2879e5e8f6abb9bf5791
BLAKE2b-256 48836b1a771ec143582bafb0b0b2a677baf0e0fe0256aa3e617eba241ce36674

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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.8.1.dev27-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 6b66f903ea731ee35e8bcee0a233a15403cf0f8028059db99e58579a33228431
MD5 dcf9ef7b2a35ee355b1e6f02fbc6b2d9
BLAKE2b-256 fdca27af3bae3f77797d5cc12fe881e579a4c0e4f357909efbee71c32d34a215

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp314-cp314-manylinux_2_34_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.8.1.dev27-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 825357e0fee36884bc6b262c9dcd8b5b559c5eea761cf95f53a3b9ca6efe9a19
MD5 82f14c15b2c4b0ee138bc82dfb2c146b
BLAKE2b-256 a2e06c7cae9cc38425ba6c628b7d431ee50c4c7aa78ac2148bb906d652f1f75a

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp314-cp314-manylinux_2_34_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.8.1.dev27-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32f065e3228db7b0bf518b3ef65d6c68d482063e2b85bd55250bd32a04d220c3
MD5 20f5e8da0a234dd4886915f7557ce53f
BLAKE2b-256 5a4bbfc40b30161f69b74862aad84efc6e1ede33ff673991a058ef826207f50d

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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.8.1.dev27-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86dab1dda0325587924ee964b0961609e6e2f3b4e751d76ef2fd01c759b38544
MD5 329458fca96bc7aa1d6085e72725d0fc
BLAKE2b-256 8834263957785b5cf28c5858f192d9176a01a971640c93ac7c158746b2c5d32a

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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.8.1.dev27-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d6b2e35464778c29861bb90cb985de4d71ff385cf36bcf5bfe8f70dda5900cae
MD5 bf5e21986ab7025f1116514189f53dc4
BLAKE2b-256 1bfb6f08e25c4e28c87a01eea56577a73a693cac1773b2996eb388078e8dc90f

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp313-cp313-manylinux_2_34_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.8.1.dev27-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 d1ce19f6287d02dd95defbecb8b9a50a50c68f879cc5aa27044ab0338f6f3f8a
MD5 be0060fa12d0b55c43bdb1d3c143dc3f
BLAKE2b-256 8e6b905fa44c95cd63fc551e17604ebd2cd0d21f090a0b3235be2b6c021a5113

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp313-cp313-manylinux_2_34_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.8.1.dev27-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01c0c819613655f55c0decb6ac078147ebd4229913c8ee42a08a913194e3e71f
MD5 800d5cf6be8d0df7034565b45b4e8764
BLAKE2b-256 215d2f1924c71f92ccbf8a62076170a17fc5f0e1725990f899e5f27e83165b08

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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.8.1.dev27-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef46c583238d8debceed72c49fde9110c9db4be4ddf86b968580c708f6d968a9
MD5 34d8cb4f87f4d6b2b658a3f475bddb0f
BLAKE2b-256 b24d22cc24e49679bb7e5e2bc5ad6ec4b5a6f5f175d20aa68b054bf7b209ed77

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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.8.1.dev27-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f06b60ef69f2325dc52965fdc417a71bdfea57edb1f6900a26a6721533898cfd
MD5 f691479dbd4b50275c113b6df9ac4763
BLAKE2b-256 85b892b1b4452e9d4899ae9f7519eb69b2724c729ab865d5a0bc923290aee95e

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp312-cp312-manylinux_2_34_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.8.1.dev27-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 4a9d0c222744befe4726dd27ddc6a60c6e2984e444d12a065451804aa4860e43
MD5 f777195293165b36c12a7e6201706df4
BLAKE2b-256 24b4aac044dd6416c878ffafe3338dcf3b989b85d63633aa96d674aa5b044520

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp312-cp312-manylinux_2_34_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.8.1.dev27-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b3b3354f5761c40b6073acbd374b4306fdc58341ffaef1a703c11dcd93b3672
MD5 174c000189098dea31858b4f9e20df38
BLAKE2b-256 dd84e507abb298e2f1ac614e3d9404aa0ec27e9f56e0a3c70e73b6a376b58d31

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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.8.1.dev27-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1717528ae6b973470372e8f9df85a32c2dff9b4a1d3b4b231e8aa2781e978829
MD5 2fcb973f164f4720edb8df2779f26f84
BLAKE2b-256 57eeea707790750c1deadcb1c5ce078dfbc108b9b0a1a5e6253f24827da08e22

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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.8.1.dev27-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b9857af9b1365fdc864b5b233977b04878b413b76dc2495aea9ad14ea67f9def
MD5 08cc29f7f0397226218c22a790ff5acb
BLAKE2b-256 dcd26ffff3081c78f2e76fb50f62dce0bc5e48eea560cf8dc9d55d0edf8e3326

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp311-cp311-manylinux_2_34_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.8.1.dev27-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 63c5ca71ed659e17285d4aba0883d819e40a73f23ae89d715e63978a0dbb2bbf
MD5 46b2a1257a7b1b429ada215752bba4b6
BLAKE2b-256 570412662246f34d92251627bdce23523dc50a881c07f3948426c78621343203

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp311-cp311-manylinux_2_34_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.8.1.dev27-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d2d6b03b76dde9ac485a686bc11d0af94438ed94cac3f90708c5fe5f88335fb
MD5 3cb986eb3e167d50361531f7ab9a1295
BLAKE2b-256 99543a0eab691caf4bb18d827c619f1f9064a040d63aa32568d0a030693c53c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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.8.1.dev27-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f7e409f1119f9f84f16148e56849048993521bcb6b967676801c360373d7b2ea
MD5 6f48d039d7820222124d082f7dc79396
BLAKE2b-256 3180a49c7c474254b9a7e3d4a54ab92afd21f7bd12796b6101850a23b74e6233

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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.8.1.dev27-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 bd5d780985e72b3193b12f97be3842902c328d2f7ef61c3fb658ed6a0e69d7c6
MD5 7dc972bc7b39b73761ef138ef85540fd
BLAKE2b-256 25394c0f505d6ea4a1210d3730adacce4dc04c9c272e4e7176e04bd27002cfd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp310-cp310-manylinux_2_34_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.8.1.dev27-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 259931830e5b83d5ae5197d3310b14f74a72f75c94e64be05f4302a896504b2b
MD5 57e48f776e55dc5721fa5bf740dcfb0b
BLAKE2b-256 1d3b342a64acc09eb150311d9be3ca90b899482bef9c178aa39a1e8b822e6291

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-cp310-cp310-manylinux_2_34_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.8.1.dev27-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev27-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17a343d7df056790dfa8dd50f74ce61c9a77f88700cc66489bad4d1268948c57
MD5 293911a7eaecb45491d7480209f4e495
BLAKE2b-256 18a6234993da001676ba20fa72e9c222cc02dc74e1bb675e506109a6f47cd189

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev27-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 Sentry Error logging StatusPage Status page