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

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.8.1.dev23-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.dev23-cp314-cp314-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.8.1.dev23-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.dev23-cp313-cp313-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.8.1.dev23-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.dev23-cp312-cp312-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.8.1.dev23-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.dev23-cp311-cp311-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.8.1.dev23-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.dev23-cp310-cp310-manylinux_2_34_aarch64.whl (60.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

arcadedb_embedded-26.8.1.dev23-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.dev23-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cf8a7c7d404f7b2aa1644ae6df7a71c9fc80dcdd78737db1e8785d86bf568fb3
MD5 04dc6a60d989e215f3eef25ad0e0aba2
BLAKE2b-256 96a66dc422e41890b44f97db8a7d63b74a12f86cf69a23da0dd43dfd763dbc66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 193cdd75b55d3a466735aa58c32d34f50f0802ddc4025057f38afc4c7f90206c
MD5 63b4ffe10e1b31c1899819aef303cda2
BLAKE2b-256 a7c2db3e3c2b234482544278a2f2624faeddc99fc019285542af2fbe80e77341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 4dc1e744d37cb885a87bd3e6c7e988fff42c8eed58ffd3fdb2212bbdeddc9d28
MD5 03096685b4bcc1b673753f3db210805b
BLAKE2b-256 c19f875662d7136d1058d10a51da13329fc653f5c3beaacef3a23bf4b04ceaf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 641303ad9001bd7c7f47efc1dd9f522f866f715e5ece7e960a67a1df89625df3
MD5 dc2c857c46cdfeee1efa33bc2f7db208
BLAKE2b-256 87457ecdce9fa0d710d2fb02c534a05b7156085334d2b0d169ab88e9b2d37ed7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a4c7022f8db4fcd741bf44c48d9ef3975a93a89c6b2123343255b790089c4976
MD5 ba6a16725eb8fe85d57bf5e621f6f9c7
BLAKE2b-256 b37811e7753bcbfb7b7e093cc9d993669c8db07b2d96beecb7a8d4a58695c8e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e9a91c891a537ad030220712ca9bc0b0fb0505e61c4120a5c967b6b5f42c9db7
MD5 0d24a033e8a3727ddf28ef902f804683
BLAKE2b-256 5862c5fc247ad5d2d8700b26fc7691ad2d038130d02e0c15c82d820774888c73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 e05e910ebf4461321447a04108c9197e6c30411b95e9cca6e746d5c19571dda1
MD5 aea308bb3795d30cf253d99c1b00eb6c
BLAKE2b-256 9b9c486fba1012b1c0eefc5c6e7697f299644e52cadd7ca2ebaca23806ebac17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b1c8579614d91a0a44a8927b19af2ca213e1bf9d525b3b53d9622adbf1852b2
MD5 0d144aebc720bc4ee3c57a7060da368a
BLAKE2b-256 8ef0ce715b44d4aa2b5304a62720411ccf186bd7636650c296a2acee36463873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a45ee75a2b7020430ed23964f4f3b4285b4c7d69955f2f567ed1605b1421fa46
MD5 cce371dd91a09e3d77024b2f85ad097a
BLAKE2b-256 d03d972b9a907cf4cec0b183e1aaac20bb15455734295afc686fa6e8eb5ec69a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 16d862d3fb46c6aa717baab9e1f8f86c2ec6b95d4c4c1bc75cb0038fe451cfcd
MD5 6743865484f25f05a1cf2197fe79060b
BLAKE2b-256 f427e26d08a502795ff673ebb67b8d5d5c8d64151f40a0644ce00debbe2d2a56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 b2767ca7711d746e0cd3f2438ec8e3e9e47e5cb00617a43d2530874f24fe50ec
MD5 84150749af1ec15ef5b3762b2fa03718
BLAKE2b-256 265808426a0317c3c793ad926388a920670b90b06c4d6a1664292d8d160d5405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77f26c449942d25ce694cb986cb746d00f572e5ca0d281c65a6f694079a28b10
MD5 a0e3e3c632d48a14a1283e0b2bf5924d
BLAKE2b-256 ce601ad31c927e91ce1b83fd5e8103a4286599a21f6e6fb66c689bbdb3883cfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 af3185b177c1d84921b0188dd22156ee8bc5e7c744d4c7414cf5876bbd739a6d
MD5 23b866f7dea56ff5f9694051f07019df
BLAKE2b-256 2db7600d72f0e3221dba343e9616826c32c91236a778b78f28ee892c291f41e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 2c71b89c8843a798759f6498153ed6ca32e37f4c6cef1bcd235286434a21f115
MD5 af8d9950e48355f7eb569ba0b9691dea
BLAKE2b-256 ba800dcb0fc4038d77ef3120d031a7d6bc9d56163ca9b2fd08ccbf3dfb091d09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 1e8633524ac49964a6ce90fd2925e8a3b3880a57c5d828be12e98a3875a97ded
MD5 bf73e21b8aa1e8e6a9ff35d6cc0cf6c1
BLAKE2b-256 b6d4a3d461d4697e1fa1a95d7ef5cb7e2b73d3765d03f017f2a7d3c07ecb0345

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 183c0730c3c4680ae3d769a983683b8ed9bc358f17d82eccd784cac1794ee9a2
MD5 ae7bbf9ba45576717ad267bdf9c35250
BLAKE2b-256 69596a65f59ce8cc861d574bc09bf3a493f717abc04e7e8e2b5107510cef2661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c5f9eb60297c5933efe4097191af30b9e36a17e31e4f05a522a8c9790161555e
MD5 86b15cab13cc809199761a40465f03c4
BLAKE2b-256 71a317b646e82267a4f5b8655a2af109ace35997c27e78598bc3d624ffcf60e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1b7e8a917a7c7cf7ebe5b68669374009e29638756c90d231041959a94f0a278a
MD5 4a6ed903b44941191a7966da66a68e04
BLAKE2b-256 143c79183fbcc6052b36bb51d3f8b5c6b59ba71024b0546b45dfd7185b2b9cc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 709feb0469736c354a835d101f884d8669a5acf1861193f9de7cf49f6c322d66
MD5 cbc31fa674170f436c97b1468195b213
BLAKE2b-256 968b289bd576875c1746c0f189b8ffd8d9f6324dd2e9bceaa50904b0c824a564

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.8.1.dev23-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef1df285a6f840da379344773b438245fd4b2d84766a99103b56869519152753
MD5 1cae889dcc10bae7eda8b9b9d70e31a6
BLAKE2b-256 5ad6b51845371e28495e709ebf532df794fe4e004f1a1491d416e1559c066a9a

See more details on using hashes here.

Provenance

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