GraphQL framework for Python
Go to file
Mel van Londen 8e7d76bbce
Graphene v3 following v3 graphql-core (#1048)
* v3.0 - remove Python 2.x from build (#983)

* Change travis to only compile for p3.6+

* Changed tox to only run Python 3.6+

* Changed library classifiers to reflect support in Python 3.6+

* Changed version to 3.0.0 development

In [15]: get_version((3, 0, 0, "alpha", 0))
Out[15]: '3.0.dev20190601212304'

* Reorganize Tests (#985)

We no longer need a dedicated folder for Python3.6+ tests
We no longer need to check six.PY3 in tests

* Upgrade black to 19.3b0 (#987)

* Remove six dependency (#986)

* No one is using func_name

* Remove six simple usages

* Remove six requirement

* Remove `six.with_metaclass` calls

* pytest-asyncio should be a regular dependency now with Py3 move

* Change dependency to graphql-core-next (#988)

* Changed dependencies to core-next

* Converted Scalars

* ResolveInfo name change

* Ignore .venv

* Make Schema compatible with GraphQL-core-next

* Ignore more venv names and mypy and pytest caches

* Remove print statements for debugging in schema test

* core-next now provides out_type and out_name

* Adapt date and time scalar types to core-next

* Ignore the non-standard result.invalid flag

* Results are named tuples in core-next (immutable)

* Enum values are returned as dict in core-next

* Fix mutation tests with promises

* Make all 345 tests pass with graphql-core-next

* Remove the compat module which was only needed for older Py version

* Remove object as base class (not needed in Py 3)

* We can assume that dicts are ordered in Py 3.6+

* Make use of the fact that dicts are iterable

* Use consistent style of importing from pytest

* Restore compatibility with graphql-relay-py v3

Add adpaters for the PageInfo and Connection args.

* Avoid various deprecation warnings

* Use graphql-core 3 instead of graphql-core-next

* Update dependencies, reformat changes with black

* Update graphene/relay/connection.py

Co-Authored-By: Jonathan Kim <jkimbo@gmail.com>

* Run black on setup.py

* Remove trailing whitespace
2019-08-17 17:07:53 -04:00
.github Add stalebot (#1044) 2019-07-29 12:02:11 +02:00
bin Improved PEP8 syntax and order imports 2016-01-02 21:19:15 +01:00
docs Fix typo (#1028) 2019-07-08 22:21:50 +01:00
examples Graphene v3 following v3 graphql-core (#1048) 2019-08-17 17:07:53 -04:00
graphene Graphene v3 following v3 graphql-core (#1048) 2019-08-17 17:07:53 -04:00
tests_asyncio Graphene v3 following v3 graphql-core (#1048) 2019-08-17 17:07:53 -04:00
.coveragerc Fixed coverage 2016-09-08 22:26:31 -07:00
.editorconfig Add isort precommit hook & run on all files (#743) 2018-05-28 19:18:54 +01:00
.gitignore Graphene v3 following v3 graphql-core (#1048) 2019-08-17 17:07:53 -04:00
.isort.cfg Add isort precommit hook & run on all files (#743) 2018-05-28 19:18:54 +01:00
.pre-commit-config.yaml Graphene v3 following v3 graphql-core (#1048) 2019-08-17 17:07:53 -04:00
.travis.yml Graphene v3 following v3 graphql-core (#1048) 2019-08-17 17:07:53 -04:00
CODEOWNERS Trying to get codeowners to work (#996) 2019-06-24 16:01:45 +01:00
LICENSE Updated license 2016-09-17 22:04:03 -07:00
Makefile expose livehtml autobuild in Makefile + Add API autodoc (#971) 2019-06-09 15:36:06 -07:00
MANIFEST.in Include license in manifest for source bundles 2017-05-22 16:18:33 -07:00
mypy.ini Added mypy static checking 2017-08-07 20:48:26 -07:00
README.md Remove sponsorship text from readme (#1002) 2019-06-14 12:56:02 +01:00
README.rst Pypi doesnt allow raw directive 2019-06-03 10:29:59 -07:00
ROADMAP.md Update roadmap (#1019) 2019-06-24 20:38:45 -07:00
setup.cfg Added support for wheel distributions. Fixed #505 2017-07-31 22:30:13 -07:00
setup.py Graphene v3 following v3 graphql-core (#1048) 2019-08-17 17:07:53 -04:00
tox.ini Graphene v3 following v3 graphql-core (#1048) 2019-08-17 17:07:53 -04:00
UPGRADE-v1.0.md Revise documentation (#969) 2019-06-09 16:49:56 -07:00
UPGRADE-v2.0.md Revise documentation (#969) 2019-06-09 16:49:56 -07:00

We are looking for contributors! Please check the ROADMAP to see how you can help ❤️


Graphene Logo Graphene Build Status PyPI version Coverage Status

Introduction

Graphene is a Python library for building GraphQL schemas/types fast and easily.

  • Easy to use: Graphene helps you use GraphQL in Python without effort.
  • Relay: Graphene has builtin support for Relay.
  • Data agnostic: Graphene supports any kind of data source: SQL (Django, SQLAlchemy), NoSQL, custom Python objects, etc. We believe that by providing a complete API you could plug Graphene anywhere your data lives and make your data available through GraphQL.

Integrations

Graphene has multiple integrations with different frameworks:

integration Package
Django graphene-django
SQLAlchemy graphene-sqlalchemy
Google App Engine graphene-gae
Peewee In progress (Tracking Issue)

Also, Graphene is fully compatible with the GraphQL spec, working seamlessly with all GraphQL clients, such as Relay, Apollo and gql.

Installation

For instaling graphene, just run this command in your shell

pip install "graphene>=2.0"

2.0 Upgrade Guide

Please read UPGRADE-v2.0.md to learn how to upgrade.

Examples

Here is one example for you to get started:

class Query(graphene.ObjectType):
    hello = graphene.String(description='A typical hello world')

    def resolve_hello(self, info):
        return 'World'

schema = graphene.Schema(query=Query)

Then Querying graphene.Schema is as simple as:

query = '''
    query SayHello {
      hello
    }
'''
result = schema.execute(query)

If you want to learn even more, you can also check the following examples:

Documentation

Documentation and links to additional resources are available at https://docs.graphene-python.org/en/latest/

Contributing

After cloning this repo, create a virtualenv and ensure dependencies are installed by running:

virtualenv venv
source venv/bin/activate
pip install -e ".[test]"

Well-written tests and maintaining good test coverage is important to this project. While developing, run new and existing tests with:

py.test graphene/relay/tests/test_node.py # Single file
py.test graphene/relay # All tests in directory

Add the -s flag if you have introduced breakpoints into the code for debugging. Add the -v ("verbose") flag to get more detailed test output. For even more detailed output, use -vv. Check out the pytest documentation for more options and test running controls.

You can also run the benchmarks with:

py.test graphene --benchmark-only

Graphene supports several versions of Python. To make sure that changes do not break compatibility with any of those versions, we use tox to create virtualenvs for each Python version and run tests with that version. To run against all Python versions defined in the tox.ini config file, just run:

tox

If you wish to run against a specific version defined in the tox.ini file:

tox -e py36

Tox can only use whatever versions of Python are installed on your system. When you create a pull request, Travis will also be running the same tests and report the results, so there is no need for potential contributors to try to install every single version of Python on their own system ahead of time. We appreciate opening issues and pull requests to make graphene even more stable & useful!

Building Documentation

The documentation is generated using the excellent Sphinx and a custom theme.

An HTML version of the documentation is produced by running:

make docs