Skip to main content

No project description provided

Reason this release was yanked:

just published it to hold the name, version is not stable

Project description

greff

I wanted an animal name, but most of them already used in pypi :(

what is it

a class orianted python library to build graphql python client, just build you class in python, query them, and the library will create the instances of those classes

current stage

in the current stage its not ready for release, but you can see the vision section

vision / example

import requests
import greff


class ParentAuthor(greff.Type):
    __queryname__ = "authors"

    name: str
    age: int = 0


class Author(ParentAuthor):
    extra_field: str


class SimpleAuthor(ParentAuthor):
    pass


# we implement the graphql posting function ourself
# since it can very from diffrent implementations
def _request_graphql(query) -> dict:
    response = requests.post("http://localhost:8000/graphql", json={"query": query}, verify=False)
    response.raise_for_status()
    return response.json()

# create our charryplate graphql client
graphql = greff.Client(query_request=_request_graphql)

# graphql equivelent
#  {
#   authors {
#     name,
#     __typename
#   }
# }
authors = graphql.query((
    (ParentAuthor, (
        Author.name,
    )),
))

# graphql response 
# {
#   "data": {
#     "authors": [
#       {
#         "name": "Michael Crichton",
#         "__typename": "Author"
#       }
#     ]
#   }
# }
for author in authors:
    print(type(author), author.name)

output

<class '__main__.Author'> Michael Crichton

why did it return Author instance and not ParentAuthor instance?

if you look closely at the response

{
  "data": {
    "authors": [
      {
        "name": "Michael Crichton",
        "__typename": "Author"
      }
    ]
  }
}

ParentAuthor is implementor for Author and SmallAuthor and in our query the __typename returned Author, so greff automatically created the correct python instace

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

greff-0.0.1.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

greff-0.0.1-py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page