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

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.7.2.dev1-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.dev1-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.dev1-cp314-cp314-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.7.2.dev1-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.dev1-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.dev1-cp313-cp313-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.7.2.dev1-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.dev1-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.dev1-cp312-cp312-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.7.2.dev1-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.dev1-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.dev1-cp311-cp311-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6ad73fec165e172e44e34c789147ec305d12416ced78229600b9cd5086759b82
MD5 dae3b1f5094724eaef6fff32af664062
BLAKE2b-256 51f6e9cc5ed951488615b4e96c54799d40e57beb18c47e19bc94236602578974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 67d9f4e2a629ca76810d8b663a34d9aeaa5187b08f9934ca651bd3ec5b65c4b2
MD5 d3e5d833ea8501893b5c6e1875b2d4db
BLAKE2b-256 7e9806f895f1ce5f073b57aac5335180eaa245fe46c1e5742a13f68ae7dabfc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 cac860ba0d0c93554009d059cfdf64188cdcc45a35b72217a8e45a58e9ae0b64
MD5 a1d5d59cd6810d66c3024a41fd1a47f9
BLAKE2b-256 92a8983d5c005c110e2cda8bf53ca879df7be7b2d3e20d4acce5e0ed5447d8bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 726bb15e07e65b976135ff246f1fba9b667674092d5cde986b859b1b6685de6f
MD5 00ddfc3cabbb603ba4bc63b3ee24b456
BLAKE2b-256 0902f3f3ca15363813293ba08ed4256fbbc3739cfb7ce465ccaff31b524a6097

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a8552a7273b3f6977040be36d5e6f5add7ed9624f990e0e4e589f57fa3b1cf3a
MD5 bfd572f33e5aea73f4cb38a228254e40
BLAKE2b-256 5619649408fe86b74f3897132eee15986b5bcacd8ad979626b96575a53aa1fa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 82a06f154a39fa149e195b27aadaf55a43869dbb51301e4851902fae9dc618a8
MD5 aecc95c3b33cdd37110ea1cdef88ac8d
BLAKE2b-256 c6aec55a362026192a2784d6e0be20487238677fba7962ec53b4cb182dd374d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 f84ae42bc4ab82aabac146a6360dcd6fc5d480072a2638005070fb6e4f2f583c
MD5 169722816d0c242e29685ba9c5760d2f
BLAKE2b-256 d3f840d1b36638e59477a57471d015fbe656e1c894ca85329cec824c918bfd1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0416951f7fea86788f126b069f23cea0b20129dec382f01c29b8376b7b1303e3
MD5 d9b2c80aeaf31ec4b353160f2fe3acf9
BLAKE2b-256 cdcc79437fb090804da8f3a6049dcca68c6fb605fe750bab6e766a39b7055dd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2389333d2d6f987a9df54f93273369a7dd74438f44607be6d803f35db052c3cd
MD5 ebf197727846fe12743e98b966cc7f1d
BLAKE2b-256 e17617b7556dfa9f768c8ebe90e078fff6f6de8b7e5ed7297ed4719b62a3f21b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f83858c47abd0c7612a71a70bf703ebbef5cd1f3356799dcde0ef6c8bb37a780
MD5 60371f96c2a9200d20f2409e24b0d5d6
BLAKE2b-256 0ca543ccbceeeefe1fad7edd634ebbec72b4e06fdcfa2862805fe7d0ddaeaea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 cf4d66295d892ed1f995f05c04a6cac955df2af6431a9f8c2a765616f33ba5e7
MD5 d710dcfb6ea03d06ea5c31d28221a071
BLAKE2b-256 8dbf64cebf01255c79106700f7d83566adb7cedfe3344b15cdb0ea241c9dcf74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8309a9419a86bd0fa242083c4dfc570e9dbeed9bfe60ab5aacb8c939c1410bc1
MD5 337b84d5f62095d3df602698b0b3d7b5
BLAKE2b-256 14661030122a9e2d220436c4a402a21e51c0b5eac4b5c6f13a6571ff9ff6bbaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7fd3c49ec5d2b972af0d4f1834d6e4ba25901f67c9d668c98188466c990559d2
MD5 044b8b6fca01525d4e0569090687f446
BLAKE2b-256 08fb37ba66599b8a92d6cd465ca9a32cf2e0a8e9f4a6df225bf1ef0e46b19711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 99f6e10989fc45f737e9c9c7c8b1a2fdc5763a8063a11d16862f5a57c9cb0263
MD5 466d9ccaeb4b063ee7fc78888e52991d
BLAKE2b-256 dbf03c2119169d7cbdbedf159e78b074ce11d7d6356751a9b3d6cfc2fc3d89a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 65997dccb5c6038b542e3d15c24dd5c2224aaad4a33715ff87ce8c2ec8511f6a
MD5 bacf7266c884c19dd096a4b33c3deaf6
BLAKE2b-256 c6b3624a378184941da860ca0de434375476ef7ccc16963cc5244a5fe56dbd45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53f19f930f7f503eff651263789c50d904e91f093a19d8faac9dfa215e9ce1a0
MD5 206803682d554c55dbf3eaaecaec60fa
BLAKE2b-256 54abdb6aa2720668964553a9de11da59b1b6bebe5f205e757153645631d17770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 af3c27fe4d6a5dbfa2ee7052fda5829f565f786a49867b97f41df71167b9db41
MD5 91ae19b4bbe602f6a166c84c8f6df777
BLAKE2b-256 8f15ea558164d4d35a86213fef890a1ae3a305b817cadc39af5b5621fda14364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 251efd2ce3ad698f27f0a7f961bc0932b96c5ac26c9513d49b619b0ff41319c6
MD5 f23073b50cb60b3f07be0c3f1c3a656f
BLAKE2b-256 cdcf32e04351dbeee7d97601981880619faf7f70e6e7fd5a852933f47886158a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 54ca04bd9e9264db6f632863f77d5b4a03a109da684c3383971d537ccff4adcd
MD5 67818744e2e0690d520afacefa82c7c4
BLAKE2b-256 550f18fc794736edfa5ec43f235aab6455e17455f2b0d1ffab394fc1587d3e2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.2.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78aa143dc2f7331b61dcc77ef5355a280fde6705d0946c1200c0cecea367c01f
MD5 9f7c9dc71fb47b705edbf4a0a8c89d7c
BLAKE2b-256 e26e8fa270bd5807310c7d812898412fac0001784b2b0a670cfe6a0e36f02d83

See more details on using hashes here.

Provenance

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