Skip to content

Commit 97136f7

Browse files
committed
Renamed package to Flask-GraphQL
1 parent 58f009b commit 97136f7

File tree

17 files changed

+17
-17
lines changed

17 files changed

+17
-17
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ install:
2222
- pip install tox coveralls
2323

2424
script:
25-
- tox -e $TOX_ENV -- --cov=graphql_flask
25+
- tox -e $TOX_ENV -- --cov=flask_graphql
2626
after_success:
2727
- coveralls

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
include README.md
2-
recursive-include graphql_flask/static *
3-
recursive-include graphql_flask/templates *
2+
recursive-include flask_graphql/static *
3+
recursive-include flask_graphql/templates *

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# GraphQL-Flask
1+
# Flask-GraphQL
22

33
[![Build Status](https://travis-ci.org/graphql-python/graphql-flask.svg?branch=master)](https://travis-ci.org/graphql-python/graphql-flask) [![Coverage Status](https://coveralls.io/repos/graphql-python/graphql-flask/badge.svg?branch=master&service=github)](https://coveralls.io/github/graphql-python/graphql-flask?branch=master) [![PyPI version](https://badge.fury.io/py/graphql-flask.svg)](https://badge.fury.io/py/graphql-flask)
44

55
Adds GraphQL support to your Flask application.
66

77
## Usage
88

9-
Just create a `GraphQL` instance from `graphql_flask`
9+
Just create a `GraphQL` instance from `flask_graphql`
1010

1111
```python
12-
from graphql_flask import GraphQL
12+
from flask_graphql import GraphQL
1313

1414
graphql_blueprint = GraphQL(app, schema=schema)
1515
```
@@ -24,7 +24,7 @@ This package provides the following Views:
2424

2525
You can also add only the views you want to use:
2626
```python
27-
from graphql_flask import GraphQLView, GraphiQLView
27+
from flask_graphql import GraphQLView, GraphiQLView
2828

2929
app.add_url_rule('/graphql', view_func=GraphQLView.as_view('graphql', schema=schema))
3030
```

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
GraphQL-Flask
1+
Flask-GraphQL
22
=============
33

44
|Build Status| |Coverage Status| |PyPI version|
@@ -8,11 +8,11 @@ Adds GraphQL support to your Flask application.
88
Usage
99
-----
1010

11-
Just create a ``GraphQL`` instance from ``graphql_flask``
11+
Just create a ``GraphQL`` instance from ``flask_graphql``
1212

1313
.. code:: python
1414
15-
from graphql_flask import GraphQL
15+
from flask_graphql import GraphQL
1616
1717
graphql_blueprint = GraphQL(app, schema=schema)
1818
@@ -29,7 +29,7 @@ You can also add only the views you want to use:
2929

3030
.. code:: python
3131
32-
from graphql_flask import GraphQLView, GraphiQLView
32+
from flask_graphql import GraphQLView, GraphiQLView
3333
3434
app.add_url_rule('/graphql', view_func=GraphQLView.as_view('graphql', schema=schema))
3535
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)