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: 277 Passed Across 27 Test Files | 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 jar_exclusions.txt for details.

Import: import arcadedb_embedded as arcadedb


๐Ÿงช Testing

Status: 277 passed across 27 test files

# 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)
./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.3.2-cp314-cp314-win_amd64.whl (73.5 MB view details)

Uploaded CPython 3.14Windows x86-64

arcadedb_embedded-26.3.2-cp314-cp314-manylinux_2_35_x86_64.whl (76.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.3.2-cp314-cp314-manylinux_2_35_aarch64.whl (75.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.3.2-cp314-cp314-macosx_11_0_arm64.whl (72.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

arcadedb_embedded-26.3.2-cp313-cp313-win_amd64.whl (73.1 MB view details)

Uploaded CPython 3.13Windows x86-64

arcadedb_embedded-26.3.2-cp313-cp313-manylinux_2_35_x86_64.whl (76.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.3.2-cp313-cp313-manylinux_2_35_aarch64.whl (75.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.3.2-cp313-cp313-macosx_11_0_arm64.whl (72.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

arcadedb_embedded-26.3.2-cp312-cp312-win_amd64.whl (73.1 MB view details)

Uploaded CPython 3.12Windows x86-64

arcadedb_embedded-26.3.2-cp312-cp312-manylinux_2_35_x86_64.whl (76.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.3.2-cp312-cp312-manylinux_2_35_aarch64.whl (75.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.3.2-cp312-cp312-macosx_11_0_arm64.whl (72.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

arcadedb_embedded-26.3.2-cp311-cp311-win_amd64.whl (73.1 MB view details)

Uploaded CPython 3.11Windows x86-64

arcadedb_embedded-26.3.2-cp311-cp311-manylinux_2_35_x86_64.whl (76.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.3.2-cp311-cp311-manylinux_2_35_aarch64.whl (75.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.3.2-cp311-cp311-macosx_11_0_arm64.whl (72.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

arcadedb_embedded-26.3.2-cp310-cp310-win_amd64.whl (73.1 MB view details)

Uploaded CPython 3.10Windows x86-64

arcadedb_embedded-26.3.2-cp310-cp310-manylinux_2_35_x86_64.whl (76.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ x86-64

arcadedb_embedded-26.3.2-cp310-cp310-manylinux_2_35_aarch64.whl (75.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

arcadedb_embedded-26.3.2-cp310-cp310-macosx_11_0_arm64.whl (72.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f1526b290e558a8cdbb3c6b282a0a81b4be8d2b54d5c975393bbeeef9ecc2160
MD5 bde2e29bd10ef1ab41e0d35ad330a8a7
BLAKE2b-256 194af4f79d239905e14ca1cb8cbb799294d037a0b8bf29fd7db7e27cc8ae8bbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-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.3.2-cp314-cp314-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp314-cp314-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 0f7cd1b6eb21863ee725092acfd96fcf840ff9b5a7b27940501302f3073eeab8
MD5 a8b6ffef67e50be4bd640d6e9aa8ca1e
BLAKE2b-256 8e05bca3c02808595530ef2c9e4b286d9bb25a1d6d7dd4d108117bd4474cc9d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-cp314-cp314-manylinux_2_35_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.3.2-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 1b74c4f1c6c69bea15c20f1a8bc2cf9c5cc47455159041127c6e0fe76942dd5c
MD5 c2d13724a22244a526e20d08e55c052a
BLAKE2b-256 da20f06b40bb5171a5b08859d4eccb7dc3f7a792cf2843daa8e534a695319eab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61a75d0a9a101d96cf174fa9ce5e1b767e416c102e3edf66e4db0a22b2d6ecb5
MD5 2817b5490b724190ac2e319fcdbe14d1
BLAKE2b-256 0b0cd01519c16f4e214ce15b4558c7312a8174d715c7b27e413c862c68b6eb8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7369183fad5861b0c991a91bbc3159618ef7f71dab858a2b8a2375506e452244
MD5 14ee88239bd0abe2d2e462a6ecd3d929
BLAKE2b-256 146a10d06365c11e19341d5fb68db0c3a6c9de8255df982962a12b70e33e1fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-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.3.2-cp313-cp313-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp313-cp313-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 836a351252c451c8302b541aa8aa4a245855bfb39b502abfcf37a3007e8f8cbf
MD5 934c85d4ae67caefb5c7a7605710360f
BLAKE2b-256 df1cb7c8eacc427272c6ac588e63254d1ae92e679f83019f492472a997fd97b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-cp313-cp313-manylinux_2_35_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.3.2-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 9873757b1ad23a6bd954fe38784de4cc5000f0bba7d3ec2aecb0fb1f55e0d071
MD5 6a099076ab3f5d8314e8b5d06bf78590
BLAKE2b-256 000bc445aafc731c7de13678172a47e3d89b3fbc6c466baae166fc85ec9e65d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 274bd2bf0b8fc7af14d06903edc9093cddba75683d84dd1a8ed87041d9afa494
MD5 8602d5b03078e3f082e621b39ecf1eb0
BLAKE2b-256 88e2ea4242dd31c755595b241a6c1ffd56c12d5856f27d961b64191ca9fe23b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 248f135bd792b29e67a443f9771723c62723447883418f0e8ce104d1f5ffba4d
MD5 ec3acbb03c1940a9cb4342ff8c66fb62
BLAKE2b-256 ecbfe471f0598ce5805830bbd413b9372902e6b675be9a0950589d8827c63cbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-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.3.2-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 ffc1a50be76a51056412f0118dc4b31eb7e7537ffd81a309f331484df07f7080
MD5 e35d33c22817115dd5a8d73619f6bdfc
BLAKE2b-256 c386ce40ffcbd2f42ad630bd375b9356b7191512e6b1970b9e1ca80eb46fbf09

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-cp312-cp312-manylinux_2_35_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.3.2-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 a23e862b8ed043b7b6072fb5025f9f24c34f4f68ff1ce2cf8344db1363828a22
MD5 e23ad3f508ceac99c28cf307efee1a81
BLAKE2b-256 d1c3e410a05ebf2f71d10be133bbe20d598ddb46d26dcb4cdecc4caf990836e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cea5bee08f7df601f7e8c03700d7fa0347d129c1f80ca7dbb274f5f6fbbd6c3b
MD5 6e87986e849dc48d73831ece2932d947
BLAKE2b-256 8095cf8e55851ae26508793575927d9bccc773d174e00b7f1e128b283f4725a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 020f4626f22119948c231ace50563cb88fdf7e1bef2ce621af3f647c5f85fc41
MD5 d87f2184e72d340ec72f8fe0537305ac
BLAKE2b-256 f2f5cb81baf4562c898c047ce2be185dcb5a0c57cb021bed13d927ea06daafdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-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.3.2-cp311-cp311-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp311-cp311-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 1ca177451a4c33432397f9621b11634f4b8af48c53ea4882b24e93e83444268e
MD5 478bfce83f179ca36da3c4f0cd7331b3
BLAKE2b-256 fde00cf32baa672674bf55dd6af30b44547f0ebf55c7b143ec5ba8d69b74b246

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-cp311-cp311-manylinux_2_35_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.3.2-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 b55474fa400b7e00dcb6f8b349fc2a39f1c8dc9cc21439f822f899f552522339
MD5 ff3a7412245f4c81f7e985f1a3884635
BLAKE2b-256 7195c7b46aa0a6f35651d2297ee891a7677f4409483dbf80f08ff157d34e2c94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b669f9e45863e40f1a3e9f8deb0a75b4a6f1e76529fe370fa2cdca90f37975e6
MD5 9c2fcf202e28f39937504b1a62f7d337
BLAKE2b-256 60df2620335f3e2a1d7b2791e2ef8dc49435b98dc0d5b3f38f504849fcadf4c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0aa5e30665f3a3e77e1b1fa24d87cc953ecc27f6ba634d6d2ec8353feb81e969
MD5 fbbebbcaa25ab2d0c483d1612652e274
BLAKE2b-256 0f208b0ec7ff44d0d217b5584a4f459dd1496991e2c84d1d3e4ab3b387014dd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-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.3.2-cp310-cp310-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 a3527748230252e1686f6175a0abf3683dd531798339295d1ff9951231c8d13f
MD5 11750a785e1e432658641b02d2153e0c
BLAKE2b-256 3c0cd9afa30ccc007812664838e76ae64adf951171287cc6dcce82d5aa93c720

See more details on using hashes here.

Provenance

The following attestation bundles were made for arcadedb_embedded-26.3.2-cp310-cp310-manylinux_2_35_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.3.2-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 6481b752186e7ac920d9a40c349ad3b6f83543125c3db2e3ac8a6ad44e039b3c
MD5 2f3de2a5cfa852c03a126ca5cb15963e
BLAKE2b-256 c20976b6e21a1e90f515a91f2f514296b4d21b37f4faac670bdfc91f78bc08ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for arcadedb_embedded-26.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef3d44c439e1c0ec7481c6ad646719e9b8b74ecb79d62da17ded0380adc1af45
MD5 43f84c58708a173a99e9f407bcb5c8f7
BLAKE2b-256 4b83040b8a71897086da4a2daaf6141d52453932019d575feeff6acc41a7aa8e

See more details on using hashes here.

Provenance

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