
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
|Build Status| |Coverage Status|
A project for running Graphene <http://graphene-python.org/>
__ on top
of Tornado <http://www.tornadoweb.org/>
__ in Python 2 and 3. The
codebase is a port of
graphene-django <https://github.com/graphql-python/graphene-django>
__.
Create a Tornado application and add the GraphQL handlers:
.. code:: python
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:
.. code:: python
@gen.coroutine def resolve_foo(self, info): foo = yield db.get_foo() raise Return(foo)
Or use the async
/ await
pattern in Python 3:
.. code:: python
async def resolve_foo(self, info): foo = await db.get_foo() return foo
.. |Build Status| image:: https://travis-ci.org/graphql-python/graphene-tornado.svg?branch=master :target: https://travis-ci.org/graphql-python/graphene-tornado .. |Coverage Status| image:: https://coveralls.io/repos/github/graphql-python/graphene-tornado/badge.svg?branch=master :target: https://coveralls.io/github/graphql-python/graphene-tornado?branch=master
FAQs
Graphene Tornado integration
We found that graphene-tornado demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.