Skip to main content

ArcadeDB embedded multi-model database with bundled JRE - no Java installation required

Project description

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

Project details


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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ee121981c65063a98b0e013b53f77efa1cec088c81c9bf809931d4b22fbdc529
MD5 31bac2526965da4fd4ff40333439ecd1
BLAKE2b-256 116edf0e2d77eb0537e1d6d2f97efed0a5d61eadbe922de4e40309d8752fc4e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 566ce5b4052b81f0973466c17bc3039f4ac1195a705db75283906041774d3ae9
MD5 4a7ad2ed43c0bd1e4521d1717018b405
BLAKE2b-256 5e970b94150474480542c71a63dc607bbcb7b1693a0833b9baa8f6ed83d0d36e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 e3ea82c227ef9c6d08a5e8798762b00d5deb57cfbb853573320ebe537d9fce97
MD5 a1a7e7ad3295abfea2bbe5a25f8d407a
BLAKE2b-256 d2140ecd7458151a60e14943fa43910946a1cfc10ae9cf5869a6ff216cb0b3f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89394e28a05ac2efabf31558152d7fdaeb7363b3e386da326e04ab696cf1bc12
MD5 102052ae590be8a100067bef64d9da25
BLAKE2b-256 9180aac411899ecb261d08232ce8eed65fb3efccfb9a5174c98e584754767e32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5e201e00db33b1e7d7366343ad5f6f9a307d6fc0c26e97d4b758fa45706cfb62
MD5 48f499d3ca7beef05de790a7c54af160
BLAKE2b-256 fb87e9d1f1354d74985ec5304c8b4238a833c6b56f40a85901ae8f5a10fc6bd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 bef2aa2ab5dad2fc87a22087ef093033ba94a76c820f4b2d936dee9a4346f7b6
MD5 f7bed244f2ab8d15f3df0ece9d9ed03e
BLAKE2b-256 75deceeda8ca004308796171be132a7fd650a863fd8e56a2db49d9d967851112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 f246110a8d68a7f0d2881d99745517b2ee85cc6c0e36e8175a8ec129337730bf
MD5 a94c72b362a8300f6651a95d7ab408fc
BLAKE2b-256 5bac79196c40e1b73102b658c9da0c7b1c65f8d216b669cfb2ee3e912e36b9cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93d94ba46953de539f3f142760b485a393d64ba645cd8f8afe2619c38c425420
MD5 38d4fa95c15ab330f0102e2d1d844483
BLAKE2b-256 8769094c3f299ce5b3c5ff2378899a6af1cf412b8d90c7ed0cb8491762247482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5aaf625bca4b94b51a241b75358ad3e0e63a3780455bdc41b1316ca57bc04e78
MD5 f7e2b4431d9b783ff20a4a4e74c187dd
BLAKE2b-256 16972fccbfd1f36874884918221cc12c91e7c2016b7b613c7054ce818bf10e74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d23a200dbe143524b382bae5edbd270cf6aa1b86145c1beddc3d2265ebb2bd34
MD5 554212a22b7f86f0c01f916440d591a6
BLAKE2b-256 aa675f21900eddcaaaa293f42126dbf5cb7df73a9e23b01a134def07287ca098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 a1ad68248eb8c36911c6cf13fdea4c65e3ea4c5b9a2ac0bfe9e90c01252fda42
MD5 62912c45a52cb3e4d7dfb22b2de59b39
BLAKE2b-256 a59f2c40cd98eea4855a81129229f7b0af1b3dd3cb14bb8f4c973f0722d26de0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5aaa03f7d88d174e8774707a279515f0ccbb63ec0f299c4ccd465561b490552e
MD5 a9028eb31ed9f9c81bfae170dccac1fa
BLAKE2b-256 2e0d02adf1bdb62e2cc2ae17c64b5ae00703a644b4263d424564304d0f27675e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ffa734c7d758272258b6347c7a362011de2bc4ab40403bc95030bc0c6ba98565
MD5 1485ef8c9bde647e1dcaa1690be93fa5
BLAKE2b-256 dda361824cf3b8d3c3fc9d0f15f844e96cea7cf9679d96ba6ed2a090d964f32b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ef9251b7fccdcf538590de9b2332d1ae3e52b97255304653cfafe0e0b6ae58a9
MD5 a06100f70f787f1c726c6505da000678
BLAKE2b-256 f828cb84162c873759836554f687f104331d71cdb9ca5ec369c3a7d43d805bf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 7ca41d0619e791d036a74501c39d3db55e6ee05b0ca5af77703b7714473619bc
MD5 27c951ad43851383dbee69c59adde641
BLAKE2b-256 61f19aff6eeee82476049fbe7e83617607f7555018ec5e5157fa0caaca0f93f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4483ced33a57b72ac075f1184dda36d2f0f0a875f406042bbc56815735e0249
MD5 849c2b354298bce03763fdaa10925163
BLAKE2b-256 1c0ca63ab871d5e6c2cf95543afd5540ea7dc729887eb265c54b62f23a71d792

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c186b7f88f00b2893e22b9cbc2c1a09aa1a90b444cc9988b59e6398cd567c30d
MD5 46a65aea25fd0d35e57dec37ddc8e25a
BLAKE2b-256 63d08c61dcc93486460cffa82854f354110bf8a04c59988a84278919c8129236

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b83d6dcbbd53d825a260f6b76aecbe1e317fbd27ea00f80dc72e174af7378bd2
MD5 3751e9dfef4fcaf8af993defd7a46012
BLAKE2b-256 8abfbfef0366dd72292af32ccec3a036a99a7fde0200998fc8038cf8adcd6287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 0d965cc0574a0d8b4b0b4c9541a5a74d32d91c27d14f1699671705d12f0b6f21
MD5 b133a2f155dcfcc8f131f81c0dbd498c
BLAKE2b-256 a8d1850d4b4244c821e752d23d95eeb408aba3ae12d39f11737f43b4f8f8fabe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05696b4a9a05f60cbf68b8295d29e1435e60044829e8bd778310b78f977be1d9
MD5 abd9e23365f7ebfba1fb715f9a1142a3
BLAKE2b-256 014a191663b1357c5191a668347aa36d8762c67e3ecb372669f4be1bf0c399f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.7.2.dev2-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 Pingdom Monitoring Sentry Error logging StatusPage Status page