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: 370 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); for client-server or multi-process deployments, use the official ArcadeDB server alongside
  • ๐Ÿ“ฆ Self-contained: All dependencies bundled (~62MB 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): ~62MB
  • ArcadeDB JARs (uncompressed): ~24MB
  • Bundled JRE (uncompressed): ~63MB (platform-specific Java 25 runtime via jlink, 16 modules)
  • Installed package size: ~87MB

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: The package is embedded-only โ€” server/Studio and other unused JARs are excluded to optimize size (e.g., gRPC wire protocol). See scripts/jar_exclusions.txt for details.

Import: import arcadedb_embedded as arcadedb


๐Ÿงช Testing

Status: 370 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
โ”œโ”€โ”€ 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.dev20-cp314-cp314-win_amd64.whl (58.8 MB view details)

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.8.1.dev20-cp314-cp314-manylinux_2_34_x86_64.whl (62.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev20-cp314-cp314-manylinux_2_34_aarch64.whl (60.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev20-cp314-cp314-macosx_11_0_arm64.whl (57.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev20-cp313-cp313-win_amd64.whl (58.4 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.8.1.dev20-cp313-cp313-manylinux_2_34_x86_64.whl (62.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev20-cp313-cp313-manylinux_2_34_aarch64.whl (60.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev20-cp313-cp313-macosx_11_0_arm64.whl (57.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev20-cp312-cp312-win_amd64.whl (58.4 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.8.1.dev20-cp312-cp312-manylinux_2_34_x86_64.whl (62.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev20-cp312-cp312-manylinux_2_34_aarch64.whl (60.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev20-cp312-cp312-macosx_11_0_arm64.whl (57.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev20-cp311-cp311-win_amd64.whl (58.4 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.8.1.dev20-cp311-cp311-manylinux_2_34_x86_64.whl (62.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev20-cp311-cp311-manylinux_2_34_aarch64.whl (60.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev20-cp311-cp311-macosx_11_0_arm64.whl (57.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev20-cp310-cp310-win_amd64.whl (58.4 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.8.1.dev20-cp310-cp310-manylinux_2_34_x86_64.whl (62.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev20-cp310-cp310-manylinux_2_34_aarch64.whl (60.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev20-cp310-cp310-macosx_11_0_arm64.whl (57.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f43ea71e8db49404a2d51b903887e7e8093b2227093c0669bc0ee3ff2ea92fb4
MD5 196e3b199c7e1ddc0aa72587789a3a03
BLAKE2b-256 55b6ef0dbcd76ab43fd254794bb19cd7f32380d3dc82b60879627ce0cc9893b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7ee2c3a67e40b503086c0826df772d564083f1df67d5fb5a2b8400d39c73102c
MD5 abb99ee2f0f5a8e2ffacb5334e16d6b2
BLAKE2b-256 91b12f6c8dd38acbd80d8f3eac579def0729dd0a4bac1619f86fcbdd15853df2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 d316d23de6f8e905e318fe972983e294ec1e4d7097450b705e05c99f50715c7f
MD5 c79abcfed9ed53acf2fa10785fdb764d
BLAKE2b-256 ccff5197107d21431f1f1358e0d858aae88f6895b53cb0a8cecdb85e08dc9ea8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc8da79925455163c9fe05ca3df1993a5721d326978584748079291e4fff7d86
MD5 05b6f3b328802659edead725aeca047c
BLAKE2b-256 10b00b8b65b5f796f3368e817a4a85daafef826f653307c5555d1202e7696b7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c1bb801c5646aaac4f84ae18bdb46aa726ebbe372e1e3e98af8c13e20afdf96
MD5 cf28dd48e0ab04d13e543bd15f44e3e6
BLAKE2b-256 4b7392611ed3b3320930758d73ad60cd8e69f4651e26b2f43edb2fbb3da3d699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 c1570c29b5dd4a9b39e2501ab4044bc5ec391bd1fabfa5117426ab0c3154e837
MD5 46a06dad611e7e06b13bd978cfd36ef2
BLAKE2b-256 295f48ae5ed18744b386254074de38e8fb3cabecd13898f42f6bd2b7aca6e856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c5e418fcad1e582fcb929c0f00dbc8aa6f6e8627426b6acbb52ec133e44eabc0
MD5 65a14afce4f736e9488f8f667f4c734b
BLAKE2b-256 28af622b61e0ff602e2abc597bb3dcc0feb7ffece9ebf08f0f5a5aabffa375a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fadfb5cf691d8301da54fa5c8b5c79c1c0b3020be22a962fbd60d093d77622f9
MD5 0a7ab6f945f30ce225a2d823e236bd03
BLAKE2b-256 b73b5d354b38312410a9db34fcf18598e4834ff015cecbc9006222a2ade01889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 114c23173a039e8699052f3b88817257a93364ce202ad82cabb094b7f00d9c2d
MD5 1c96ed7c5e42c5d92ef79d8d2cf88478
BLAKE2b-256 bc2909963baeb1807f44a7dd51a68060dc1301ab13a9b2a503074541539119c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 2b0cab09f3fadec794c3c5e894829bad34698de86b2363ce913be10010720f78
MD5 a844b3ce4ef1e42f05a9de2c0785a27b
BLAKE2b-256 e1522a9b245fd6a249492aae0a8ebd720ee2f878654b22dff934f018ee387a12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c84c49ac9975b5235cf05b64b7f016ef9e07b09ab663085c51f5f9043063279d
MD5 f4c77fbc6478b86ba68166dfd4d6f7db
BLAKE2b-256 625a608e2e896384e27cc45ff9ffcd73011563125f0ca527802953e84f152a29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81e5888572942155172c31a3e2e36a2df6c51e1e78c3e09e099dedee6accd5f0
MD5 6442206b869d924e9468c86751cc3ef0
BLAKE2b-256 e1777d62d565c73f9cb3e8f4de5a9f94f5382f2b2670f4cde3c0186c40768957

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 911288e0db74a5eabe366b5241ec448aed6897a1403c93271b93e16843dd5576
MD5 f0dd30a00dabe5df0e1559c6bbb874d3
BLAKE2b-256 694dfa9b7a564d7bc03febf1a1e104d419911eeafcf1b6014eb2a666203c6bb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 034dda2f13c4bbc0116f3369dc7ac81b30f9a6ea52eb3d1f31b4b9e71196fb87
MD5 c997ae62af1f0cf29f1c89281a3d73b0
BLAKE2b-256 3a7793b51f06893047dd7658d1c0c1bf63d751d647c2942ed557d76d18efd585

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 6e3e1b60aeb98bf1cbcb07e96f2752ec02c19e2bf4812f1a7a1d4d0bab4e586f
MD5 247b6ddee724c971ae1a18b335a09021
BLAKE2b-256 bb2423edbbf08f890b418dcedce4d190835b0cda68b0b7dc7a68308126a18364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab09ceef8c9ddb065345aec59b8518a74188fc6e919c0a8b94e341aeb36d3d5a
MD5 d96154f5339023308fe6cbf94c8e8419
BLAKE2b-256 91dd7f91dd45e299c3a5eeaac9d67f64964c2faee4770c812c36a37bbdbc81c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2083b7b096d358525a14a6a68036a15d26fa6158595c1f0633e2270637ae2319
MD5 5873d6da30d545be23bd6fdd1e9c1040
BLAKE2b-256 f22c1ed6bcbda452d3840ad4fff7a4d098062b701cf2292d2235b37755005fcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1cf59428bc1c2e9ee6031845e7d1e410d0b568060e6846f5e954bd384c8bf8cc
MD5 172b57538c8079c25af7678e531b4c8f
BLAKE2b-256 d7f869404a20d6ef2bcc82d0d8dc5df7bb08b37d062888daf46b9e7e358a4a9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 63616e64287ee47b4d102265f7ba152afc6a439ad24d451abac7203686a8ec16
MD5 d015da42bf8c9d5f95d401deb2b46b35
BLAKE2b-256 bb8186be725b5c313d46786a6a2c490ce863e6a7b946f9b1156413a74ba76a37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev20-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1eb8c205f77f557353c67f629ca34026f5bbebc81eb5ed728c7febfa2e8d34b
MD5 a59702df85087a941a489289961e214d
BLAKE2b-256 97409f3a6424f5166d564b009ac97659cae81022e968e6444b610fc075ef04e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev20-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