Skip to main content

A high-performance, embeddable graph database with Python bindings

Project description

grafeo

Python bindings for Grafeo, a high-performance, embeddable graph database with a Rust core.

Installation

pip install grafeo
# or
uv add grafeo

Quick Start

from grafeo import GrafeoDB

# In-memory database
db = GrafeoDB()

# Or persistent
# db = GrafeoDB("./my-graph")

# Create nodes
db.execute("INSERT (:Person {name: 'Alice', age: 30})")
db.execute("INSERT (:Person {name: 'Bob', age: 25})")
db.execute("INSERT (:Person {name: 'Alice'})-[:KNOWS]->(:Person {name: 'Bob'})")

# Query the graph
result = db.execute("MATCH (p:Person) WHERE p.age > 20 RETURN p.name, p.age")
for row in result:
    print(row)

API Overview

Database

db = GrafeoDB()              # in-memory
db = GrafeoDB("./path")      # persistent
db = GrafeoDB.open("./path") # open existing

db.node_count   # number of nodes
db.edge_count   # number of edges

Query Languages

result = db.execute(gql)                        # GQL (ISO standard)
result = db.execute_with_params(gql, params)    # GQL with parameters
result = db.execute_cypher(query)               # Cypher
result = db.execute_sparql(query)               # SPARQL
result = db.execute_gremlin(query)              # Gremlin
result = db.execute_graphql(query)              # GraphQL

Node & Edge CRUD

node = db.create_node(["Person"], {"name": "Alice", "age": 30})
edge = db.create_edge(source_id, target_id, "KNOWS", {"since": 2024})

n = db.get_node(node_id)   # Node or None
e = db.get_edge(edge_id)   # Edge or None

db.set_node_property(node_id, "key", "value")
db.set_edge_property(edge_id, "key", "value")

db.delete_node(node_id)
db.delete_edge(edge_id)

Transactions

# Context manager (auto-rollback on exception)
with db.begin_transaction() as tx:
    tx.execute("INSERT (:Person {name: 'Carol'})")
    tx.commit()

# With isolation levels
from grafeo import IsolationLevel
with db.begin_transaction(IsolationLevel.SERIALIZABLE) as tx:
    tx.execute("MATCH (n:Person) SET n.verified = true")
    tx.commit()

QueryResult

result = db.execute("MATCH (n:Person) RETURN n.name, n.age")

result.columns          # column names
len(result)             # row count
result.execution_time   # execution time (seconds)

for row in result:      # iterate rows
    print(row)

result[0]               # access by index
result.scalar()         # first column of first row

Vector Search

# Create an HNSW index
db.create_vector_index("Document", "embedding", dimensions=384)

# Insert vectors
node = db.create_node(["Document"], {"embedding": [0.1, 0.2, ...]})

# Search
results = db.vector_search("Document", "embedding", query_vector, k=10)

Features

  • GQL, Cypher, SPARQL, Gremlin, and GraphQL query languages
  • Full node/edge CRUD with native Python types
  • ACID transactions with configurable isolation levels
  • HNSW vector similarity search
  • Property indexes for fast lookups
  • Async support via asyncio
  • Type stubs included

Links

License

Apache-2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

grafeo-0.5.0.tar.gz (887.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

grafeo-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.0-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.0-cp312-cp312-win32.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

Details for the file grafeo-0.5.0.tar.gz.

File metadata

  • Download URL: grafeo-0.5.0.tar.gz
  • Upload date:
  • Size: 887.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for grafeo-0.5.0.tar.gz
Algorithm Hash digest
SHA256 eb4935e7c0b2051680b136f4b7a326d92ad991cfa6697655374b9a2f12b71d4f
MD5 80eebdaa4465f3163a8bb42ee3562461
BLAKE2b-256 64c9bc28feb026690675f9d8908bedc4c2ef4ef1bd18b6b82f74f0eab5f4681f

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0.tar.gz:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 190e79acfaf5f759411dec49f0a56fa7d71494c2ce0f0d6dbca676d00736c968
MD5 4ab27a84f5a22c3b82f6b07cf05cc54c
BLAKE2b-256 444c39a7299b43e1339a6aec3ed6d675bde9d03ec0ac70d1ae54b7a508af910e

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63bee804894f91812aa5532a3b8f4fd6182fc7af35459e79f93f58b3d5bcfc3c
MD5 0afea52c8c08567f28bc1bf35d584962
BLAKE2b-256 990e8ae779b18bbbe8a4ffd3351c46533baadb4b2054282cee146fd3baf4b77e

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bbe43378ff8c30a544c345b4f74e263f75764f2083c8e28e623d9a5257aadd7
MD5 fd5c07e9fb372ec8580358b8c77c3b07
BLAKE2b-256 79b63e0cc7d5076ea93a41aba0617cf2a69cdbea11ff2ca7537d0d60e7bb8847

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa5a25ea301752ae66971c6da33505f6b63b9c658643871294f08cf4cc171652
MD5 76319c283ebd95b4ab26898385b365d9
BLAKE2b-256 6dbd81eff47e053b6098d313835a296a3de97182ce6de000fd603c597814693f

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2015e165d010fcc3b0c574090e8df9bb1bbad59d62d1760a4a6a1c04083683ee
MD5 89ef0c87577819636c155a7f97559d42
BLAKE2b-256 bb67c4a690f6c098d7bd7deca9a38574445d06c477bdf490e99d1ce3e8a8ff87

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8af36b9bbe3b9de9e00e05ca1ec22fd4d439dd5552a56bd5abe43b34225a60e7
MD5 f300ae2d3605151993edbfd89f442f56
BLAKE2b-256 56eb6570fb7f04befd3ef21c459fd2431b29b2e3e2304e67dfdaf669275804e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a90a3821a57716369e8b3b1d92d31de00fb9f44a59bdf07bc8fe33ab1922ca39
MD5 114da5e31ba59f96e253055f31780f05
BLAKE2b-256 1a9a43df75ec5db22db39017b04737184bb41fc245ec395f219564834f8172b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb7ea28b410fecb41d7b1fc23e01da306fa4f592b9b3bc9e7477056e987f7260
MD5 7b4067d9469db24dc65d61af2542dfb3
BLAKE2b-256 e676737932c90fc401f2bd3ff7de6ccda0b46962d59d6744a22fdb4e504872f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38f9e0434fbb407651ea416950e628fd2f191e58b3ad8c2368f50df5b8ffe9a3
MD5 e406f24abeb1509fad9fdb1b64585e69
BLAKE2b-256 8300ca208eaff6dddd5f516b40f9bce03aba7f78ecf369cb44dc3424419fea32

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70d6eb3fdc99debf12492c10029b660fdb4a6adb545c21de8dbc042eca820e49
MD5 1945ec8a419ea83c51d8ce172e4c2e7c
BLAKE2b-256 3d5eccf06b33148ef84c7e7eb63d752635d0fff1a6da3e123f98fb43dbd2417c

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb6a831bdada1c350941d0379f2e028c582a4f517aa322a8593b5cae460e49db
MD5 9fcfd4091de3e9ddbe9aff34c0d60887
BLAKE2b-256 d02a09a7b61b788379366f321270c69cbdd30dd1f8d94d8ea43e161a80f5ade2

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ab22a133451792fd0122d546607284c7e78d50597bef5cf24157eee4aed743a
MD5 d0078fdf1f941f7712f4fb38faf4fa39
BLAKE2b-256 9b2ff06026f5c8d038a785466ed6a3614de62e5dc04e231e101483cf02d4f35c

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50c983b644d2b780b91af6e673a7bae61440178b2cd4af23cea82ff6b0ae8113
MD5 0a1b062988ad8edcac0836129335d743
BLAKE2b-256 c2772d430d2624ec70be883933c4e5a8755cccc26c096198d6bdaae245ffd222

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53e00a55881d6ab92e3a4b35d3c309a0ba8bf7b707a234ac823a8e7c53c1e3dc
MD5 595717a7b17517dd3ac1296b7e8e4f46
BLAKE2b-256 fec9fa366e66a0f4816f75357710fdd667fda1c2279ec2489ad7b769e2e381e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: grafeo-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for grafeo-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 52d6ad05ba814cef3fa3b48e5def5bb10ac76407fda1dbc7854ccecadaf360c9
MD5 5d1ae4f4f1bd04717b80ea233f7b2501
BLAKE2b-256 bbf7e652ac84f23323745881226e4d3072bc7d0ed88f6e29449a272a363452de

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp312-cp312-win_amd64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: grafeo-0.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for grafeo-0.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2c49c61239c31eb190c9bae7f37e8b75b4eca5ea69f6b78c7e1659c048a69f35
MD5 760227a9be876b32cdc61b8624d2b0f2
BLAKE2b-256 bd9c16e1467ff7ab1dd449a39e71e3eaa5b8d03cd59e5fda85450b394c08085c

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp312-cp312-win32.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61d17806b171a2570069e9ff669761cdbc33c9ea157bd8268540696f776b58e1
MD5 91b59ec98aebdd6449dd0c2cb899308a
BLAKE2b-256 67742f6808ee402f619eef6539fcd7ef3f3fc30b4cc0f5fe8ae2a9dd39bbe673

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d61602aecdb5a59836d2a8e0ccd77f28cb1f36756bcfa867110d6fab6786d14
MD5 8ce27f8ca570fce511509a994811f894
BLAKE2b-256 160990374349f64db4d928ca17cf1564c1855debdea659392f27e4861ebd83c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c571ef3a74d299886cbd6bac66fb5202c52a0816d2667bb25d2ee33440bc711
MD5 31672cc5e85b2590a0d83994c1419eac
BLAKE2b-256 a30fc56a06b3970ce232fcb8c191916b0a718897af83c72fe7598bb69808235c

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 095e0f1f47ec20d2299dcd43d4e6c4a5ec6a209a6a03a1404007e1130d73729c
MD5 a0be0209bf70e7dfcb0ed1a6661c0f7e
BLAKE2b-256 074897dd792b042ee96f3665e98ea0c39d350d4a3c3a51b628b67d0362760f3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59c50b606b43ea6689477e6194357b2c4be43b2c7e1bfdc98443244e98577833
MD5 2be02aeca7faf4872fb792a8f4798f6e
BLAKE2b-256 729bfe5e661b808f68e451112786ea1070d76ce1fd477554120af6abcb73213f

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file grafeo-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e70c31042e47a0193343d97c2a926dd1d7e503a854492bd4e5a1916d6207a737
MD5 7eac4273ec3a58018f2334146654878c
BLAKE2b-256 067526ef7dee52b8a549abd62f925a8857c09c49dc1509e30d20590cf9e365e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: pypi.yml on GrafeoDB/grafeo

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