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: 290 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: 290 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.4.2.post1-cp314-cp314-win_amd64.whl (312.2 MB view details)

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.4.2.post1-cp314-cp314-manylinux_2_34_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.4.2.post1-cp314-cp314-manylinux_2_34_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.4.2.post1-cp314-cp314-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.4.2.post1-cp313-cp313-win_amd64.whl (311.8 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.4.2.post1-cp313-cp313-manylinux_2_34_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.4.2.post1-cp313-cp313-manylinux_2_34_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.4.2.post1-cp313-cp313-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.4.2.post1-cp312-cp312-win_amd64.whl (311.8 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.4.2.post1-cp312-cp312-manylinux_2_34_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.4.2.post1-cp312-cp312-manylinux_2_34_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.4.2.post1-cp312-cp312-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.4.2.post1-cp311-cp311-win_amd64.whl (311.8 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.4.2.post1-cp311-cp311-manylinux_2_34_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.4.2.post1-cp311-cp311-manylinux_2_34_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.4.2.post1-cp311-cp311-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.4.2.post1-cp310-cp310-win_amd64.whl (311.8 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.4.2.post1-cp310-cp310-manylinux_2_34_x86_64.whl (76.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.4.2.post1-cp310-cp310-manylinux_2_34_aarch64.whl (75.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.4.2.post1-cp310-cp310-macosx_11_0_arm64.whl (310.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9494b876baab24bcb8751c1bacd82c86180d48c5968263c5ce42a6a2fda183cc
MD5 785ce4178413f636eb66efc03f9b3f51
BLAKE2b-256 2df64fb6346970ece1b63f38513bc5f1d121f015a2edf2f545f0256f03836ce0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 a16e78e9ad14b2ccfdd46c0701be83276ae060c2cd30cf4ef86dde5251c36783
MD5 30680a4d71c39f9d75b6fc6492335e31
BLAKE2b-256 455725fbcd72b436838c3bad8037d625fa708edf7254c9d1cd4561978c3d0f0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 04969551c8a408834cf28d8fbdca1fc216d51f2740399505a8f38cb6ba84551d
MD5 85fddf846d7d50f4371731f782041358
BLAKE2b-256 23b1d3b3ac349b53f29dfd69d6ba8b35fc3126ff47c60c7c0dd8e3f5a4a85047

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0d9825269b47d36a12cff9c1e61fa35d7b358a9af764417dc073d5180b0fb3e
MD5 0b3e072a21c11aa9c31ec15590d3e8c1
BLAKE2b-256 791fca41098a2dc7ce2e9b9256a7eb77068339b2a246b34e9429e7134413f90c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 15ead7b2f2fe1687557e949cd810d720fe7f72174522089e4cd7a6f65aacec09
MD5 a4ca3719a8dbda762f37ea0edc4af0ea
BLAKE2b-256 c8e02e4e566fb9a1025a99672d4fbd91af57407fd9b5a38b9c602af216c5e553

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 cca17f5369ed6b6eda23284120a5a70aff376851e3f50061c5861d5e5bf88c75
MD5 8578d275f969ddb72f6c56322b9cd1e5
BLAKE2b-256 0b21980cbe9e6736ba373ff974f43c36620cf36a607c1f62a91eb2e5391d6654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 90a5b7570985cba7d861750e1857fd6c3453ecfc471581cf6d97b25bf5dca239
MD5 b99709891e389f37d6c8cbf4ec342b94
BLAKE2b-256 0e0e78fe112e5922297e10d5ae0e4400165c836f8711c48b4a1b3403f7050fc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de6a4aa5ac574f90d4889bad797b69fd19e5293c1faea4d6da921c4a977a462d
MD5 588cec59f9b6776b12d5207eac707425
BLAKE2b-256 01d89e62e9b480307db045cd3f428a89eb73a2e6454f5a8af09c8712df0b4773

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 834d05e7b8007bc0846efe3894b28086c7a89aa155ae0d871d3e0a275d478274
MD5 27fc25f0a292cfba050da1c607c954d7
BLAKE2b-256 5486fda2ce23a9bc12754134cbde7e71dde7efdd527904aa72f9757144399956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d3b3ea1b19844c1a701f844ce446b37550ea71a2aab01499560f45d1916f19fe
MD5 5fa8b6b46de4c7c5d8838a1ffd35adb3
BLAKE2b-256 b8bcc5f21836af3845be8bb6ddf07994db6e91bee08820cad4c76d525a6624f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 aee9a0dc5485c8c74ebc422a5fc627d8a65b156b2941fdb64525b94955c2a9e8
MD5 0a7ece3cc63fc7caa240b33f8a0850eb
BLAKE2b-256 9911115ef32b3a0749f8b77b1a5d960ba6b353870c5993710675d269f63f71a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36546f2db18365cfaf4d95ec1c0a575d918feeb77a119e9aae25348ac47b2e55
MD5 b1d1aa8fdb40f1a5cca2bd5c2b058af9
BLAKE2b-256 321fc68d822a54e3364f750bad5910cdde71b000fc8cc0e98c9447931507c67e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e80dc296a8ec2a6f64c87893a22c01a163265737f32ddde5649739fa2c8c39db
MD5 9b5866ebd974a5a6c80e41ad463b6fb1
BLAKE2b-256 80205d5fdb4bb5b75af32b4b4fb9363f75c9ce8c92a720fa4aee352a338441e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f23316143fa7aa91dc134ed06e7db6057811336a0421adf329e7c9d37839fd95
MD5 d4c191de3b4780f06554185daa37bbad
BLAKE2b-256 515a6ec2a6102312334467a33958f1ab12c2ae6d1ba15c90c6626da1436c574b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 3835990cc3332fcb969024d91881a0ff2f83a7d4528682806696d7bd6cd6b07d
MD5 7ee1972de917e0c489d828ab8642811e
BLAKE2b-256 8bfb10918ea857215e4d21118388c51e4b1d1c8baecd37f4b242fbc305d968f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fcb769c25f2297d855df30523a7a6ae8e1738bf435fddd4f7d7b16ab6147dbf
MD5 fc34f8edb6a0bec2b34272b17a814e5a
BLAKE2b-256 91bfded26fb319e15b50cdfedd45bb6a31dce44d4d275022a21a27384f9fd1f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0290264df22deb49e5132ced14c901ebba92a770564079fd1c2f333c05b05511
MD5 803ba34816e8d26041f791310ae5c3ed
BLAKE2b-256 a1e6600275fc149b358343396e9abea59d8263b060f75500237c17ad9e44f366

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 fe0edf22714ca4c88482f5de535eefb52b202d4ea002164a1634bb3a0db724e7
MD5 086e96b9063b83d97501192ed4fdd5db
BLAKE2b-256 231fe56f6d7a3882958a6547654b89a9db528f4085d8abfc9d0a341de42347f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 fcabf06feb23c9f43782a4cf4178879f22d09cdd80468ed84b620e704b7feba1
MD5 90300161450a5207fdb6ac8a817fef82
BLAKE2b-256 33dda83e89604cb2461896eb5386114ff36e73df2143345576b63c4df4c0108f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.4.2.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6957c53e0c64271e33dcb87e439c8e66de015dc039c444a2a5cc2cd9eb31be0e
MD5 a503c90f45dd0ce9541c65d2ca7b02f8
BLAKE2b-256 6ec7b71fa9ae6cdbb1746c3adaf7a3e5c0b8f4484194f408bc6926374515f6f4

See more details on using hashes here.

Provenance

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