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: '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.7.tar.gz (961.1 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.7-cp314-cp314t-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.7-cp314-cp314t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.7-cp314-cp314-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.7-cp314-cp314-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.7-cp313-cp313t-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.7-cp313-cp313t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.7-cp313-cp313-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.7-cp313-cp313-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.7-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.7-cp312-cp312-win32.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.7-cp312-cp312-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.7-cp312-cp312-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.7-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.7-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.7.tar.gz
  • Upload date:
  • Size: 961.1 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.7.tar.gz
Algorithm Hash digest
SHA256 161943b2b4d074b647fe69ae929b271ed01d5c15153b88e5e77724f6d0bd34ee
MD5 17638c5f43458f28f06b448f68e66ddb
BLAKE2b-256 3a6431fe03e89dfb7bc697aef21ed6cb139934f9e8b8964d398762752d1f7fe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69c1d0a43218a7935826310179bfbda9b4451a98fb2c7f85d2f498099c68c534
MD5 5c872594b6bef98fd43b1f8fb911267b
BLAKE2b-256 0ef6db678fada5e030432df87c62a1a9e99c8ce02a80d26b7d7d57b1ff87dd78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a87f185265cbbdabd269aeec3fc5e301984873e4ce81924bc48178f13189e82b
MD5 613180d62e5f586bbb82ef8a1e99c45f
BLAKE2b-256 9a1513d2c57659dad64c2fa249dece2480728fe77a9bc4bda4e978fc86fb57f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdd4b3500012e55913e485ed7c078e017777a478d1fc5ed1418bb61c458697b9
MD5 17b5a89e62678b2e51005d40957a1ca0
BLAKE2b-256 0c1f2a4a27453a4c9355e02b99a82d88980f819baec86f8f40383e2b896f8cad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34de8cffd571b388b3732aeedcea6efcce27dc1ff2cce7caa574b2a6c6b75874
MD5 b3dce90627a0d99d34a6ae06d821fe74
BLAKE2b-256 8baad6d6896933efea29174a10f4edd6d14eca924c99a1011c092be6d9bae549

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a379177f3d7f09ab0f1f16f7f3b2d1023e61c5f4bc858abc56732deed6caa5e8
MD5 0089037e0ecc08b4230fe1ce555dcca6
BLAKE2b-256 2f571c56c8fb9537e6940c5d9993d3c975e529b8c8aa1752076b274ec11cea68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88de4fe477ca20b8e0b68bae3846389eb7ce58ef812f6838341445ea97887906
MD5 67ea075a9de9c12234ae9582fed29350
BLAKE2b-256 b6ed177c1b242e4d14fb45fcc807f587810a37c4645fe1286a8dbcae6c16c3e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d81554363f0101e626e95bc7a83e38f4d6005e83703e1394787a8ab3e84e74f
MD5 7daad7d5cf8e904df0d73ee0a1f20df1
BLAKE2b-256 e0e421db2cdc0195e0eb2f1dd265ab9ce0ac51873fbabac1b1ece8013a01b37c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f925bddf2f4bf9f20d624916bc8ac1ce02286ece3a499c364517a4c792cb2c3
MD5 1ede644538f13caf84a469af3076e78f
BLAKE2b-256 13b2365b5a580fde9466f82dab7669c04e45ca53c7702612c105956678f566e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21b19ce593c9aa8c5ed2c61e50bce6c84f7202653cf6855e17ca2c67c16c418d
MD5 b944b42c479c4a6d5494e2d7618f6e78
BLAKE2b-256 9e4fa9a4024650b64b4a29d16cb1496982accf6945c43c67bb97591904bfddd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb11b844c83bd68a59ef0529c2c145f8a714a563b7e8a486a2ebc5a12e532fa6
MD5 4c3cdb24924deb6b45355ce357d9f8db
BLAKE2b-256 3e864c46749f4d48df6c4abdd2b41fb78fb800304b63ba3c411541aee176afaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c49578a1be848974d83c1d5f5a46937ee328402adfdcd1b3daa805c7d8068835
MD5 f4a7d5f20b9fd1f58605a9bc2f178ed6
BLAKE2b-256 3e1dfde562fbd4d44eec48e345812a80b4a0bb4d83d80c940a51123c3bc13fd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62b544e45d9cba20578fee2267305320a1715b4513ca02a5121c94c6ef01a3a6
MD5 416f684d9685f8c6b71498e8fea14370
BLAKE2b-256 e6161db1b56e52d545276490e6fa8cbc5f0ec2fda446909b3cf64dc2b50d1900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14a80e335043f3c8f5f33cf0df91951ebfb8427d927bc71bbd73b73fc37e316c
MD5 1267e6066d55fb2ef30dd3877d038f0e
BLAKE2b-256 f29ec5a71cb0e18b95c0a606e3a559d1a2474c164c95cbe517a19a8c94dca3e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a00eef3d9add9423cfd2e78fec238fdca16a3be7edfdcdeb41fc570a9ab6e87c
MD5 a1f76f859beec86117464459e54c6895
BLAKE2b-256 feaab29b691dabdce80ac6de32ea4ae5a666e0651875e75bbafd2b0bfcddb94b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f77fb97c122b0f66387aa6098e06b286292c81e67bb8cbf40d40b2238eafbcc9
MD5 a494cb0c779773299f4c30de7b24a47c
BLAKE2b-256 2cec3e40c48561abf0f77ee862340ab1172106091498116b10326dadc2a20723

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b6b7ab885ee4debd9ac9c9772755ebe47d6db93da6bf32a4fa89bd0a800491a9
MD5 f76b7453edeb9a6fd261be138d0d4cf1
BLAKE2b-256 944aabf6b1a0f2dfd21446108b91cbe2e0b077628bd14366b24d0b2630df02b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da9ed43f1fe6baec468ebda46fafd1461ebfca54634116bdf6531c9115683400
MD5 139ac3a60a5c42d840b8a0788291e94e
BLAKE2b-256 3ddd1fbb63e250bf1a2d3a8dd6c78a50736b84c94d96b911680181f1c87edc72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 861cc9c632907b8ba44a040560328d38f816e683fd1e364e6c9f51f80eabfaef
MD5 e16b4ae6fffd545021dfc49f2a2ea42a
BLAKE2b-256 1a10cb36db660a4dd28dafc73f96b8a68ea66fa4f0df30d232a0cd7c91f2a34d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc5b6a910a73e578372a0c519389c32ef2b17e943443699371d9f3876137ba15
MD5 6e70c19cd0d188cc8bae43b10ab8412a
BLAKE2b-256 64eca3e9caeacd37b0c91429a01bea7b9b51f9299e44b917ae7ff193f2566973

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58bef34c16b1a6bb4106622d025bd45a05eda09b212fe4b44319b73198e51157
MD5 068cb62a8e3094bb08caae9549bcb3a0
BLAKE2b-256 7053b1ce012deed6ae99202d7f49be325c23620638e03cb2c536fe6fbe78b65e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 646a1c9e8e56f819149c715feffba97b51d558db19b25738b01bac28cd6a192a
MD5 fec9afedb33cc9060502c118d3645090
BLAKE2b-256 e8c9c6b997b4a51531b8a397c8fa05d0e9da4cb890a567f5928eba4629cad78c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1328ed02d102e83ba3be99bddf3cc24fface026c36beb810bbee9f538eb18e4
MD5 dcca67888accc32963a7093b05d25de8
BLAKE2b-256 2c6eb32732a6da489073bd1ab416aa9498584667bdd7ba9e6d48788a06f83dea

See more details on using hashes here.

Provenance

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