Metadata-Version: 1.1
Name: django-graphiql
Version: 0.4.3
Summary: Integrate GraphiQL easily into your Django project
Home-page: http://github.com/graphql-python/django-graphiql
Author: Syrus Akbary
Author-email: me@syrusakbary.com
License: MIT
Download-URL: git@github.com:graphql-python/django-graphiql.git
Description: Django GraphiQL
        ===============
        
        .. image:: https://badge.fury.io/py/django-graphiql.svg
            :target: https://badge.fury.io/py/django-graphiql
        
        Django GraphiQL is a library for integrating `GraphiQL`_ inside your
        Django project, so you can test your `GraphQL`_ schemas easily.
        
        This library versioning go in partity with GraphiQL.
        
        Installing
        ----------
        
        For installing this library just run in your favorite shell:
        
        .. code:: bash
        
            pip install django-graphiql
        
        Configuring
        -----------
        
        In settings.py add ``'django_graphiql'`` into ``INSTALLED_APPS``, so it
        will look like
        
        .. code:: python
        
            INSTALLED_APPS = [
                # ...
                'django_graphiql',
                # ...
            ]
        
        And then, add into your urls.py:
        
        .. code:: python
        
            urlpatterns = [
                # Your other urls...
                url(r'^graphiql', include('django_graphiql.urls')),
            ]
        
        .. _GraphiQL: https://github.com/graphql/graphiql
        .. _GraphQL: https://github.com/graphql-python/graphql-core
        
Keywords: django graphiql graphql graphene graphql-core
Platform: any
