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 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 (~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

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
โ”œโ”€โ”€ 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.7.1-cp314-cp314-win_amd64.whl (78.8 MB view details)

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.7.1-cp314-cp314-manylinux_2_34_x86_64.whl (82.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.1-cp314-cp314-manylinux_2_34_aarch64.whl (80.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.7.1-cp314-cp314-macosx_11_0_arm64.whl (77.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.7.1-cp313-cp313-win_amd64.whl (78.5 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.7.1-cp313-cp313-manylinux_2_34_x86_64.whl (82.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.1-cp313-cp313-manylinux_2_34_aarch64.whl (80.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.7.1-cp313-cp313-macosx_11_0_arm64.whl (77.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.7.1-cp312-cp312-win_amd64.whl (78.5 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.7.1-cp312-cp312-manylinux_2_34_x86_64.whl (82.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.1-cp312-cp312-manylinux_2_34_aarch64.whl (80.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.7.1-cp312-cp312-macosx_11_0_arm64.whl (77.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.7.1-cp311-cp311-win_amd64.whl (78.5 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.7.1-cp311-cp311-manylinux_2_34_x86_64.whl (82.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.1-cp311-cp311-manylinux_2_34_aarch64.whl (80.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.7.1-cp311-cp311-macosx_11_0_arm64.whl (77.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.7.1-cp310-cp310-win_amd64.whl (78.5 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.7.1-cp310-cp310-manylinux_2_34_x86_64.whl (82.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.7.1-cp310-cp310-manylinux_2_34_aarch64.whl (80.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.7.1-cp310-cp310-macosx_11_0_arm64.whl (77.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cab96ae48b9ed248e6a000d7bd775a7859a9107e84b9114c5024c24248d9bec1
MD5 1201b0858fc2d687c2085d450cbbfac1
BLAKE2b-256 e7e00073e4eec7188263a93d53466bd3b92ed77d27c110e01d90dd3ecbb706e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f690fda221b28250e493a93007be6a40b6ef5d235e0d408bf3401dd6375fb4cf
MD5 236624c160bffab5b79f702b2c61a189
BLAKE2b-256 e252f341e4b56edccacd0d13c1bb544c476d18fe5a417fb38101ebac663dd56b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 f0e9a93e4c1ce8de5ddd1ace2280a17621c59c6fa0ecf5b9a7171fb703d61440
MD5 cf0430dad93df668e0d967a4817e26fc
BLAKE2b-256 dc3e317b24f087a165d4ecce3c02ea6eccccbe710b112a4932d12afb31f6f469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 211d29af1f9ec26ce68f267961228eee5831692ece281320c55800d495d01e2b
MD5 f4651d3c68bec3ba5981be3f8e5d98fa
BLAKE2b-256 90b85a0605547d63a0058a9945492a51d8000b54eaedb8bb3fc8c6f138ce834f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 32bf9b633b160ce03ae58e3914fe6401f9c49efe183166b307a8471382eeb55e
MD5 839f80a00df5e1889387b4ecd4c749ae
BLAKE2b-256 dd3cd1b6cab0c17481de46cc44fe58cf03a2d63b4cad9eea2bdda41c561ace0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 47e240ed4906a5a337df35a09e640ad4d24e6500a063c80f1f0cabbe003286ab
MD5 b36727ceb5e5b77ad5785c700e09966b
BLAKE2b-256 cb880eb3d76643f54ba0df70a27917b031a22b55e88a6898955099988f24247f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 bbd44618e1a9d9ed691f76fe62db3926a08bb74198dda142fd046d75a2ea187b
MD5 5760e959a780855443ce328bcab4202f
BLAKE2b-256 eeeaa84d74c167c6e4857d8f51745dd75905136dccb545d1a22642742cee422d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d81b954dd538f195c5c95b476618dadfe46c3f24d4e4da553cf1e9c8de2acbd
MD5 cdf96b42a4789aaa535e697e14ea0ffd
BLAKE2b-256 eab3b1c502f85a5cf1a10ba6680967ba5cc24b93937ee21a1ea626590280414a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c84f797824df1d75b5def2248163a09ca5b5358adf79a8a7a865292681a7374
MD5 7cf641a6175b4c6bde5e2d4c21eda9e8
BLAKE2b-256 bbe07cc0c7698745ac3c1d6dd1e0a78552ff1c12f06de1d511af714627ff61f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 8b82950909854b9ed6edb81d8f4a9a10493dafdefa3bef6278b998a3689b3cbe
MD5 8c9c55cf2895b9ac0e7d096af95bf012
BLAKE2b-256 a79c0619d2c728b893670b247712c7b9266d7f0f0ea069fd1dc3e61bde6ced56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9d7a2cd26b303a326579b1d771e27b5ade724248a155b402b58ed02c91a67dc5
MD5 63ee07656eb3aaeeb97ff45e3f80ec2c
BLAKE2b-256 9fabdb97dfc76f426ce06b0f3fdcd3306093eff762080c75becaa81ce6ddad8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0dadc9351d8ea6ae2decef8f2991548c58d8d0468705dfe28a7ca037976727e
MD5 944c3b0f771245b47b02ea8722d81792
BLAKE2b-256 06487c03755f57e4193e3c94a691a6cab6e0e620aba51c988fcf566cd42a7916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d37e2bc197d99b26ef52e60e738329301f0fb78d17f79f3381d76b559517e72d
MD5 a564c7534626f9252a2dd3018d2eea19
BLAKE2b-256 4983de6d1f9eaf78b7b80bcdcdf34b25d457e687703d7ecf57995aad08185ba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5370ee40ffe164ed064014525ea357df9a41dfccee83ae3549f266dbed35658d
MD5 6e9196279f078872d0af37b37d2559ab
BLAKE2b-256 06e042349d9625a975ecd43163d42ba97392f5937ba634136934b248c86fc69d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 1e7df5eaffce154aa71be4b1b80c55e4dbd36952b467ebdb4eeafc1a52a8a51d
MD5 56d6bf21107a85ff8e8b25ac993d6078
BLAKE2b-256 e7b79d0cd919f863dbe07f8c15e772c7d3109e86ac5bafb3fcc26c3b5c7e97eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53ecb3bbccb032e5a5453709bdda35e8597887d4808b8d8d3c6ac2148d6d1ff5
MD5 9960d95445e71957f5e9a80ed17de9c6
BLAKE2b-256 7d79779a9f7c0cd558f85e5436bffd9598d2b3d0970058294a251dcf1e7bd922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8917dc302697ed09acd939cb59e9650622f0dc58285b928bf5e383c64fac9809
MD5 4a37b8e5e4452e00f9f0e80daed1770b
BLAKE2b-256 65b399c112c09c214553c6340c55287886fbea1289652a67267ecbfb32b39aaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 af77aba4427aba476fc1f92f5be0fcb4d30e4d6dc5425bc72934360b0f9d830e
MD5 7f25e230a7c1895cf1ce0c0adc89f8fa
BLAKE2b-256 0337b769f9dd1311681866fd6743e8adf5f585a81b5feb1664691b8fd2b41510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 a0ab7b6a64125a173f7225af2d6eddb6e322087b843c1c932304db549f455a50
MD5 cf34cfe60af7f3c17b3bd5e926957037
BLAKE2b-256 a5d48464912649c06faf27c9a2566c01bf99a861eadbdcbfed70e742e473d3fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8a68660dea4aedc2c301778ce94e2fd6b712f4ba460b9a97a9361903768ea3e
MD5 464030816d13a47f8129b7cb32005a54
BLAKE2b-256 d35036ab4cca87bba7c000c46e42994e1b694534e08978eaa48041fd375b87a9

See more details on using hashes here.

Provenance

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