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

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.6.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.6.1-cp314-cp314-manylinux_2_34_aarch64.whl (76.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.6.1-cp314-cp314-macosx_11_0_arm64.whl (72.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.6.1-cp313-cp313-win_amd64.whl (73.7 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.6.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.6.1-cp313-cp313-manylinux_2_34_aarch64.whl (76.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.6.1-cp313-cp313-macosx_11_0_arm64.whl (72.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.6.1-cp312-cp312-win_amd64.whl (73.7 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.6.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.6.1-cp312-cp312-manylinux_2_34_aarch64.whl (76.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.6.1-cp312-cp312-macosx_11_0_arm64.whl (72.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.6.1-cp311-cp311-win_amd64.whl (73.7 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.6.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.6.1-cp311-cp311-manylinux_2_34_aarch64.whl (76.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.6.1-cp311-cp311-macosx_11_0_arm64.whl (72.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.6.1-cp310-cp310-win_amd64.whl (73.7 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.6.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.6.1-cp310-cp310-manylinux_2_34_aarch64.whl (76.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.6.1-cp310-cp310-macosx_11_0_arm64.whl (72.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f496b65612f149a4044b98549c94d810bf26ff27ce7bd74e60e28b072421c94c
MD5 65aa3d2fe1ec9cddaa34363d33f7b775
BLAKE2b-256 fa91f91dfe94abc25868de863a6ff9dd0742d6777daae283384f37d03b77f2f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 be789e121805988a638182341fbd957be2b4f3687310bdd282656b38a65b272b
MD5 4049f91039d2a68612481eff401e3715
BLAKE2b-256 e5f7d5597054b542c90e42c23a24b04bb6dba0397b7c0bb957121e73d01286dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 4fcefa5986df0308c3b04a6f7e4f1fb71288a80e7ea118e8c6d3c6c085ee6d9c
MD5 900df0fc09c77459c6f79bab89c895bd
BLAKE2b-256 30cc1463c59b14b62c230f1c4b6377cc1e8fa68b3ff8f723e9cdf6e855613714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84fd73b226cf0d375e924d226e9a161b0d039d6a745878c4732a6ca96fc0f290
MD5 794d5a3e91dddf04241d2852b7187840
BLAKE2b-256 f95c98d1e4b6f5c0c07b1d294bf35a40dab5e29bddb36535c58b35ccc95383ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e28bcdf8b8bf1c089d498c73e3d783f20795baacddfdef917d5f53d96067a026
MD5 b17ce69113d48cfa6492aabdd7ce0e74
BLAKE2b-256 608289d08e5eb2d50dad795455a92e2cd622238d52a58f486f95f8ba7881b3ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 865e92d7e4b0b46c763c5caae8eb9fe48a11b273f2dfe1f851f9a9bafdaff303
MD5 5e6820134a1fa55ea3aa365fd8ec4d87
BLAKE2b-256 7ac41d24d8938a954f79e7b226f42b769ce29446b071b7bb9b697538317750fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9cde3f805a5709ae0d4b8dab8523a159035f2a68dfa129159c32fc0949a11537
MD5 8fc7a3f779b5c09e46d9af535eb8de5c
BLAKE2b-256 7965528705ae4d9464778c2c11a391aeae150840856c44ae8e11a8c385971c9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 538946710d86e76a156faa00e9b9e2e65e2a1ffb69151e1041bc721f1fd1918d
MD5 d3de82f553c293388bea8859152416ed
BLAKE2b-256 5f6f1be36dddb0c3f716d3488fddaf86f8fb277440a8a67559739fc0f7bff0f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4e8927979d58e366399e2031d736e4d9dab6ddd56e0234b45e7ed7a8dc554d85
MD5 ba08cfc1faa2475b7cd750c4576e58b1
BLAKE2b-256 ca02aca7746d3654b77a56e0beda0492f9a55f5a8119e7ad7aa043684b0a5358

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5d5a7509c2666c384f178ce6fa0904ad14f96606abb4807e53d093aa6f66e67f
MD5 84ad3f076fa6c9201f8591c9f5d8fec8
BLAKE2b-256 4704fc66b677e28766a9cef23e4192ea7ba0c5942b5bb1999334118aaaa4b4ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 801127dade7c406e8aa398a5480928c666c9fbab627fc7e29792cca70e7876b5
MD5 76b0d747a5d9e977f7012f5ed990648b
BLAKE2b-256 6fe3ae01729a984b266752dfee1f18ee04e0fd0424cda6c9c89cbbeee62f3f9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fae8a8e04f62e8bb3eab2a65480d4f659780b81309a795b71432fe9a5a340c74
MD5 3fba6b6b1f61362c70bc40f2cde2101a
BLAKE2b-256 48898b3b8704908c1d5a21e500e9ba83437400a1e80cdfd30c0d17baae7a7a37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a5268f2ed2b44e0db3f69e3f8a2653d62b155832da460847cad4ee30321c35b
MD5 af4459bb1991e325d4046c6a30bdc5ea
BLAKE2b-256 358f946e45db5d173f1948049a31396b4a0659b61271033fb250dcadbfb990e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ebc2afda4fa4b348fe97537eda3195380de865688ea659976e1e6f435e72806b
MD5 29d6c40787e945eb55179ce515670678
BLAKE2b-256 6c7482da6dbbc44e386b28ca26a63a5576189ed3eee2699b86dab3af886d6f4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 ad741c65ebf175450d65a0fe631383cbadb9297929834fc9f3cb548b10c72041
MD5 7127def5775758579441c0859bbfb210
BLAKE2b-256 32ba0cece94a9d369c0cde187a5016b2d08251a6b6ddea03e4680ec422e15a78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e830579402a65bfdd776f7af6b83916bd1af8b331035d50bbb127d16e95bc6fa
MD5 cea045a01e64d636b37fdaca823040ad
BLAKE2b-256 7a8f8937ab372f6a41cb299926e3ba94f17dece61b4e7ec095ec7a8e81c51c8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 73114710ad4d09e066783fe35bd9eae2971a5adba91b0b13613ee6d05395622e
MD5 fdbef8b4ebcdaff227e6305b132df2e4
BLAKE2b-256 dde5ad08f6c9b9697ed0205f225ff9edcfa9d029ac549e49906cbea4b8085742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1e24db8f0ecd251d5d9e6457434c00cda0d1dc4478acc8c79bab9034f490166e
MD5 cb5e561a0b8821e6e508b592b0319b4d
BLAKE2b-256 aefc48173d61840496bf8c138d09aec98a5fc36db68dece81931adc5ed8a80a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 381f72c09f83fd5e3d9c9029f2010d515974890ea1742aab66718e13f057091c
MD5 63cb8f6e4b0ebc6931ff7d1f65d8a5f1
BLAKE2b-256 9ce23c59102b98ad5971f12246daafc0c47346324793a49b09efab1b1a1a6514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71618d9402b444d1eba7ff1fe7bfa53c6bb7cfd1f3a82635ee3566cd01311afa
MD5 83e0cf2821f4ed31c6dfb3783af506b7
BLAKE2b-256 8fa6e2327c23ac8210e54c1079044910819f841c89d236983022b347423f7779

See more details on using hashes here.

Provenance

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