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

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.8.1.dev24-cp314-cp314-manylinux_2_34_x86_64.whl (70.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev24-cp314-cp314-manylinux_2_34_aarch64.whl (69.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.8.1.dev24-cp313-cp313-manylinux_2_34_x86_64.whl (70.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev24-cp313-cp313-manylinux_2_34_aarch64.whl (69.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.8.1.dev24-cp312-cp312-manylinux_2_34_x86_64.whl (70.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev24-cp312-cp312-manylinux_2_34_aarch64.whl (69.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.8.1.dev24-cp311-cp311-manylinux_2_34_x86_64.whl (70.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev24-cp311-cp311-manylinux_2_34_aarch64.whl (69.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.8.1.dev24-cp310-cp310-manylinux_2_34_x86_64.whl (70.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev24-cp310-cp310-manylinux_2_34_aarch64.whl (69.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev24-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.dev24-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 db870211fe1f522d9b052d74ad5f479945610e819aa4894be19dab9558af9845
MD5 e5d7d70970a60f3070b898f704387461
BLAKE2b-256 66f2ec14269592cb28f4e7a1430a70b6ae2d348b0bcc480a1f5e1582971724ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ae4c6ad7a0f7b06e94dec740c3d603767fd1a41634081646f32882a963b0c08e
MD5 cc280027f04c0bdd4b5b5b7f63b9b858
BLAKE2b-256 de3b41a7bbed14e97171b3de1339281fb2add75a1040e7242b4a68c68e3ba2d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 35a02a9d4221075c5e566b7054a64e300e2d4ddd77caa697c71da0175c7b973d
MD5 c2f567d2f2aac7a37f88def72a97deab
BLAKE2b-256 9c95b99d153d5a0b2affd9ae32846dcc1b3c0264e1c7f306d66c2cf515be604e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d066575f69f58016860e7c6e6f4b30d59838cba882415df8c116ae7176ca48ab
MD5 69935a7facfaf0c38afc00c57995c863
BLAKE2b-256 04fe8ac272d4cbdb8b68fd49c942d6e9ccf65f0d88c0e07f852648bb41dfe50b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bed071f982563c94c9d6b0c1ce4375dce5702dbd3f129fd1084681405ddd5209
MD5 d5e047a07412eb05ddcca0753bef5dd5
BLAKE2b-256 504ebfcdacd89baf521d872b6b90056acbf93fbca118ce7700fb03cf9295984f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9630a41333c055dc6c351a25aa6acd4ffaf1be94269ce9ad9c80ed7ab4e368ff
MD5 6c6117ac4033fdc8bdb8ac9d2f2d5e1d
BLAKE2b-256 af4db40971a8f49888efefec29bdcd8ef267a033cc1e2089eaf448cbebae0a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 0839de82e256839b50af9ec9dd81f19050a4f006762958b9573e2b9e75847a54
MD5 3e61e0cf034e03a4b93929fc658d4f49
BLAKE2b-256 388f4a5fea8b343d46d9595ae06322c811020f8fc6b9dfbbec8de34af32b8e3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7d4a308a23c6b03b7e1b6286eea52635e7ec4851cc2cace83d0ad91bc64aee2
MD5 9adc30aeed7844b99362531ba70e32d7
BLAKE2b-256 ad81d16ea5f97192959f684ab5de73ac9fca6f111d26ac4cd28eff937a2783e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9551538a940ef5915e6b41c8d225eba9434d2376b49699b5ce02c6dddb690cd6
MD5 b768d78e4cd79c6f46613095708f320d
BLAKE2b-256 f05b58ca4a1c66c1a05f066f76e94329aba53df0c901d11d48639ce4c6666783

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 acc1b114b7fbbc235790083d62c996dadc7a86307f5873ee45dd99e8cdf4750a
MD5 1ed7199a6227f904c86a8fc93caba8a7
BLAKE2b-256 d963f748f40f648fbc13a32ff22087d7c3d8349805ad9751266d7c32a98f2e63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 38216df8b40ec76a448381db8c34e056fb760fb06b994aae105ace033032dad9
MD5 6b5c67f6bcc63852daeb4fcb65b14cbd
BLAKE2b-256 2fe11c6825d63101a8d2e4aa87545bc3bb4841b3c2f1cbc55c112c141b963a96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bf2ee64564ca8c338da28fb5051ccbe7255798dcbec5cf10dd7bafe3e94d3e7
MD5 ccce33c617dfa59c4ed2533cc85ff383
BLAKE2b-256 14e17a19a210d4b95ee05d2571c387c4d4d70deb29645bcfe8691a2aff4db5ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f665f4fd776cc0c70ebd6947398885b4ce0b462166b284eead83e04dd0a4f94
MD5 92c4f9f46c8fb4f65f96db3d30903473
BLAKE2b-256 5b3676e11c338ceffb20d04490fcf69de27818aa3c32acb9f5da23d701913855

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7e78dd7bc3016d190de99dea5c30a1f24d27c82afb4ccfb17604f002881a7fb3
MD5 af4345bd6ba807e055e534c36a480aa2
BLAKE2b-256 a5adf614b5dd2310217cf2e37442aa6d4477b12de05d54c08c50bc2259580f2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 45353cb9fdbf7908b6b8e7b8d1bca1fd24c4e4e16e4766a1c24dc8ecd3d52375
MD5 49fd9e19c3f01ef75bb59ae4a3417185
BLAKE2b-256 9c97b0da392ae8e57f84b0b6c7da11df66858252e046a5086217725f8284dd8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44e0beb7e6d26754dedc1909cc83133a2fd0f3be79ae1835a8c2a5f35fd4231a
MD5 661e91f2e5ff8cedc7862871c2712cd5
BLAKE2b-256 7e066a477236d401f593ed407d5984103b8ff005573f6108c6c212020650f356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d6a130b59ce3c07a478021c7bc5992e17eccd1d6d4d710547dc4a9b49ab08e6
MD5 fb2620b17b8624450ebbbefec80bea64
BLAKE2b-256 4c40dda3a805bc7ed17096a035593ca9872bdd2256020fad74318f23e59df761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d9ee83fbd69151d0049a14264da3f4d3462815ef4800d68b7465dfacded05989
MD5 d9b6fc21dbf86a4a83a4419e6568ddc9
BLAKE2b-256 22961e5a887db3013549edc098b1525496d187d76a503d73693867d9f7217342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 36eb3b00430a2baad3ba2a21caac77e1ae1b7def2c6947c3d9610fa4c187dad0
MD5 d139b1d761121bd1c41787892e2c90f5
BLAKE2b-256 3ed73fd81dc8d6ee747855a558c617ec61f34bbe5d08c6e6ea19b9e6eacc1d3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev24-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68e769119b48dfea1d8d374bbafe8fb09a51ebbba04a552c0f9fd229166d6648
MD5 f78e1ec0e496dca719f4858aad0a2144
BLAKE2b-256 41345c24f531fdfbf5a3fb87bcac689e83ddef6ad9c6b09d9ceeb4d73397ac87

See more details on using hashes here.

Provenance

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