Skip to main content

Library to implement Graph APIs

Project description

project documentation version tag license

Hiku is a library to implement Graph APIs. Essential GraphQL support included.

Installation

$ pip3 install hiku

Bug fixes and new features are frequently published via release candidates:

$ pip3 install --upgrade --pre hiku

Documentation

Read documentation

Optional dependencies

  • graphql-core - for GraphQL support

  • sqlalchemy - for SQLAlchemy support as a data-source

  • aiopg - for async PostgreSQL support with aiopg

  • asyncpg - for async PostgreSQL support with asyncpg

  • prometheus-client - for Prometheus metrics support

  • sentry-sdk - for Sentry tracing support

Highlights

  • Not coupled to a single specific query language

  • Flexibility in result serialization

  • Natively uses normalized result representation, without data duplication

  • All concurrency models supported: coroutines, threads

  • Parallel query execution

  • No data under-fetching or over-fetching between client<->server and between server<->database

  • No N+1 problems by design

  • Introduces a concept of Two-Level Graph in order to decouple data-sources and business-logic

Quick example

Graph definition:

from hiku.graph import Graph, Root, Node, Field, Link
from hiku.types import String, Sequence, TypeRef

def characters_data(fields, ids):
    data = {
        1: {'name': 'James T. Kirk', 'species': 'Human'},
        2: {'name': 'Spock', 'species': 'Vulcan/Human'},
        3: {'name': 'Leonard McCoy', 'species': 'Human'},
    }
    return [[data[i][f.name] for f in fields] for i in ids]

def characters_link():
    return [1, 2, 3]

GRAPH = Graph([
    Node('Character', [
        Field('name', String, characters_data),
        Field('species', String, characters_data),
    ]),
    Root([
        Link('characters', Sequence[TypeRef['Character']],
             characters_link, requires=None),
    ]),
])

Query:

from hiku.schema import Schema
from hiku.builder import Q, build
from hiku.executors.sync import SyncExecutor

schema = Schema(SyncExecutor(), GRAPH)

result = schema.execute_sync(build([
    Q.characters[
        Q.name,
        Q.species,
    ],
]))

# use result in your code
for character in result.data["characters"]:
    print(character["name"], '-', character["species"])

Output:

James T. Kirk - Human
Spock - Vulcan/Human
Leonard McCoy - Human

Contributing

Use Tox in order to test and lint your changes.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

hiku-0.8.0rc21.tar.gz (84.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hiku-0.8.0rc21-py3-none-any.whl (106.4 kB view details)

Uploaded Python 3

File details

Details for the file hiku-0.8.0rc21.tar.gz.

File metadata

  • Download URL: hiku-0.8.0rc21.tar.gz
  • Upload date:
  • Size: 84.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.1 CPython/3.10.19 Linux/6.11.0-1018-azure

File hashes

Hashes for hiku-0.8.0rc21.tar.gz
Algorithm Hash digest
SHA256 8158a2d25528234db1e8209d7fcf3d60b06ebbf0960defebed4d7f9da9af7113
MD5 d58c43072555802bd872d1432598c642
BLAKE2b-256 3eea0c0ca0f2115ea9a430a777ee10ef51b3ab6fd371c01196189cf510e3af3f

See more details on using hashes here.

File details

Details for the file hiku-0.8.0rc21-py3-none-any.whl.

File metadata

  • Download URL: hiku-0.8.0rc21-py3-none-any.whl
  • Upload date:
  • Size: 106.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: pdm/2.26.1 CPython/3.10.19 Linux/6.11.0-1018-azure

File hashes

Hashes for hiku-0.8.0rc21-py3-none-any.whl
Algorithm Hash digest
SHA256 83fbec1d24f83434c4486b10c5f340fec92e0550d104e1b2f3b6fb699b812bef
MD5 0bcf33c43a5f92a49b2a61f2ef5b3d3c
BLAKE2b-256 1556d9d497ba6cb561dd013d9cd23c341672dbd3516a2c5ce381445bb4602c26

See more details on using hashes here.

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