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.5.tar.gz (932.9 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.5-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.5-cp314-cp314t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.5-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.5-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.5-cp314-cp314-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.5-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.5-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.5-cp313-cp313t-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.5-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.5-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.5-cp313-cp313-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.5-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.5-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.5-cp312-cp312-win32.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.5-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.5-cp312-cp312-musllinux_1_2_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.5-cp312-cp312-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.5.tar.gz
  • Upload date:
  • Size: 932.9 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.5.tar.gz
Algorithm Hash digest
SHA256 aba20e87a28502537b88b28c02554967b409ec959e6cab76d201fd2858d60451
MD5 9b142e9cec750f4f42f546a67895d48d
BLAKE2b-256 036932376e5af1c41a11d80242e50e18025bcbe5a43388220935c1b84ab1cbfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46a6581bd15c345df61814430da1545f24363e42d9d8be725e5bf606d015fdd1
MD5 ae25eb9b729d2c4293c9c5f7bda6b8f7
BLAKE2b-256 febdc68dfffe849b5584d122660ffbb6e939751abf22ca34e0d6ed52652a875e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 452ff257fdebe87088452d6ea982b01d69e6bb976dba035706fea7fb926d41fb
MD5 8f88d6b655da8254a6b2b95afcdc6c76
BLAKE2b-256 6e7a0a78892b2cb67400335c0a3a0c832135881e832ddbfacca75cdfc93e8e94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f70954f35eab53eebbcb20632429fd32487f76c41195d41c8deac4e20d2abd81
MD5 723b40a03550e181a8dd7722295c348f
BLAKE2b-256 9e5b9f9fa602ab8c1844a9610f3781583243fad889acd5519c437ba44f2c9a76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98244a383025fb399e2acf7d0c7f09ce1b1fcd9907f0a3ef9db7c5e55dd5af88
MD5 f038e53162c3028ba793a259b4a12c0f
BLAKE2b-256 3d423c918e5c5e61f29d7f4c5adc1a211fb9a97c709c645ffe910aea1d697013

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df804826fc38d1aae86dae8ffc4960dc73769612364a318bd97deefe26726baa
MD5 643ccb1acd433d1a5e4193ba43054cdc
BLAKE2b-256 80ea5562d710023c3f0419babba093d2f2972446607400bf233f255b3c2d4b48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d0d9ead3e902b46186123cc9e92ce975159fd5d31a6c47cf7c163604308d8b5
MD5 58c2c0b66260f6c79902bd9d6714a4ee
BLAKE2b-256 c162c96d1d65c1172fc5408af493d05c98fa959edbd1c3b281587c9bab744464

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f03180dd72fe37f4a5a6b3bba83954932543da732c0ef62c78059e2c5d08cda
MD5 adc425ce4730faac079bc9118b0c242e
BLAKE2b-256 fc704711f2655dbfe2e65a0c9130b72ba0771a9480f7a7745c999492919b9532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecb2d921c7baaf0f2e5a414bb7de7dd0735181babdb391bcf21beabbe4a79f70
MD5 bb0f729f73915c86c7aa188f8ea78b14
BLAKE2b-256 cbc487111582d3f47db515b071b05987cf49cfbd2a559415d6505e9f61bc1e12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 472520917ce35e6a8f1d46f9857d873bed6d2eec43f707a683541243d948c90a
MD5 7ea4c2544a6eb7995b775c501d3f8ac4
BLAKE2b-256 458bc80106be2fd601de6bb4cb0fd43fb1ec1e4bdcdc41dc50eedfc2d0110f01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 163e5b561f6a944e2cc45bb04dc052aa4edbcec5202039ed9e599c59577bfaac
MD5 be9cf231556a9a3408c89a3d85809d88
BLAKE2b-256 07ca7294762e702eb5406242cb054dad6d636b80a429f6336f38ff2554da058c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91d9be536192c9efc6b9ee2e2ce40029fd2313faf4cb36074af877d8767c1d2e
MD5 69acc74f81d990f8f1e61bd99dee0723
BLAKE2b-256 75a88f690c052a1acdd2898e74f320b1a8626eadd9bde294fc873f280624e11d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c754da3729cfb23ee7a5356166c8a6e719cb76e2cb09f7693abbf117919b6b13
MD5 1643557cb8f4706029890dfe04f2ff9c
BLAKE2b-256 e9c1e3f5aec7f9219ed00b600a368fbbc0c9480be198fa2bcdf746b1a2f49cad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c745dff1aa93c2bc13ca757d91aa125b3a2ecfea83341cd48337d72c9082d687
MD5 dc181482835f5004de6320d63a9b3a46
BLAKE2b-256 9c86e8d5436dd90fc189a79951fc56d15e5314b367990ddd00aead502412ca2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c18e24e3214739c8c09b39c41bdd223a26d17e8c84cee130bcb9a524868caa89
MD5 89a446f32ef587eb702a0a3267010865
BLAKE2b-256 4031c17d778b9812d37a794cee0932e32d066e1f8000f2ea077fe71a406bb38c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d1301b8785c8c2e77aab9adf52d8ab42cc8a77f4c34fb1d384f526652ba853c
MD5 5408550dd1e8481c39caf786be493128
BLAKE2b-256 b9f3b7de43f1ae8b11e13eb826225844251cf835a74d40678bdf0d8ad8a006a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fd1e06ef4bbbf698e0961f27ef2b489e9e6d88785d37e9bc308c6664ad6b6bb7
MD5 e21e70b754c79133a5c9471c465bdacd
BLAKE2b-256 3059fc0e3ed369407b10d7a9cb8074b7ac74fa4cce1424f48f499a494480b89a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1002c51b4d1ae02adbe729ce5cab793e5cd178bd109a808207ee401380f81678
MD5 43c8ecc4844ca082399527048641b5db
BLAKE2b-256 2ef98c52d59bd014da674bed61e9bba3dcaae18cb86767a4623e941e5e851623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9e37e0f117bca1951e25d9c66273557f0b44da0006b96c988edba6e1a5d818e
MD5 0668d691e0c91d68c153e35a92d4ee2d
BLAKE2b-256 1b44485ee4bd77869f39e635cdea2a2de6b30cd179d498be1c583a0f4b13427b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7c025117ccece771b58c02689cb67a88fa3b20ac1c9fa410e14b8a48d08d542
MD5 c5fe868df7263c8b43703b5f2410862d
BLAKE2b-256 8ac067d76bf47fc0e413d769fcd5a585fb367ac22fab5a2d3f81d864accfa370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdb9e1c7cadf45e8e10266f89ede1794cab7f38e4cad0d2d1b4ce2b94328c3b6
MD5 3464ba8b45670fbd47475f2763b6f2e1
BLAKE2b-256 be02df379793eabf2633bf662e0f0086f55a064670aadc3199f29132e531cad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cffe47f10b79ad348c3bbfc9f26ca95fd96de8c88ea4a85be3e1fdfa4823d33
MD5 91d2a3cac1a0a6de7bf986fbc04e1bf6
BLAKE2b-256 d395b207ad3ac8c168148b8af04386e5d3faa1bf5f130ec704603f1094751822

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72331682592414d310ce4b9d63b9857b4166380eb3ae126306ffb78b29bb0259
MD5 601904fadaed2cc566c15dd383315d1f
BLAKE2b-256 03926355775cfbb4660e5eb12d92b5daf97f8e840b1c622911b5c97ddb45a3b0

See more details on using hashes here.

Provenance

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