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.13.tar.gz (1.1 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.13-cp314-cp314t-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

grafeo-0.5.13-cp314-cp314t-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

grafeo-0.5.13-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.13-cp314-cp314-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

grafeo-0.5.13-cp314-cp314-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

grafeo-0.5.13-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

grafeo-0.5.13-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

grafeo-0.5.13-cp313-cp313t-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

grafeo-0.5.13-cp313-cp313t-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

grafeo-0.5.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

grafeo-0.5.13-cp313-cp313-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

grafeo-0.5.13-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

grafeo-0.5.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

grafeo-0.5.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

grafeo-0.5.13-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

grafeo-0.5.13-cp312-cp312-win32.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86

grafeo-0.5.13-cp312-cp312-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

grafeo-0.5.13-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

grafeo-0.5.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

grafeo-0.5.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

grafeo-0.5.13-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grafeo-0.5.13-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: grafeo-0.5.13.tar.gz
  • Upload date:
  • Size: 1.1 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.13.tar.gz
Algorithm Hash digest
SHA256 806979deaa97cd9baea1531ae9695e1b34cae3bacf86ecf09dd2b0a82f2c0be7
MD5 d9396cdbe75ef5aaac8cca42449fafa4
BLAKE2b-256 8e595d1fde3ffdf8eb146d0532e9b030a719c5cfe032306f189b3e6e950995c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d012ce4a8824a7bb0125c04eac0e8ae3acf114df064fea85dd0a54b2f0459b2a
MD5 a5350cb4dad82af61e3a7e9583e676a4
BLAKE2b-256 322fb796b07b507970d1a4ecafdaf243775894bcab241bfdcf6013cc18535636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a17747c79d224b60cb0ac6964d03fe2ce2fe802b63298d8c23428acae00c7f0b
MD5 716b1bce3824557ab3854d5cdc8846a6
BLAKE2b-256 42f305c56904dc252398952c8762ff6d3b114fd55a098c8ff66a713a11665d2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68cb0efff3c49d67499a6b55156bb51bc60d5086ae0cb28cde8257d3be09c1c6
MD5 aefe0e4baf25a0667eb118d707fdc7cd
BLAKE2b-256 0ab428ff1dd8fbd47107b4e224d8e100e15440fbb9e7d64200d8f303bf46582a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09238610d9e328c830b560cf8b74bc5b976ba681b7897e20569fb34c87c4f746
MD5 6532f65e0e204b8741818c20736e99ba
BLAKE2b-256 059e6265cab41c14a3bb4aae610fbfc3e07603db55c7acdc0b28d89af416408a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c2d8c844a693bb08abc41d6c09dd53f2a40b8946dff77f8e5b2d6d845aba5b7
MD5 1dc1108c3516a43a5e24da3ad5e65759
BLAKE2b-256 bc591b82315391b3a938ff5a2d879f284d817894509bb5926d593a930ce568fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a320e88841a9c4ed3753cda2124c1802bdb5605cd055fbed7655a5b0ab46ae0
MD5 79729203c47d0d0d1d0cbda61d61b8c8
BLAKE2b-256 99209a7e4acfad9f6293f89f13710b5747660ea2f3707404b64a8855d61bf5ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36d186ccf072293013ce242a99214248bc543af7cef1a68f6364d72f89da2722
MD5 6d77823e5b8d2ff91c80ca13d5e2208e
BLAKE2b-256 d078c756733eae6bdb3845dc26eae7890575865ddd7e422f024012e3a71311f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64efaf7981c2a0b7cf747ab0e746869c8ca9ecf989ae0c0e84de49836096433b
MD5 42021266c06d2ec4ab382ea5f4aca9df
BLAKE2b-256 b6341567140aaefc10041b58e998f98a06160b0c3d938be458def48924a83db7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb81fb5966a83d47c5ae59a3cd19caff1492fbc162243929ee4d833af4dbb015
MD5 684a5795f87068e60302056ecb49610a
BLAKE2b-256 f35cb909b74afbd24eacaab6f35d85d6194a262f75571b08a4383be898e51185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06853500e0c7a20ba4adcf8a80817c49bc4bddaa4239e3b39feaaafdf40d1404
MD5 a69eaac19652ad224fc55afa852d38de
BLAKE2b-256 58679c3632bd78e6a25e85dc828b085ff49b5c84b66784d57b7b92a28f1574a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5e9cd082e3feeb4c9a89ca48a5062ab0ffeecd4f7bd1e0f8a9f62dcc158a23f
MD5 11faf9cf2f61efa365be56853f2f0914
BLAKE2b-256 08fc2a6781e743e5bbb4bdefe5dd33fcdf13e7f436a0c0b2094ebedf74623f13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5e987d53fbc2e68ba04cb88ed9d6b35ee9ccb74cd131fe2f3887e34ed8708d8
MD5 ae42df98693384b6a753220fc00e3603
BLAKE2b-256 01b91e9585f3f1bf916a367ef29193ef1dc8e6b4cafc15f5e570202ad29038b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 285201ea4fc7b95ac04f2c66c364a53eacfd22fbd5ef6e102ab6a31c2db57844
MD5 5df4e244074094ab26997f30b600affa
BLAKE2b-256 3170b07b5fb8a17a2216eb7938d920ced241d9eb7f21bef66ac781b260c45b05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 101b0ed1288c73e4d5a3d7c63b13f9158cb09d0e4c2fa90cc7461e0bdb5695ca
MD5 1e69ca02b63a826e26441899db25bcc3
BLAKE2b-256 c0b196ac646a22c99f737e3951bff83ce2f87106c9416fe1428500e34e7d15d7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.1 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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25e516624732125c13355417eda1189bdb964253d23990497c6367e3aacb88af
MD5 23c8e77a10d54dfced45fd969f93eb4a
BLAKE2b-256 130d0bf3b59185712a4d27c7cbf0b01f1244b851bc2c9539d3bf4aa30e3039d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: grafeo-0.5.13-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.8 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.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9c907e26eb620248d1e7e4581c1e4d827bc033be1dd2ec0cb6b5fd3d93228039
MD5 97e23f47b98b923f8bfe62404c488ae3
BLAKE2b-256 9762ede7ff8b5f3294784435250ad790ed37ea31ee0925259905e97ffa34ee2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da892262b4e61bfb641b14176a073b6b9a32e78530ce06da56fffb4c53f94238
MD5 22e3d6389c3585ce7b56a444a891ef58
BLAKE2b-256 2232cbcb2c2b3031eea6dce84bcf8cb112cfbb0f881c88bb8769106aa9a140b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1348d360f01c3779eb11a3d34b25f3a71279b498dab965b42cdde50099eeea8
MD5 1633f936e5c98fdfb9a8768c533943fc
BLAKE2b-256 f97b7d09f21aa6881d82eab378c8578343ee9aacec13f77a0ff5839891dca494

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0cde01452ceb28c6d114331678a6c298f2a019f0166e73d190103a52124ee1d
MD5 eb21a098f9c60b8059690572fd8db345
BLAKE2b-256 555154f2dc30b138e799acb664a50597e678b4d686f7aa028c441fc32706e8e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3926e46769ccab6f6dbf6d5ae61b42d05ecf8aea9c9e753fac82743cf06e7fb4
MD5 8b5b73228bcc662aba67cd26f29d3551
BLAKE2b-256 ebd4d68c72c1f8dc225f19756da57324474afbed3528c0549555105dcf1fafab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b55b64f937cee78db37cd564dc62c8fb8a4c6e210553fd8615bd8b8e3428265b
MD5 c9ea37c151669f4f98f6a51737b03400
BLAKE2b-256 9c9bb82b6f2a9abd2aaeaee15963b493d5db31e164381589fdb3ba36e0c13cfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for grafeo-0.5.13-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d9259a307c8f0323df5ab2e4a434dba3d86362bbb673afd0d41da431312718f
MD5 6942bd4ace9bceb49057c3b9e7a0efd9
BLAKE2b-256 83874a24dc56e5a598b5967cd8419b55f4b4974d0dc62ac152eb7e97182d6b16

See more details on using hashes here.

Provenance

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