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

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.5.1-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-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-cp314-cp314-macosx_11_0_arm64.whl (311.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.5.1-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-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-cp313-cp313-macosx_11_0_arm64.whl (311.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.5.1-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-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-cp312-cp312-macosx_11_0_arm64.whl (311.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.5.1-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-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-cp311-cp311-macosx_11_0_arm64.whl (311.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.5.1-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-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-cp310-cp310-macosx_11_0_arm64.whl (311.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f9bcb750f49c5a92df53c75a31b279a23755b6095775ec8e0bd8cb4cf728cfe7
MD5 443c2731e177306ad3ecdaa93fc0dfbf
BLAKE2b-256 979604951d800193fab4fc688e804ca5afc219ea6abc33310060d02bf6661556

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 86be1c8d32f09399c6a9a2259a63d015b62d4dba7b796a31a9cf419d0541de71
MD5 ded4ad3927f666b5d72ebede6333b803
BLAKE2b-256 8f430263b02a858a2f914e926f6a44b28ee625d9e84e55ae4943bb4a7e4f9c9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 cfbd2ac2ec65421493a60eefb29b81e5492951196c3607c4b9173abecc784eb9
MD5 35fc83d16b3bb5a21f02a7b30a4bf7bb
BLAKE2b-256 0e432e709bb6d3cf2e7504b42f400f5790dea515e9be7bc79714aafd18d5b031

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 262f364bc567c076efd20fff9837ed2c6a22e492de08066515f26d7efa80c5d2
MD5 2414a8c28b9629fd8f713a0a51660d47
BLAKE2b-256 dd7b2292f671f62eb21f692aab549af3d670c67e226792535e5955f835722cb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a08887d85dcc53db8c755db5683bf9903632e53b03e26bf2e94436029bb62a65
MD5 5213d275a30ac8c47a3ad814e7f02aba
BLAKE2b-256 27d887d00fc3e4e3344ac046a43591d6be7eaede824884ed50161c03da677932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 31a95dcab952c77fd8fc76b989bfadb87b0edfa97807b08327e38fe0ac1558a5
MD5 08d852416d3b0137009c83de99db7fcb
BLAKE2b-256 8ef0d0e6408a312f6be6d0bec0aed58c0a2b88f713ab0535bab67f383336ef34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 b19d131cca5ee6f36aad41e439ee14d4a3e48e088696acf58063c2b6f7cf3dd2
MD5 e39f9879e467703aa61bfa2b4b9e53aa
BLAKE2b-256 cb878d252456f6414d5d0726c32d5080f3c46385b5b278e5a26c308f286163c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3666652d72eae1019588de2ec7dd40aad24382fa8a44fed998a2fa92891fec6a
MD5 03d7cfcb4ab9f9377e84c7b9c3069995
BLAKE2b-256 9813b5194ad2d62237f0040a80a5f988db34c06aedf849ff0492dd5ee711b547

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 55b2a6605a03a19fbcbe9e4ae69b7a006439a97eee3704687cbe9979f8810d1c
MD5 8b4f5194e6d27b6a8f1b93b0b0291e73
BLAKE2b-256 d15708cb2da4b57b2cd8c581f7fe4294ffce634258d3b8e9b84c9350f19683d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 88ec831547ce3075a688d80569e92160472139bff9d400ab2032ed4c8fa02561
MD5 35fd7c420f8b2f31109c6117a0b9f20f
BLAKE2b-256 2ec9e611c2f244ed1178a27f307742373e9c855b05b2264eb822eb3e3b76fa74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 dac1df26119badfd866eb8ab436411dffc8e662ca3a5f0cb042cf217fda17bd8
MD5 52c6c154bb6816d3ce77b3dd9b7dbfbe
BLAKE2b-256 8be098762a48b802d4822a254d91778bc1d47fca8d0dd3b9f63c911466f09e67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2fb368701b99ed167b8616578d95891bdec59c9ee5b92fa2cc43595dacd31b1
MD5 ef23626138b03b6581d9a9f776a4254a
BLAKE2b-256 cff0dd8943f046a9c0725f889898bb629a940e75d3231101e9542a3cfc51c3af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dcf070726dd09fd3aa589afbf0eaf8cfa2ca9a43a46ba05ef31b10b56fe20de5
MD5 992ea0123050306da59d7ecd7e383303
BLAKE2b-256 b6345655dbf69ba3429d6f295c587c9de4d349ca0991d7e73e83eb7f580166d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 3273646252a55aca329bf76e8d5cefb18e5a4af0f6cb4a9c6ec8a94f958deeae
MD5 14f08faa1e814fc5ecec527d484b6959
BLAKE2b-256 28ab2bc227def13f3eea557bdc40bbffbd1d7474482403839d9f8f1f2c06bd70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 7ee2d6c482fec34fa5082556a10bb64fbd80cb83ef11ff6ebb5b5a5bb11b4f27
MD5 1f4385550c8addbf73c2ea8b0bfbe094
BLAKE2b-256 c65b802def2d5da7acb34953de35bc07ca4f78db7ad0247b958b2f48ea2adb8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b6ce93659b5b046569a52954b567dd59bb3550a38493d1200893ceac4e50f55
MD5 b4c7c98a87d9216a313fd74572e0bbbc
BLAKE2b-256 5a6bd8e53e3db777b838e16eb144d79ad31ef2d83b5d883edce111fd3bbc18ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6b96a7a30819796ba944076f5c51e54baf5d7838647446c2903128df780e89bd
MD5 0da5857c7e92974fdf79fea193527251
BLAKE2b-256 7a8527688503ae0af281d14e06fccd24320a2d3b8f4166cd778bac1dc3eb2078

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 4b5a508a5f0b3124c8402f7d37bc5165615e3f642effb24de939dede2c3a39b7
MD5 548c5b5d79424de5d272fdccbe139799
BLAKE2b-256 0bc7a4d87bca7313d65df17d1c38e41f0cd600523bf26c6e209e796dff1e9031

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 ab6532d580567c23b3ac6af6b5a77b4fa7a659c891ef78ddb5277e3617ee52c8
MD5 a993df7f5c575054f14a37dbd451dc3b
BLAKE2b-256 3ce373496aa0abe2dbd3c572dc83f9dbd7839f075c9f33a6368c0423d8d09448

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa1f636d430076ea4f4d9e74dd165cbb7019efb2681256155752bb4f649447bd
MD5 2ff969191551fc084ce68c61eee5fee4
BLAKE2b-256 13eb6a761d7549df52a302187541724e676c8b47462ef96dcbedc4bf8dc91a3e

See more details on using hashes here.

Provenance

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