Graphene Tornado integration
Project description
graphene-tornado
A project for running Graphene on top of Tornado in Python 2 and 3. The codebase is a port of graphene-django.
Getting started
Create a Tornado application and add the GraphQL handlers:
import tornado.web
from tornado.ioloop import IOLoop
from graphene_tornado.schema import schema
from graphene_tornado.tornado_graphql_handler import TornadoGraphQLHandler
class ExampleApplication(tornado.web.Application):
def __init__(self):
handlers = [
(r'/graphql', TornadoGraphQLHandler, dict(graphiql=True, schema=schema)),
(r'/graphql/batch', TornadoGraphQLHandler, dict(graphiql=True, schema=schema, batch=True)),
(r'/graphql/graphiql', TornadoGraphQLHandler, dict(graphiql=True, schema=schema))
]
tornado.web.Application.__init__(self, handlers)
if __name__ == '__main__':
app = ExampleApplication()
app.listen(5000)
IOLoop.instance().start()
When writing your resolvers, decorate them with either Tornado’s @coroutine decorator for Python 2.7:
@gen.coroutine
def resolve_foo(self, info):
foo = yield db.get_foo()
raise Return(foo)
Or use the async / await pattern in Python 3:
async def resolve_foo(self, info):
foo = await db.get_foo()
return foo
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
graphene-tornado-2.3.0.tar.gz
(15.9 kB
view hashes)
Built Distribution
Close
Hashes for graphene_tornado-2.3.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85a4d1873486e2555061fb66b1d6b12aef432f5bf6b19aa86d9ed8cb8df49314 |
|
MD5 | 6a921a3a7cf62599f1c9e1468d803744 |
|
BLAKE2b-256 | e4e58a6192152336053b8d7c0bd9687bab4bcc285c1d4846d551d85fc85bc7e7 |