Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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: 370 Passed | Platforms: 4 Supported


๐Ÿ“š Documentation

๐Ÿ“– Read the Full Documentation โ†’


๐Ÿš€ Quick Start

Installation

uv add arcadedb-embedded   # or: pip install arcadedb-embedded

Requirements:

  • Python 3.10โ€“3.14 (packaged/tested on CPython 3.12) - No Java installation required!
  • Supported Platforms: Prebuilt wheels for 4 platforms
    • Linux: x86_64, ARM64
    • macOS: Apple Silicon (ARM64)
    • Windows: x86_64

5-Minute Example

import arcadedb_embedded as arcadedb

# Create database (context manager for automatic open and close)
with arcadedb.create_database("./mydb") as db:
    # Create schema (DDL)
    db.command("sql", "CREATE DOCUMENT TYPE Person")
    db.command("sql", "CREATE PROPERTY Person.name STRING")
    db.command("sql", "CREATE PROPERTY Person.age INTEGER")

    # Insert data (requires transaction)
    with db.transaction():
        db.command("sql", "INSERT INTO Person SET name = 'Alice', age = 30")

    # Query data
    result = db.query("sql", "SELECT FROM Person WHERE age > 25")
    for record in result:
        print(f"Name: {record.get('name')}")

๐Ÿ‘‰ See full tutorial


โœจ Features

  • โ˜• No Java Installation Required: Bundled JRE (~63MB uncompressed)
  • ๐ŸŒ 4 Platforms Supported: Linux (x86_64, ARM64), macOS (ARM64), Windows (x86_64)
  • ๐Ÿš€ Embedded Mode: Direct database access in Python process (no network); for client-server or multi-process deployments, use the official ArcadeDB server alongside
  • ๐Ÿ“ฆ Self-contained: All dependencies bundled (~62MB current Linux wheel)
  • ๐Ÿ”„ Multi-model: Graph, Document, Key/Value, Vector, Time Series
  • ๐Ÿ” Multiple query languages: SQL, OpenCypher
  • โšก High performance: Direct JVM integration via JPype
  • ๐Ÿ”’ ACID transactions: Full transaction support
  • ๐ŸŽฏ Vector storage: Store and query vector embeddings with HNSW (JVector) indexing
  • ๐Ÿ“ฅ Data import: Built-in CSV and ArcadeDB JSONL import

๐Ÿ“ฆ What's Inside

The arcadedb-embedded package is platform-specific and self-contained:

Package Contents (current Linux x86_64 dev build; varies by platform and version):

  • Wheel size (compressed): ~62MB
  • ArcadeDB JARs (uncompressed): ~24MB
  • Bundled JRE (uncompressed): ~63MB (platform-specific Java 25 runtime via jlink, 16 modules)
  • Installed package size: ~87MB

The compressed wheel size is measured from dist/*.whl, and the installed package size is measured from the extracted site-packages/arcadedb_embedded/ directory.

Note: The package is embedded-only โ€” server/Studio and other unused JARs are excluded to optimize size (e.g., gRPC wire protocol). See scripts/jar_exclusions.txt for details.

Import: import arcadedb_embedded as arcadedb


๐Ÿงช Testing

Status: 370 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
โ”œโ”€โ”€ graph_batch.py       # GraphBatch high-throughput graph ingest wrapper
โ”œโ”€โ”€ importer.py          # Data import (CSV, XML, ArcadeDB JSONL)
โ”œโ”€โ”€ __init__.py          # Public API exports
โ”œโ”€โ”€ jvm.py               # JVM lifecycle management
โ”œโ”€โ”€ _logging.py          # Internal logging helpers
โ”œโ”€โ”€ results.py           # ResultSet and Result wrappers
โ”œโ”€โ”€ schema.py            # Schema management API
โ”œโ”€โ”€ transactions.py      # TransactionContext manager
โ”œโ”€โ”€ type_conversion.py   # Python-Java type conversion utilities
โ””โ”€โ”€ vector.py            # Vector search and HNSW (JVector) indexing

Architecture details


๐Ÿค Contributing

See our contributing guidelines

๐Ÿ“„ License

Both upstream ArcadeDB (Java) and this ArcadeDB Embedded Python project are licensed under Apache 2.0, fully open and free for everyone, including commercial use.


๐Ÿ”— Links

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

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.8.1.dev21-cp314-cp314-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev21-cp314-cp314-manylinux_2_34_aarch64.whl (60.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev21-cp314-cp314-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev21-cp313-cp313-win_amd64.whl (58.3 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.8.1.dev21-cp313-cp313-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev21-cp313-cp313-manylinux_2_34_aarch64.whl (60.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev21-cp313-cp313-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev21-cp312-cp312-win_amd64.whl (58.3 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.8.1.dev21-cp312-cp312-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev21-cp312-cp312-manylinux_2_34_aarch64.whl (60.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev21-cp312-cp312-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev21-cp311-cp311-win_amd64.whl (58.3 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.8.1.dev21-cp311-cp311-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev21-cp311-cp311-manylinux_2_34_aarch64.whl (60.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev21-cp311-cp311-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.8.1.dev21-cp310-cp310-win_amd64.whl (58.3 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.8.1.dev21-cp310-cp310-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

arcadedb_embedded-26.8.1.dev21-cp310-cp310-manylinux_2_34_aarch64.whl (60.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev21-cp310-cp310-macosx_11_0_arm64.whl (57.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file arcadedb_embedded-26.8.1.dev21-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6974e0bec3e01a2482f392421d4a732367ede071888b864058cd143da20ce727
MD5 ce573e9738b4d030ac004c85d60d6bba
BLAKE2b-256 0462b08d51f076fd65bc07c7aafa81d48e742f809ab431f65d86f4316efce33e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 da6890342a18fcda7d4cf21f72f6d713ceea283b63346bec712b4f40521d6127
MD5 fc6c2f000866e1d48a60c11d9cc6e190
BLAKE2b-256 72f84e96476b8a96023219ccd770a9052fdfc6fc98c17c76dacd8264622ae5b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 ae8dd3efe82286aa3e7d482550c8c60f4db06ee73cf4181b0812b3fececea315
MD5 497f9ef6d988f185db90f74d313de2ee
BLAKE2b-256 57c3262f0511c6466c903f272109ed7815a783554bc2c33f9941cf34c3453159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3f1bbc88ca67312594d831ee4e8fa98c6bf362eacd5a1f2a61a529918283716
MD5 8001bc5d61746defcd0d7dfc6dfe11d5
BLAKE2b-256 c461123715563ac695d90ae2827f7844d666d8b7fdb32c7ad32d64ee91f69534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e6b677b86a3469c844b9b0863234c1f4c51f29fe1b6e5bb2db9686eb5e04a434
MD5 a8799b23b2d53272ebe08877cf0b2584
BLAKE2b-256 f9e405e99c7e8584f01d991ba65f1a6d330e31adcd12891ada6e6a6b31329725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 2abe24191d56b8c9a8260ea5ac03fbbbace48a0f7e6d0ba407c37c3f458b2a5e
MD5 44f9ddbbaf460371ee494a4ad5282d0d
BLAKE2b-256 d33389d9212ab9f1ffc59cff67267b44a6d565119ca12d0b4df9a1fef23810d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c0c64d815e3ff2b9ece3d7139c810d40e5d2e82a19e28323b3087d20204ead19
MD5 28299cfb584dae5e6472bfed105d357e
BLAKE2b-256 c2ed8b8f943634749a3edeff4b0a2270d679554adebbd14b6b6b3e55500acff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00c52d27d3280eea71410d67148babebe4d4f9b577d7d6a8752851f4553b73e8
MD5 cd45194cfd365e54e3c101dc6cd57609
BLAKE2b-256 8afc706992e7564bacb0d03ee760181e80bdc7cde1d3d685795d4006cd142985

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9b5358c06bfd688e88743e6d2f686f5d4d2cac3d67e0483fec1536a2e3c3c98d
MD5 2b4eeffdd77da41126b82c9857f113a2
BLAKE2b-256 9982e9e8d34cd0c79e38db00570a29bf1e3419e289e47a34080b7b541b2a3c89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 50423e08f7ac965fa10e8d5bd54377f0beb026c9b9996351c644b333dfc4acc1
MD5 d46bc61ea8c939de825b096688a74e89
BLAKE2b-256 fd4c6cf1d7bd7a1f22e4a5b4299ae94110fbb26d604134292c3918f690868db1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 41f1c3023d44c132780d9a5385dbbd88803569bd8e48384e37be689093329063
MD5 9eddf059b1eb36b9d6227cb2429d97f9
BLAKE2b-256 78968bf156af4ca74f5b3552334954e7cf5fe6ec7a08d23ae3c59af390031d48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45bf9927cb8f18d80db8ba0a61d5f975562fef82b85a46b905127c77ba2ba218
MD5 56a3d88ec62af27c03d6538e773e5a74
BLAKE2b-256 c05014a63d67ac1a3caa1db79ab3be301a7810f084e756843718b4feffc13d42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cfed0e47518e78948e5dea149391aa18cc9d777abb94e44f12961db7e459b67b
MD5 df6dce8a238b074fbd9e58eb8204a29a
BLAKE2b-256 5c7e5574bde0d2bd11bc61bb4c9ff8afba1fb6e0567680858f24f9e0abadbcb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 20911030eec1842c34be6bc364f1371df8dce494e9130156e4d9a36c3a355fd6
MD5 10c0f17004b445100cabfb328acf4dd4
BLAKE2b-256 c8a7906eec1a3412f726b778b142b21ad0da6b1490e043c3c98cbabe75c99570

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 6d3624021eceb9ebb827aa114e3be18bf5bf5fed34b63c9c6057a1b279d90bfa
MD5 b1cac4f6e71f54b041517fc3dee4a398
BLAKE2b-256 8a77a94b42eaf948431e78f3562a02b51aa4fd16ead200f5dd01e402e1109167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1e6d6d935e352f9afa781cbc7ae548b7837b87d0e0ec14361807fc69276654b
MD5 fb7e3cb036ff701e4d8e5348e2fe2208
BLAKE2b-256 f2e5d16618dd99eb74243faeeb3fa63a333c7e8a7044d75cd8fd643080c5aa53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 45523ce047bf1c8f473de9d90ef609c56cc0d524a1547a50a1e204550b7dedf8
MD5 22cdffa740e8658b615a9c2c9f671567
BLAKE2b-256 48a8e8a6c65a84ff4443d58880042d8add65bea0e2f702f8aa00b18b37b46382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 32317977d459b2d90c26753bf0dc146e0b24c034ad9d296f4e961c0071a5af1d
MD5 978ef3bf79413ee4ca7d84e5ec13180f
BLAKE2b-256 535f7fe974b6a085c6aa36fbc8ad383e66f1bceeb219ee4229361336ae8b65c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 a879ab482ae746e144e88add6431d610cdf34403fcd76d88062b98060cc459cd
MD5 b172b825fee1afc4ed58bfe798d6721f
BLAKE2b-256 11bb52624543729ff10839392b0d1d725a1ad000872af344da57fc256fca13c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev21-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7e3e57523f310bec6d9816e0d223eec09e2e3f6b4e0fcafc7ed1fa5ec039790
MD5 68b856e64ed6d7013318278c42e748db
BLAKE2b-256 2d175f560923f0fac81e707074771cb7c7c0409f56b775d59c26ff6d5aa90d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.8.1.dev21-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 Sentry Error logging StatusPage Status page