Skip to main content

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: 351 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, MongoDB
  • โšก High performance: Direct JVM integration via JPype
  • ๐Ÿ”’ ACID transactions: Full transaction support
  • ๐ŸŽฏ Vector storage: Store and query vector embeddings with HNSW (JVector) indexing
  • ๐Ÿ“ฅ Data import: Built-in CSV and ArcadeDB JSONL import

๐Ÿ“ฆ What's Inside

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

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

  • Wheel size (compressed): ~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: 351 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
โ”œโ”€โ”€ __init__.py          # Public API exports
โ”œโ”€โ”€ jvm.py               # JVM lifecycle management
โ”œโ”€โ”€ 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.7.2-cp314-cp314-win_amd64.whl (58.5 MB view details)

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.7.2-cp314-cp314-manylinux_2_34_x86_64.whl (61.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.2-cp314-cp314-manylinux_2_34_aarch64.whl (60.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.7.2-cp313-cp313-win_amd64.whl (58.1 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.7.2-cp313-cp313-manylinux_2_34_x86_64.whl (61.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.2-cp313-cp313-manylinux_2_34_aarch64.whl (60.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.7.2-cp312-cp312-win_amd64.whl (58.1 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.7.2-cp312-cp312-manylinux_2_34_x86_64.whl (61.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.2-cp312-cp312-manylinux_2_34_aarch64.whl (60.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.7.2-cp311-cp311-win_amd64.whl (58.1 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.7.2-cp311-cp311-manylinux_2_34_x86_64.whl (61.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.2-cp311-cp311-manylinux_2_34_aarch64.whl (60.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.7.2-cp310-cp310-win_amd64.whl (58.1 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.7.2-cp310-cp310-manylinux_2_34_x86_64.whl (61.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.2-cp310-cp310-manylinux_2_34_aarch64.whl (60.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.7.2-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.7.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c216889c64acbd047e5ba61091adf2afb68ccdee5bdd078b0e4c3c74381e1189
MD5 7f0fbfcb63bd805583ee67cc8121c93c
BLAKE2b-256 dc326d15df859e7fd39c377eadac4feb7a1fc513030bc915688dc17db06ee6e2

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file arcadedb_embedded-26.7.2-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 57964f2d8622505f5ac19af6a90bacc4d83f2f45b78938380d21439ffba33297
MD5 4aa149b49e0343c841882b8a89aab76c
BLAKE2b-256 de0843f88a79464e9c95796bd60c268c8af91f43cef96a6c1f5c5bec0ed9c654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 369e2550d075b813fd1f2f336655df7806086483eb7f5a57c4c2314a9e0b11c1
MD5 501aec6bf38e0f160fe2cc45dbe72327
BLAKE2b-256 f2a330a1e2167764b993de97158548d99c048306def4bec72408fad68fe7903a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da5c2efaa4de10316e5155d355dc0de74dcac496f44788b0cb064a37275d3579
MD5 8e064e143bdc2c4165f1fcec4fdeed74
BLAKE2b-256 d3d88765ad88ab6f5b5272dd098d8c65d4830eeaee5cef0711e7ad3ddb86d7ca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2d82944a32caa7aafaa25236cc37aed69e3234fd2ae51096e0a4ca48efda924f
MD5 4db398fa2b10bebec1c653ce95a82569
BLAKE2b-256 1bb66e0c362d4e85190e502f68e04fb01e2abddc796df5e50eb645ed01a11ba2

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file arcadedb_embedded-26.7.2-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 685035972b7c4577a3926217b2d5773049479fd3e3fad1791b3c6c89a7445466
MD5 02e6b8ef136a74d397f051c0a5e527ff
BLAKE2b-256 778b5a011909d8af049bbe10368aacfd7c421c5973b249ac133c5d787d08dc6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 6ac56c393211bb0f49ecd0bd74a012783c86a81c0cc91b07cfe8328a4c4ea6fa
MD5 433753939f58a15c658f798d037dd572
BLAKE2b-256 f3e2da967bea1dca1541caa14d8672ed62e503638ae8de66dd82d1b975394801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 557ef6097ca3fc8f26e8c2bbe0a9b5d34c49b02c5d8fc3ab8b78886e70f02162
MD5 1f4c1ecbf3ea10ddaf601975e6c1c88d
BLAKE2b-256 507dcb94a4699eeb6eea6b9e09d8c344ae75adc921227d4c4daf14b1bf74bde4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 805c22d519e9940b1ea4787ff9339be97c58052c468a478ff3e3a9cbf6586297
MD5 2794569e29fef29ea8c61b843833493e
BLAKE2b-256 329585b17fb5d024067ede77aeb840307967a5740235f752c610b7f8e7effa81

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file arcadedb_embedded-26.7.2-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ffdfc79cc26f4a97855979d624f2c6e5cff5f91b3606b1cef4baa32e9b7bedb4
MD5 54be72c349ee3a40603f0600274d9d17
BLAKE2b-256 70a835b93d9c25d703881a0225d2ad5a7932b0f50cab2ddc87f992b834d708d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 fb9d53e2000478130bfa7e698ce0a79d07333fb0746416b9900648917cae3415
MD5 381f6f6e0a3b229a77aaa82f97890f92
BLAKE2b-256 37e8cb04157dbf14f077f3b33687b91da01ba3d0dc7ba79b58a8be96a60882d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ed650af0608ea5073ffc58bb6ad729a08fc70a85964011162a176f912894723
MD5 338b5159f6842f919e480542f059e992
BLAKE2b-256 f57d99334f864ee8906276887858b71cd99ab8792e565d405c5af8759abe4dda

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a1dfd9cd87042ba196fd0d54bfa44183828b1c5d65d933081d4c62507651fe30
MD5 fe8ec995021223dde1f9dc83f87416bd
BLAKE2b-256 06a755292c401f2d91179a4f81c150f3b608a84823d9216bbab2fbe013a0e985

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file arcadedb_embedded-26.7.2-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0c9b1dde7853a24658bfd186e45f0113cf610e54ac7172102aa3f025923108d4
MD5 74cedbdfb25578d8560e47fd4ae3464f
BLAKE2b-256 fb5ffa0a40698d4e94d1d05a45bb378cbcb886a906fdef73cf69114f297ef09b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9658a85b6a3ab0a73d374867dcca61539152a9e92e255ec7766380f2a1175638
MD5 c9e9ba05cf56c53cccd50bd35155fcf6
BLAKE2b-256 1a5e70de61ad56818fa8fb933cd08f93f9ab4707c44d8b3e602657509af3e0b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 930a6349ed33c62ea5ed740547731cae80ca639f3ff1c7bc741d9ad224c03625
MD5 118e62117c8ccd6ece138e93cbe63fc9
BLAKE2b-256 910112ed31965f9943e199d972099c7aeb2ff2813d6e9e5e3761f085b4ccc5cd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5312e91144da73fa80ecf6adb4bdb08a568f9e5b739ae5a31ffe46dbd7604fe6
MD5 d6f29fb1e834f3a1a635f4080293bccf
BLAKE2b-256 0da0073e5a364656c9a8216873c220909493bad688c2af4042cae5222125d833

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file arcadedb_embedded-26.7.2-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 a2f508ae7eec3c9bd55969a6d8ba70735e0f7143afbb55bea564f7ea9551b91b
MD5 40ce7229e7bea62abe343948aabfd8d6
BLAKE2b-256 58941df05ab75a9cf08038b5cf3b9821cbec5998ead8c7b89d69423d4b05aade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 4c258bd6bb2fd8030d1be847983125eb022d4fd3293c7670ee3c0d2d32ed9856
MD5 4d3e043c65b2c8bb94bca7b72c2c1463
BLAKE2b-256 d6717ace41926c068f12a55c4e57fc3284887e42f68e9439e943278180d5d0db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad951900d5b00cd4d85daa7785f05f4af7a936c7368c933c4ae63cd1e947c0d7
MD5 d0be14d3a8a5056e9c551bbf29860192
BLAKE2b-256 b6742a04681b04df20f14cf822c527cf555ed1ed410d86b64dd29fa2c312e286

See more details on using hashes here.

Provenance

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

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

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

Supported by

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