Skip to main content

A high-performance, embeddable graph database with Python bindings

Project description

grafeo

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

Installation

pip install grafeo
# or
uv add grafeo

Quick Start

from grafeo import GrafeoDB

# In-memory database
db = GrafeoDB()

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

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

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

API Overview

Database

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

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

Query Languages

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

Node & Edge CRUD

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

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

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

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

Transactions

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

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

QueryResult

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

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

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

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

Vector Search

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

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

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

Features

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

Links

License

Apache-2.0

Project details


Download files

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

Source Distribution

grafeo-0.5.1.tar.gz (908.5 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.1-cp314-cp314t-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.1-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

grafeo-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.1.tar.gz
  • Upload date:
  • Size: 908.5 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.1.tar.gz
Algorithm Hash digest
SHA256 09271eb00610d8dffbe8759b8888b9f681a5ec2bacd2dc23b161b910afe6b4f3
MD5 b86999a220a73539f448b28bb932f3bf
BLAKE2b-256 82f13f3340a752023154b452ec8c842986145ee713845e6a4d5abb41c811e66b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91807e06d1ba8dfdecfb39309a87186160f35b1ae1be951f1140f45648ca9461
MD5 9204b7c0050dc1ecf4d97674c4b35c4a
BLAKE2b-256 548084d2b63971d988437c56411109db770ff89cd10c44881d9e823281c52d84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fbf5898692b7c06f4ff0042641cd6a104329384b17e5eeffdcb8896e1bdb3e8
MD5 24ac43df71ee196202945ad5409ba26d
BLAKE2b-256 33a238a0c0b6f8b1072138c60027d12b0d21dc244126b4dbc5c79488a7408dd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1aff829a9c7deea2a9b9ec9658f27b4ca5e9646cc2232e674ad14f57d79419c
MD5 703fdb90dd90dd89a6d5d239ae9b845e
BLAKE2b-256 7d47a789be59e0fdda4af2a4571e509ad48cc94bbb3f28ffd6bcd9e91b079be8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db35b1a2bc7e818f728592bf7b9d08a05a0c1012b808d279527cd837a95e4b2a
MD5 c243058137d18b226ed6a2535c77c0ea
BLAKE2b-256 f501f7c56524f2d026ad025151208da512b7b7b56ba5640fc7aa3b36a2a32225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6971be6a2f6641074ced41ad33b01f2134876c12044132f0bbab7724cde55e3c
MD5 61a18d1a7b9d942bf34e43c73362fefb
BLAKE2b-256 1ac26a1fcabed43a832a2be1c1b0d08e826e212b8fd07b39dc8a64af0ecd9ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aee67ee014382168c3553e36ed185b28c51387090c383f00920a59033e3f7736
MD5 988a86d51c38ba688f4d8910d87b30ce
BLAKE2b-256 c17eefaabc57468276027f1c3c970497e687b97060096ba608f8d09cb8f04354

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee003bd3a11ed37caebbe659bd2dd3960f98714af3c87068b9fd5af1dafd2726
MD5 2fb47627cd25cd4c09216be009094470
BLAKE2b-256 d690abac4ffff9628a72badde8253db48a406113e8e9d4e7fd7c9bcf0dcefef0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3030d4d2dbbd254d0d368ad8ce834ca10cb32c0e84740d4ff1a237f5f133f7b
MD5 34600d3c257374d36fae6ed28343f645
BLAKE2b-256 a3114ff208ee8e43e59482c71944bee6bde0a39fd25cccb053224665edcfd66c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2991ba998bf4f2515940deb1e1c0c75b09ae86972c75ce08198a474d82c6b85c
MD5 a8ec33c3bb3863a0f6e563dfa11b5413
BLAKE2b-256 370919f08699141cb6578028f453fb211d22f6a23cbaf15227f5d3c4c7abe8d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 998acdcce0290f28c9e80a2feb53994b3ba3cb26d825147212d15d10f2624c46
MD5 cfa7cf5497f841a21f182f66bd5fa39a
BLAKE2b-256 c0d24c5ab407a26a522fc1860afe1ce6330ee31a6efe6f2cc3085d67c4daa9a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3dbaa108a20c1105bb163f5a317e6917145dd7c62a37d36a17005efa4feb6c37
MD5 c1292fd41484a40fba25c70864de8a11
BLAKE2b-256 9e03172a0638d9e814556df6a15de8d6ce7e8c2201139b1e82ca069defeacfb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a32042b0b7461a89166bbb88ce92ea4cac4e3366d2fa24334f973ca357d034c2
MD5 07126f92010c4d300bd8e7add7c63d6a
BLAKE2b-256 10872101604261e73666c2b996e812633e71e6a82657990fad8eeb646bcc9220

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e06130fe57cfd2d93bd193b72dc9cf3e579fa9acae3c612f6997f9c5071e0b8
MD5 d4524e5ae4360b51303440954f67d84e
BLAKE2b-256 b55a0d3350cdf63724a118f4cdde53b14386ca1c8d72ab8465955708ed253ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b4eb10eb56605ae2a5a40fd4bd6b8f33c9bd64dbc14031e0189e6602c11016a
MD5 cfa74c0230a329197af0b0cf09041b81
BLAKE2b-256 e58ffdb6091ab4de72c8e03bf77cec6dd94dc5a5c16cc1d2be5499b2bd4735d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.6 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4309a1e4c6126290432cd7838a4f769014058c71fefd545fd15c6f3e2c698676
MD5 6424e13fef797a857085708cc1b56a07
BLAKE2b-256 8ec731bf292214b9e5081fea796f7cf7b4427c98d0d8c720e2cbfd399f0bd9f4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for grafeo-0.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 002a3221ac0e5fbf5da61af02e5ee80b43d2e011bfefe4cd4bb6d5fbfc46dba3
MD5 c6411bfbc1f33734e742b801e4253025
BLAKE2b-256 1e1def80140ba16e35e40ddf357734c6fd03119507d032368c5af00710259156

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ec6bb3b390a19326e45474fbe52e75ed27a13becd04278dfe329c43d4c29e4c
MD5 67064c4997770d529884e74950e2f7c2
BLAKE2b-256 a6b41f049d42628b57b9a9490fb88cf732717b113d4340807058c2690b3af030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e35df17a8455fd50424202e85e223af3ca4b845f44053b4c4adea209294b9c53
MD5 bf5a629ccd7f1c718a43b35d55e877fc
BLAKE2b-256 455255becff96278c8cd7e1c15bd8c14b45b22459714f2174e7e9e184644654f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a60b54c586a1af8303c0d623b64e02ad7e192cd573ccafd4ea325cffaabfb7b4
MD5 d66979fe3bf8b591bcd1cbbf2265ab95
BLAKE2b-256 eb5359e201a90c9d034ff3a38c4fb32a00476313f80c345e033f088dce1f0acc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a967ee567e399456a98f83062aff954a2d9c13766d86da75025c895e8b07764b
MD5 de53fed7d65219722db934e7dc4680a4
BLAKE2b-256 888b28b446a4fefeca607e2df116fe49e40268ee130f4b4b771c7f75168a447e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07d69be875bfa214784d2b819cd9bda6e139a42de82a5d3cec68d8b0b1705b26
MD5 6c3179b17f67455890ad0083d3b27ec4
BLAKE2b-256 1f4e5d9285d85a5908c099fdbae9c6bf06a8644dd922a2a04ade944acdea77b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3d4ab384bbda21fb85d318aa53ff048a30236d0b9854d9df7f68e49e2bd96b9
MD5 2949a07ecc4ffb9f2524b87bf116fd14
BLAKE2b-256 4c5fc8752da0ed83864e3b95cdab86a4354b038a998ef0a55b71c7f2127c8b30

See more details on using hashes here.

Provenance

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