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: 331 Passed | Platforms: 4 Supported


๐Ÿ“š Documentation

๐Ÿ“– Read the Full Documentation โ†’


๐Ÿš€ Quick Start

Installation

uv 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 (~60MB 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 HTTP server with Studio web interface
  • ๐Ÿ“ฆ Self-contained: All dependencies bundled (~73MB 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): ~73MB
  • ArcadeDB JARs (uncompressed): ~32MB
  • Bundled JRE (uncompressed): ~60MB (platform-specific Java 25 runtime via jlink)
  • Installed package size: ~102MB

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: 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: 331 passed

# Run all tests
pytest tests/

# Run specific test file
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

# Create virtual environment with uv
uv venv .venv
source .venv/bin/activate

# Install build and test dependencies
uv pip install build
uv pip install -e ".[test]"

# Build for your current platform (auto-detected)
./scripts/build.sh

Built wheels will be in dist/.

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
โ”œโ”€โ”€ server.py            # ArcadeDBServer for HTTP 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

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.5.1.post1-cp314-cp314-win_amd64.whl (74.0 MB view details)

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.5.1.post1-cp314-cp314-manylinux_2_34_x86_64.whl (77.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.5.1.post1-cp314-cp314-manylinux_2_34_aarch64.whl (76.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.5.1.post1-cp314-cp314-macosx_11_0_arm64.whl (72.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.5.1.post1-cp313-cp313-win_amd64.whl (73.6 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.5.1.post1-cp313-cp313-manylinux_2_34_x86_64.whl (77.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.5.1.post1-cp313-cp313-manylinux_2_34_aarch64.whl (76.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.5.1.post1-cp313-cp313-macosx_11_0_arm64.whl (72.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.5.1.post1-cp312-cp312-win_amd64.whl (73.6 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.5.1.post1-cp312-cp312-manylinux_2_34_x86_64.whl (77.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.5.1.post1-cp312-cp312-manylinux_2_34_aarch64.whl (76.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.5.1.post1-cp312-cp312-macosx_11_0_arm64.whl (72.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.5.1.post1-cp311-cp311-win_amd64.whl (73.6 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.5.1.post1-cp311-cp311-manylinux_2_34_x86_64.whl (77.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.5.1.post1-cp311-cp311-manylinux_2_34_aarch64.whl (76.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.5.1.post1-cp311-cp311-macosx_11_0_arm64.whl (72.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.5.1.post1-cp310-cp310-win_amd64.whl (73.6 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.5.1.post1-cp310-cp310-manylinux_2_34_x86_64.whl (77.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.5.1.post1-cp310-cp310-manylinux_2_34_aarch64.whl (76.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.5.1.post1-cp310-cp310-macosx_11_0_arm64.whl (72.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file arcadedb_embedded-26.5.1.post1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8b7618003dd7d06e3b16f98e97f6f98f649c276d57c265a926371b93a2186aaa
MD5 ede67cfbca2f5248c421ff421eb86c26
BLAKE2b-256 34aa6cdfb28a537018957c633ae4dc7ef2b76933ed15df30259dc6acc0bf293d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1e986a3ceea48e9436d677c1f16dd20852f4a8c12571d52571cb54f7927908a9
MD5 8f3ed6301c1280238020423f66388a7b
BLAKE2b-256 8b8f11ab466919d1a156d3fcb462c97591d9f2f3ca38cc7f2d8942fb483b101e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 cd9f3457c7b6e8dc36a881d8e0789e419168ca86f52e9a6a852cc3c7e65be3fc
MD5 d2a61cec816ec8b04bc7b2dcff26993c
BLAKE2b-256 6237c38fe76972870c98b9bb4678ffec067518975982930d9fe801263af33836

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e55d4c32738b57e5731686e48c56388b6a1492b7d9ca970ca588bfc102ac42c
MD5 178a75bba8a35fc7fe40b5e252b1a3ba
BLAKE2b-256 26fee051527bb9a078c6b805d300bb1d05f5b15f64dcb3080b02ef5e9a9acca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ed33c1793f0eaa0636ad0b4d35c698522e22d5e675d9937cabb71327118d9857
MD5 0ce93043638d84e6db522f16d44349bf
BLAKE2b-256 75880cc79c864bdb0dc83b2dba9c2e8731169bd58e895a499b046215a539ef6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7739a47a7635bd049fa00c0deefdfb952956c475effe81efa9e116c8df20f866
MD5 6a408c268cdcf13082b8962838d40e5b
BLAKE2b-256 28b3b2c4af89b1234b08981ccb597c8f9972bc7ab1963484c8fe1245faddbae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 4b73f63eb9a17046ac7b2c04d3f627d4d4f3ad76960f8d142cea3c96a92e2d4c
MD5 46ca1bfa95957af60160b7daf9796682
BLAKE2b-256 e98abf8672a679ef34757922611c43b42738ae61013b564fe0777ebef32ce7bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bbe06d117e6fad417a4ebe4990dd64cfdbd3869bc6e4b403ea25fcbf0071846
MD5 c6988ab7704bd83ee6a0f3abd4039f82
BLAKE2b-256 815ff9705aa685a8deed19f33777c5888e9b36dab8c6d637f5e211137120c4c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5d66e586085a94d878dcd81c045fd4718cde55084e1b550cd583fdeceedce76b
MD5 dda5044d17998192a139a536963662a2
BLAKE2b-256 26df0e5e1421d4877deb406f6ea80c2c5c4b97e9bea6c164f95b33b6417f8c4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9b7073bef73095dbc6cc890bf7cee50c806c09459eac42cd8de4fc8650dce31e
MD5 6e6ce5f830fb3929186fda6a2fc7fb8e
BLAKE2b-256 dbb52da97a25dd9c1272bd1bc53e713deb4c8e38bde05eb7f5f02db4e15395a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 08604a4ddf79133713aa1262142b7e201691fd877a3c07fda53a9639647d86ce
MD5 0b36dce72ec57f2940dd7af6abb45f5a
BLAKE2b-256 93dbd3ab12cbfb4642fe5f3b00a29d022e56c7b19edda620b5b7e3cd31bf5cac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 355460a861f19b539f437a3a909fea9e0f21c31ae7588521b74a107e627cb923
MD5 b99bb92f52bac964d4e50c468451c68f
BLAKE2b-256 15b39faf8e9a9052e0a297c886acede18ed279655d8aebecf9179ef537d8a83b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e3f5b9517211a3e07897e62213fc40ce1b0bf3d73d535d037c794d3594821e48
MD5 7a2d7262c1208034a6fddf0c41e4c7cd
BLAKE2b-256 5a447eac72adc493d33a57993e971ee7eca39e2f89b19593b9074b463754a702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 dd7e33faac0f98ba9d2089b0b17ab9c50d39f657fe232a0fa94ba1cd9cbfaff8
MD5 a1d7a92371df37b856af7071b9e78489
BLAKE2b-256 d64beeb6f9df0d3d6ede3fd338b86d37123430c5174c4b8caf4d1e7d0cbc14dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 1520ad6fdfab2361fc8ad4e409943d5b8cf2a927e5737b6db795181a8488623c
MD5 7ee84189cff6bb1c42f1a6903eb3cbbb
BLAKE2b-256 c0c70a3b0c4f87b75fa0c7a929a88632a58c0010790e5d6bfc38186485d770a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21e0cc972c2f4b86de395ddb80b9d9216f2cb157ff0c5c1c6bab168e001a86ea
MD5 36c8371cfb625f92ffe5c4750445ed5c
BLAKE2b-256 aab833885beacc93de9d1c31952dc0a150a35908cf98338490b3ab4e1be4a15d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fe34eebb15aa54cab8977b5b8b942123bcc7666682ef6c5d8f9ee04ded63cb95
MD5 e2e00fee3be979575805315d6a217974
BLAKE2b-256 8866ba143727cab833f9f08b4dcb1b7ef9a6f3fe9308c4c21a57ad17e083f4fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 64860af04d4f478089606206141ad26cef3825da4a9b75fcf9ac29679f46a226
MD5 a1718403bdb257c8e74833e58c08eb7b
BLAKE2b-256 dc5aa080b748f53c36bdd60485fe4c7585b22ccb2a5855d82d237da3e41a7429

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 dfe6930d9fab72542c35e147ab38b0141137b4d9895823212be16864d26d0f4a
MD5 a219f57c72b081b1dc5cca22ffc29a40
BLAKE2b-256 e316ea745206fd191747491986adb9ae7a2a61768d61f2f25cafa9f187eadc0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 059ddce9b2129dee3d42cc816d4e5ef1cfd228d4fface757be1de43e5c85031c
MD5 8e6b84e36673448eb632ea747f6f54d5
BLAKE2b-256 d5b6d40e5dddeab6fbe791f739846f2951f2096982165a6b3f819aae9977f487

See more details on using hashes here.

Provenance

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