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.dev22-cp314-cp314-win_amd64.whl (58.7 MB view details)

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.8.1.dev22-cp314-cp314-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev22-cp314-cp314-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev22-cp314-cp314-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev22-cp313-cp313-win_amd64.whl (58.3 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.8.1.dev22-cp313-cp313-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev22-cp313-cp313-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev22-cp313-cp313-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev22-cp312-cp312-win_amd64.whl (58.3 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.8.1.dev22-cp312-cp312-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev22-cp312-cp312-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev22-cp312-cp312-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev22-cp311-cp311-win_amd64.whl (58.3 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.8.1.dev22-cp311-cp311-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev22-cp311-cp311-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev22-cp311-cp311-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev22-cp310-cp310-win_amd64.whl (58.3 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.8.1.dev22-cp310-cp310-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev22-cp310-cp310-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev22-cp310-cp310-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3c5b766713105be27d74d5e7b74a53f96863717e32f81efaed2e13966cbd6e8d
MD5 e49c2ffffb127ab9723821bc384066d8
BLAKE2b-256 0e95e14f60a8ea357590744fb8750fbef6dc15859747d311a80950b9b6bd8a40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 bd562ee1f712162b35d697d553dde260dde209307c3381f826c39dd0490643dd
MD5 670c0ad4cb29b95a90ba7802a076ed75
BLAKE2b-256 ff808d936e4202550a08aef452a6050e6bca40424eb9d3e8b7232c4bbc757bf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 b0637522b4776e3d01d155fd3b5b5ae5d966e818866ab8f4d043c26374eead16
MD5 e1b0a45a96e624c9db822f165f97579d
BLAKE2b-256 94bcf1eb7d0504295d40e6fdcbc23d4fa330e92801dd56849ee8487274c79e92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 241c811ebe7b54f36d9ab555d962d73fd073d78a5649a2548f45d1f63f5d817b
MD5 6a1bc11952e132449b9cb0941b5905f4
BLAKE2b-256 d02185798dd9505d85eaa9218ffb91474f07952fdbc51657e26fb2e6bbf1d4e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 42333bbeaef742593b0e52885f8bf84bc6d2234fc73b9c70ef6acbb8a2075031
MD5 5fe19485208d13fe9141d3777f539cef
BLAKE2b-256 50d67f4af606a8a062626267f563d776c269ab3fee2303502275fd9580d53647

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0493f3b675138655021925b9971e90c9cb04d3f378d5ff22183b9162ebf01091
MD5 a022bb3143808c660c2b2aeceb723086
BLAKE2b-256 8f7bcf0b8858ebaf34fccd9dafc0858c01dff30f9250a256a6dad5f6b8abd569

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9661945c0ccbe8d3b84e6f05a0ca2d2b59809930b4755097bf5b4c7c57dc5b3f
MD5 8afd661c88861e678f0bae76e3f19d91
BLAKE2b-256 761c65aa208c97394a831f9dfa41f5b4ac189471c9ecaded84841331a2fd2501

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f5f7f9e56dcd4a36f9afc0a85fd99a81c97188571b4f9355293b4c8cc800de4
MD5 b51cd9fe05ddf209a99c29fae21bbeb4
BLAKE2b-256 20dae3f48e0bc61643e8fcd5ed1e03ab0c40b454c544a7ffb89fb64190c89fb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a64b89e9122b1f3a0b44c9053988963a7aa3d8432b0d0568c8bd07543e8534c6
MD5 51d7c99a006277583d96d2b139b97bca
BLAKE2b-256 5a5e651bf9117cf90f1a36ad8154b62892a5dff138020731c8af42182b7cce52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d946599c32638c63c3fef327c24e183638b19bd67a78a41e1fb8286dcb55fb94
MD5 fd26579562ba45f8eea6a581acee23bf
BLAKE2b-256 0b2ff81d3f95e20557822a99da9887eac85f06c2a9dc0324892e87160a58ff46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 6b189f4103879604c6c0c51d5664658b96789b7da97a6e857bd9501c70c99624
MD5 82435e4a3d14e01e9835c53b14c6bd56
BLAKE2b-256 990f330aa31b550ce931cc8f8056c211a3c822767a225c5798c6bd0ea9aa964b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffcf34629a5481669f0da72220cc72f5f5d2dbaca13d88fd98432517cf9e6dbd
MD5 9aaed5a8c9b0e2c994ae76820b42491f
BLAKE2b-256 044581de314f5b8c5ae89d4ad3b49b2eebf57632bd9274cbcffc99fb75a531de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0de54802533da0c8e9ad52f5a270462ccdd272b2d5dbd947578e73b8ea9ca4f4
MD5 14dfca8180cdde6a2183a0b1bc2ea795
BLAKE2b-256 a5e5c21b38f4b26482fae6e4c5aed89ae44153263593c0e042a26e49f7404f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e43ab3db4d2985739c940f298843ff955bc1ede6cead05c5eb903db334327231
MD5 4655b0eebab69ffdfe2e2af22176d947
BLAKE2b-256 3119f8337e226f2c91b5e5e6ddf64403bca72d693184887b37771b2a71a60b8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 baa39736d49ebb08add39e903c2073c1ae736e2fe5df83e6e7e37ac4af47413a
MD5 957beec61a99598542519267c5e2d1ee
BLAKE2b-256 d885fa901256d7b1a1a7d9dd238fad41e608a81ac6d4fc360821031f27965e35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 069f145d8b2333bfcaa0f6aa53f14947f522a758cec318bdf6c933055bebde0b
MD5 69ed9edc826a37c286c30067627139fb
BLAKE2b-256 0a80326064a3ebdf08b6a055fcadb507694a98399743e377d1c9e24bc1927c26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c1bd0cd54782518ce58231017f1edbbbaae188c227a31f0d18195d9f86f4d20
MD5 ba470ed50e11710376b64ed690106261
BLAKE2b-256 f5f81cd74c1d1be1a27133980567968d604b1834ec85ea5b97bfd4bf0e115069

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 30771edb4686892fdbe803f4dd6cac7ea27414ecad93b414f51d57258d09e837
MD5 ce8f70b7000c97a6bf2bfc5c56c319ef
BLAKE2b-256 f4e4b357f48b767e9c1e00140510a35f7072a48608b92b154c5ef88a266e95a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9d45e3da5eae648b71c56c0f4afe441e1b383ba1569898b5ae34d797d0b65ca8
MD5 7565f6a3fa8347f9e1faf0cdebea0359
BLAKE2b-256 09fbb9d01fc0a698b874333f6dab9eb27a5427116cf24895c9f3189e0589d922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev22-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01bcabb3289738857dbd6d72524705b3c0425d2db8f482db4c692a685851d329
MD5 0b1f69b5172bf25e838a97c58b614f9d
BLAKE2b-256 29aee315ae99b254d8934fe69f11320d15d4ce714ef240ca6fa781a0fae5dd3e

See more details on using hashes here.

Provenance

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