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

uv add grafeo
# or: pip install 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: 'Alix', age: 30})")
db.execute("INSERT (:Person {name: 'Gus', age: 25})")
db.execute("INSERT (:Person {name: 'Alix'})-[:KNOWS]->(:Person {name: 'Gus'})")

# 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(gql, {"name": "Alix"})     # 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": "Alix", "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: 'Harm'})")
    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.30.tar.gz (1.7 MB 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.30-cp314-cp314t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.30-cp314-cp314t-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.30-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.30-cp314-cp314-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.30-cp314-cp314-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.30-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.30-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.30-cp313-cp313t-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.30-cp313-cp313t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.30-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.30-cp313-cp313-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.30-cp313-cp313-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.30-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.30-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.30-cp312-cp312-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.30-cp312-cp312-win32.whl (3.5 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.30-cp312-cp312-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.30-cp312-cp312-musllinux_1_2_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.30-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.30-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.30-cp312-cp312-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.30-cp312-cp312-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for grafeo-0.5.30.tar.gz
Algorithm Hash digest
SHA256 621c291bbe507655539bfba1eb4ccb01db40856bc0a6fa725552cb3df3c4955d
MD5 d8f00f05712ec11896e554a60263b20c
BLAKE2b-256 6ea18c78a599e77d229fd19fa72c651f875a351751ffebdf3c64619f0b097109

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30.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.30-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df5ceaa7e854e45da4fcbcbd5fe34c47c4c94604103659f7b2d648bcba0e5f1d
MD5 75dcf9fa7beb9178ed83d28fb8a7f576
BLAKE2b-256 398b45882b3740f939d1e99c1f74ed40abfe53a655fc720b0c75afbc9db450fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a77e0df936cc18682564bb4fad606e2ec7c06cb564d2e3acda6d81b067c7d896
MD5 39074d18b809d8fbcd8435f0766b2c45
BLAKE2b-256 08e4f8f1fd871f8a5c0e325e6a54e0bdd3f69b2a6ff2319455fd47e85d61d6d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abc9ae3e0b554c5e8d8f78d05d36bbdb44fa1c66f781919a3e9e9d49b10afee2
MD5 73070fbbc7e4ec606e895a956570b24e
BLAKE2b-256 ca06f6812907f840d63eefc08fbf7839d4b25b4caec8281684796a2023b0bd0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1c8719466b0e3a99a6e31c88b88ed1fb40a0f21c5d6786e0db44392d07ed903
MD5 8e5ae9264a2b7fd4307638b5ac0552c2
BLAKE2b-256 cf950e45415d7e2283ea1df7a7fd01b9ad802797b9eacda991095387f02139ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec9aab4a8ac8601683887ef5eab5b6c87896bab3e03705283ae245cd81fd4e45
MD5 e8c22cf0a9bf4d8c91213c668e41eb8d
BLAKE2b-256 564419e1abd75cad51079d55689fbdeb236dc26638aa34d1cd03fa4185d98615

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f607ac0708b80370bb19822692b2a36e8fb6ee839203d22c3af82951db642855
MD5 dcae73513f242bf063328e6ba6ebd002
BLAKE2b-256 0f077b34a9a427676649e5eae805efa4905c0fbf4dcc180a4075dc45d55f5ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7b226ff2bef7e056d1133e45f062f64c48b08fe6cffa6ea7dc6a0451c3dca7f
MD5 3d17cc1d2f7f8fa6c0b47d22d9a97607
BLAKE2b-256 e5ac46df4f6c13823bb20170643a40b98ec8e11a7cf64d430da37108a36d95ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4754065cbd898780ec1cd441bc761ff47b1bd42e8daf9a4294f026224b087053
MD5 6b3641bb09d0ad0805008a0fae86689d
BLAKE2b-256 d2040d9d52bbc60cb3dac2146bb7adb2b3828b9f420473d557081933208a0f5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54c0016f7fd7fa9b4f1532a384d05e43713607a590ca3d8b39ee0fc1e15e257c
MD5 4b0044e19a31e3e868f4c615e97d9c35
BLAKE2b-256 13130deea9b2eab0172f4c9baaed9b0ce650f4639e32cc5c4130c498215ae62e

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab48760498263978ec51300b9212238544aa4039938645f728f253eb1566fa8d
MD5 fbb9df985f1ab3f09788f598f583a312
BLAKE2b-256 165b0ff9039b2f19c5afb6aa93b7718ae6ddae2b3de9973c385fd5afed25bfa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 317ed9ad83f8f78eacb93aa62e01e3d5b0570aa831a51f50f22e042c0fd1d3af
MD5 eefe98657e17ecd1eb41c2df566df04b
BLAKE2b-256 d72ba6baad19a43c36c971b34d0b2d23962a3179be57c31d85df44c6088430c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c7eb08a3bcdf04a53d70103ce86899f42cd226762b6a331e619f9a04b5be2e0
MD5 d2de7bff860adb2bf00aeedcf38f4c54
BLAKE2b-256 04aaac812959ac7c67f75a40c717eddbc35291bd323378e2e5dab506c2eadfb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 975a2ca58cbc759abea57c15974923f92c711a93bc88a9bade6a91c2c084c27d
MD5 2756b35635cf17d099dbb15f9367bb72
BLAKE2b-256 964754ff366f83de723eff5c35133f2b6f841ace331da42cb503c5a30c240cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ba55306e5102f621a1c7d00a14cf12f56ab1604f5f82ba0c0ae08500598f0d7
MD5 c322d25f0f1d7f1f95d7a009a1bd71c2
BLAKE2b-256 aaf4887e6cc9c686de25e2fc5f8bab513ef7ac882d0f01c6b3aac1e23133ce1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: grafeo-0.5.30-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.8 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.30-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1be12b1eba173cf2e4ab22bc47ca1038ac4f05926a9d03f65655d52548cb4f67
MD5 37c212c144741e4af8841224b8035c2f
BLAKE2b-256 1e18de93c97b098fc2171c5582f09af806128230cd57c3b494e9c14895f58a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp312-cp312-win32.whl.

File metadata

  • Download URL: grafeo-0.5.30-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.5 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.30-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 04a10890686decd6eab544e8458d209fd29cb71fbd818163a31eb7c90e6258de
MD5 c59b5e056be29905cb80a34cb0dc184c
BLAKE2b-256 229b0947de7eba223f66322ccdcc92d3ecfcb4776a47ab8d8da989dbea55ff22

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c57178358bb18bc2484a306a7e5fb20d03420a257b91d20c2a03d9c3195c3dee
MD5 5a6cfc307d25cbb6f159650a0f5d365c
BLAKE2b-256 1cb22f18f728660fc85dbfc31c225bed40eff62deed4f1d33500c3cb70ce95e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b2d2c1a90dff51a4d2c16412674a8feb57c3c801746a4451e8520fc779caf39
MD5 0f42db8012e44b19512efbee673fe1bf
BLAKE2b-256 b14a5a809fb0247bfd38152926123bf25886f1cbdccc353a3300df26f988b49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe448735c03132b3f6a8df68791c1b38c7f31318537b4a0f7018e18df80d8339
MD5 af159078e2fbb23da05150fc1b454b32
BLAKE2b-256 0f35f2300e5a3950a72882a8f95b1f9627497d30bf017695caf4c5846a2a07b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5825838faac0b598868986fbcfbb7ac0ea208ea50c83b910dd4ddd1fcf07c29
MD5 8c4d7fb028bb330e84945354ae0cb874
BLAKE2b-256 a84c01a2cd89116ef82fe0fb1ad8d2bd57865f622c94d8415d0f51cf5de2706f

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fdbf486fab12dd82b7fe89698acc0eaf44f1c961bcc8fb41c8959c9350da2db
MD5 23cd80f025ee6b8a8209e4f6078fe688
BLAKE2b-256 c665f749e491c7a12b604783897c9441a35c286dd6b750dde7e4d752d503a673

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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.30-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for grafeo-0.5.30-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a36da3e9bf4cab70e3df11b2b56b51e9ee43313e160734d24abb3deb2ba7565
MD5 f1da1e5db8df108507fde6dd1deda3e9
BLAKE2b-256 84346833fef47d938b6c970a5380d4ffb79ac8471a9ec6346f1c58930ef39986

See more details on using hashes here.

Provenance

The following attestation bundles were made for grafeo-0.5.30-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