graphene/README.rst

178 lines
6.1 KiB
ReStructuredText
Raw Normal View History

2018-08-31 18:47:05 +03:00
**We are looking for contributors**! Please check the
`ROADMAP <https://github.com/graphql-python/graphene/blob/master/ROADMAP.md>`__
to see how you can help ❤️
2016-09-09 07:30:30 +03:00
--------------
|Graphene Logo| `Graphene <http://graphene-python.org>`__ |Build Status| |PyPI version| |Coverage Status|
=========================================================================================================
2015-10-07 07:04:24 +03:00
Introduction
------------
`Graphene <http://graphene-python.org>`__ is a Python library for
building GraphQL schemas/types fast and easily.
2015-10-30 23:40:36 +03:00
- **Easy to use:** Graphene helps you use GraphQL in Python without
effort.
2017-07-12 09:10:02 +03:00
- **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.
2015-10-07 07:04:24 +03:00
Integrations
------------
Graphene has multiple integrations with different frameworks:
2015-10-30 10:01:44 +03:00
+---------------------+----------------------------------------------------------------------------------------------+
| integration | Package |
+=====================+==============================================================================================+
| Django | `graphene-django <https://github.com/graphql-python/graphene-django/>`__ |
+---------------------+----------------------------------------------------------------------------------------------+
| SQLAlchemy | `graphene-sqlalchemy <https://github.com/graphql-python/graphene-sqlalchemy/>`__ |
+---------------------+----------------------------------------------------------------------------------------------+
| Google App Engine | `graphene-gae <https://github.com/graphql-python/graphene-gae/>`__ |
+---------------------+----------------------------------------------------------------------------------------------+
| Peewee | *In progress* (`Tracking Issue <https://github.com/graphql-python/graphene/issues/289>`__) |
+---------------------+----------------------------------------------------------------------------------------------+
2015-11-30 11:25:18 +03:00
2017-02-18 23:50:58 +03:00
Also, Graphene is fully compatible with the GraphQL spec, working
seamlessly with all GraphQL clients, such as
`Relay <https://github.com/facebook/relay>`__,
`Apollo <https://github.com/apollographql/apollo-client>`__ and
`gql <https://github.com/graphql-python/gql>`__.
2015-10-07 07:04:24 +03:00
Installation
------------
For instaling graphene, just run this command in your shell
.. code:: bash
2017-07-12 09:10:02 +03:00
pip install "graphene>=2.0"
2015-10-07 07:04:24 +03:00
2017-07-12 09:10:02 +03:00
2.0 Upgrade Guide
2016-09-09 07:30:30 +03:00
-----------------
2017-07-12 09:10:02 +03:00
Please read `UPGRADE-v2.0.md </UPGRADE-v2.0.md>`__ to learn how to
upgrade.
2016-09-09 07:30:30 +03:00
Examples
--------
2015-10-07 07:04:24 +03:00
2017-01-22 11:46:31 +03:00
Here is one example for you to get started:
2015-10-07 07:04:24 +03:00
.. code:: python
class Query(graphene.ObjectType):
hello = graphene.String(description='A typical hello world')
2015-10-07 07:04:24 +03:00
2017-07-27 13:00:21 +03:00
def resolve_hello(self, info):
return 'World'
2015-10-07 07:04:24 +03:00
schema = graphene.Schema(query=Query)
Then Querying ``graphene.Schema`` is as simple as:
2015-10-07 07:04:24 +03:00
.. code:: python
query = '''
query SayHello {
hello
2015-10-07 07:04:24 +03:00
}
'''
result = schema.execute(query)
If you want to learn even more, you can also check the following
`examples <examples/>`__:
2015-10-07 07:04:24 +03:00
- **Basic Schema**: `Starwars example <examples/starwars>`__
- **Relay Schema**: `Starwars Relay
example <examples/starwars_relay>`__
2015-10-07 07:04:24 +03:00
Documentation
-------------
Documentation and links to additional resources are available at
https://docs.graphene-python.org/en/latest/
2015-10-07 07:04:24 +03:00
Contributing
------------
2018-08-31 18:47:05 +03:00
After cloning this repo, create a
`virtualenv <https://virtualenv.pypa.io/en/stable/>`__ and ensure
dependencies are installed by running:
2015-10-07 07:04:24 +03:00
.. code:: sh
2018-08-31 18:47:05 +03:00
virtualenv venv
source venv/bin/activate
2017-03-05 05:17:53 +03:00
pip install -e ".[test]"
2015-10-07 07:04:24 +03:00
2018-08-31 18:47:05 +03:00
Well-written tests and maintaining good test coverage is important to
this project. While developing, run new and existing tests with:
2015-10-07 07:04:24 +03:00
.. code:: sh
2018-08-31 18:58:51 +03:00
py.test graphene/relay/tests/test_node.py # Single file
py.test graphene/relay # All tests in directory
2018-08-31 18:47:05 +03:00
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 <https://docs.pytest.org/en/latest/>`__ for more
options and test running controls.
2017-02-08 08:54:50 +03:00
You can also run the benchmarks with:
.. code:: sh
py.test graphene --benchmark-only
2015-10-07 07:04:24 +03:00
2018-08-31 18:47:05 +03:00
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``
2018-08-31 18:47:05 +03:00
config file, just run:
.. code:: sh
tox
If you wish to run against a specific version defined in the ``tox.ini``
file:
.. code:: sh
tox -e py36
Tox can only use whatever versions of Python are installed on your
2018-08-31 18:47:05 +03:00
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
2018-08-31 18:47:05 +03:00
own system ahead of time. We appreciate opening issues and pull requests
to make graphene even more stable & useful!
Building Documentation
2019-06-03 19:44:03 +03:00
~~~~~~~~~~~~~~~~~~~~~~
The documentation is generated using the excellent
`Sphinx <http://www.sphinx-doc.org/>`__ and a custom theme.
An HTML version of the documentation is produced by running:
.. code:: sh
make docs
.. |Graphene Logo| image:: http://graphene-python.org/favicon.png
2015-10-07 07:04:24 +03:00
.. |Build Status| image:: https://travis-ci.org/graphql-python/graphene.svg?branch=master
:target: https://travis-ci.org/graphql-python/graphene
.. |PyPI version| image:: https://badge.fury.io/py/graphene.svg
:target: https://badge.fury.io/py/graphene
2015-10-07 07:04:24 +03:00
.. |Coverage Status| image:: https://coveralls.io/repos/graphql-python/graphene/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/graphql-python/graphene?branch=master