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.26.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.26-cp314-cp314t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.26-cp314-cp314t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.26-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.26-cp314-cp314-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.26-cp314-cp314-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.26-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.26-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.26-cp313-cp313t-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.26-cp313-cp313t-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.26-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.26-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.26-cp313-cp313-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.26-cp312-cp312-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.26-cp312-cp312-win32.whl (3.4 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.26-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.26-cp312-cp312-musllinux_1_2_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.26-cp312-cp312-macosx_11_0_arm64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.26-cp312-cp312-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.26.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.26.tar.gz
Algorithm Hash digest
SHA256 5ca2e9efefcfe13c6b914a1237237daf12ac40d13097b2698d4f061b4a3d3f81
MD5 ecd2b839398f73927fb6a7813b12c6a2
BLAKE2b-256 4a506ee2c1b45bc8774732e727d6e7de46e74e13f2c9251e497d5330d561660e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b11512b368262f549c2fa4e3fc4d11e711625bbf86bfd208d7babf23c1236621
MD5 9773ec7d6d8e5c84f1993de44df9a86c
BLAKE2b-256 f26cd7998c09f765b9334bed86bcbbb538096a217dfa8124fed94dd1c36ab4f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50e1330fd6d9ed056beeb42207e06779291d23b12c6976fcf8ea595f75e395b0
MD5 45d926209826be0cfa1e3f3da1bfc1c7
BLAKE2b-256 4958bf77ae115316811c80567bdf4cd69f234ae21840f1cd0c50279a4e4da475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9d79548effaaf91a33008cefef956f518dffc3e71e11233ba65bad12091554d
MD5 0c6c1ca205ddbdbe9a86c76e011d4add
BLAKE2b-256 2462b14e1ad4d61b720839de5ce711445c253f37f8b57f7b417eead6a671c12a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6b15871de21b566493d8fd2eafee37061b3d95ad6e1327ab4db91b3adff5949
MD5 3b14f19badf4b9478b539921129cf609
BLAKE2b-256 1c5a3a754d1ae120f204442794fa576288f7266efd7bc93885501bf0ecf857a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2575abffa7f1be7af7dc3f98dc479f7760b3507c484832bc90af157bd81c824f
MD5 451f870407d852214b015732f9513508
BLAKE2b-256 475e68c05ab2711e6b41e87e99ece3d8598178a1dbc1245958174a624c9bb80d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 828b6319c6e927ecc4107436b72665f2777d7047c1278b3ec9bea2750f9614d3
MD5 362c73c018a419ef383419d38f62c320
BLAKE2b-256 10db7e69703102754d5732a58f8a0b872d67faa0f09f2adce725685dda73c675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7507c3e61fe6cfb16970167b9409b41774a678196e788deea4d89943328dfd99
MD5 6f85e196248942aae9e99a35fcc28887
BLAKE2b-256 ae5d4fd8a9055da2dc1188e5d732e278e8598a1d94bbf2b2722b1a5017462afb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 922e38c6eb8bcbee352c55ae8775df9fbdfcf548e4ea4d6f58257f40e3b83151
MD5 68c5c38493aec7d19948023857824962
BLAKE2b-256 90cddbe49c98c5bcb770939d476baa4e50f10891e9960d26ff8ef0bbc73e4f49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ea5c2da7d1bd1e52d75c1878ee7a9649dba25c7860d007af3b3066fc649ce05
MD5 2aa14d592f90dd66a29a00df00c0607f
BLAKE2b-256 a76227a470cecc70820729cd67e6bc1cee61a82a36b322c6cd8c04b4139edba2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aebdde82cc3994ebebebdeee38e4eff182d13861d8934794277933d4412fca5b
MD5 803c53b653ffa28285e78f6e46e0d7a7
BLAKE2b-256 6b969112ffd1254e267cc0e25396705a9af0d8f823b6b4e8e7e24404b005d6a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7beb6bb93d39c871a336f460815fb5c7994608fa73157b8d74a64e63334a463c
MD5 e9dfbb46486c1e2ba2686190102ed192
BLAKE2b-256 32fb63f81f33e9a441cf05ae527e912de91ff82eba438112d57ddb58107f9264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c8ea7463dba9af3f5b5063725e998691d1b7d42049f058b869d585a400d087c
MD5 8e078b7aac5fb15c9189184c42be7352
BLAKE2b-256 603b8f6e78ebe21663ef50c2cd975198dd5cda1cc27a1465c29519606be8837e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ec4154adede4514198e56eea949d15ba2756255671c139f19dd08528d07124d
MD5 212f3179cc865744f6ecfd73d1e0f5e3
BLAKE2b-256 06eda836e3130630f8f910b6c195c81e842e567153d5f3c24e829fc646931492

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9e87802bc138b49716ffa48d73fe798e3899a9bce2ea4e7c0ffc24f3172db86
MD5 e84831d6a0fcc6409304391626b52187
BLAKE2b-256 b09d7b56917dbd16a8adfadd98216da6cf80fb99ff68cf4532a4d7bd4b531581

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.26-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.7 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.26-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cfa6210fc716a988c7f4ddf753ca837345969760bbc08c89a234b0ef88b07869
MD5 f7eb600b30db71febad926f78ebacf36
BLAKE2b-256 1159206cab407735cca6bc62716b1606a6c55e52fc8675e5ecfb7bb1915ff5c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.26-cp312-cp312-win32.whl
  • Upload date:
  • Size: 3.4 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.26-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 87700680aeb2e2fa803a886e6326f62b7b5c9662e41a893de13f1c5a0ccf70a8
MD5 c8a17b47f0473bc415d94b442022f047
BLAKE2b-256 0a3676a9d8a477ee6ed03877a2338b6a72a93ba121d508c06235ed07707acded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27e385451f02468f71d0ecacc0a2c1a4e6e08c86e26aa627ff6e6b2f351314e5
MD5 1fbeb5eeab008a4563962559094b1821
BLAKE2b-256 aa4940ba31864c31f81d4e584ce241e3f4e9fc518879550cb687ebe6b6c386e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e299f9619e1c850141996e29246f26ee078355d3f174165c5adafb1d1bba6d20
MD5 ea6c3f7fbdc73550532f69299a483bdf
BLAKE2b-256 9b35901dc8d4fd69a09cb2ef38048b32602a55faa131f2c073350e0a29f99466

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1580cbec039e88698704f99683818761462f1de11dffd464bad33426329efdff
MD5 77f7f4c7604d79de1dd5b23b2effab9c
BLAKE2b-256 c09209437ecf172a1668a3aa052c4b05ae10659816f83fab7356ecd8700fa2ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f66f216eb43b3314594d47e8b35b8de7785c62859a3f9b686bfcea4e24ab3a2
MD5 33c40df053fa5a75be53b59ed68595ac
BLAKE2b-256 8210eecb58224af7050194a1be750983a5538154c7c473aed1939e9afb603c3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91208f6cb2de5204d7389bbb71c29507ebfda6a51ce6004ed573212d7393fc39
MD5 90d25460527c46c1fd3bdc1c00449137
BLAKE2b-256 0cd453ba7f3c4fbf68cc46bcd54c7e3651b742bd36db2db23085410768bf721a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.26-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e0b134a7a728e715c341383ecdf86b548c1866109623de14a668c0250ba27d5
MD5 b8f026c0306442f7cb970c577b73f985
BLAKE2b-256 fdaadf94a954d27dc9ab68b9196d60bc43126c16a1aa5efe70b46d502f157fd7

See more details on using hashes here.

Provenance

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