Skip to content

Commit 0c7b59a

Browse files
authored
docs: add graphql-server logo (#57)
* docs: add graphql-server logo * docs: add logo to manifest
1 parent 51dcc22 commit 0c7b59a

File tree

3 files changed

+22
-19
lines changed

3 files changed

+22
-19
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include CONTRIBUTING.md
77
include codecov.yml
88
include tox.ini
99

10-
recursive-include docs *.md
10+
recursive-include docs *.md *.svg
1111

1212
graft tests
1313
prune bin

README.md

+20-18
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# GraphQL-Server
1+
<img src="./docs/_static/graphql-server-logo.svg" height="128px">
22

33
[![PyPI version](https://badge.fury.io/py/graphql-server-core.svg)](https://badge.fury.io/py/graphql-server-core)
44
[![Build Status](https://travis-ci.org/graphql-python/graphql-server-core.svg?branch=master)](https://travis-ci.org/graphql-python/graphql-server-core)
@@ -10,34 +10,35 @@ for building GraphQL servers or integrations into existing web frameworks using
1010

1111
## Integrations built with GraphQL-Server
1212

13-
| Server integration | Docs |
14-
|---|---|
15-
| Flask | [flask](docs/flask.md) |
16-
| Sanic |[sanic](docs/sanic.md) |
17-
| AIOHTTP | [aiohttp](docs/aiohttp.md) |
18-
| WebOb (Pyramid, TurboGears) | [webob](docs/webob.md) |
13+
| Server integration | Docs |
14+
| --------------------------- | -------------------------- |
15+
| Flask | [flask](docs/flask.md) |
16+
| Sanic | [sanic](docs/sanic.md) |
17+
| AIOHTTP | [aiohttp](docs/aiohttp.md) |
18+
| WebOb (Pyramid, TurboGears) | [webob](docs/webob.md) |
1919

2020
## Other integrations built with GraphQL-Server
2121

22-
| Server integration | Package |
23-
| WSGI | [wsgi-graphql](https://github.com/moritzmhmk/wsgi-graphql) |
24-
| Responder | [responder.ext.graphql](https://github.com/kennethreitz/responder/blob/master/responder/ext/graphql.py) |
22+
| Server integration | Package |
23+
| ------------------ | ------------------------------------------------------------------------------------------------------- |
24+
| WSGI | [wsgi-graphql](https://github.com/moritzmhmk/wsgi-graphql) |
25+
| Responder | [responder.ext.graphql](https://github.com/kennethreitz/responder/blob/master/responder/ext/graphql.py) |
2526

2627
## Other integrations using GraphQL-Core or Graphene
2728

28-
| Server integration | Package |
29-
|---|---|
30-
| Django | [graphene-django](https://github.com/graphql-python/graphene-django/) |
29+
| Server integration | Package |
30+
| ------------------ | --------------------------------------------------------------------- |
31+
| Django | [graphene-django](https://github.com/graphql-python/graphene-django/) |
3132

3233
## Documentation
3334

3435
The `graphql_server` package provides these public helper functions:
3536

36-
* `run_http_query`
37-
* `encode_execution_results`
38-
* `load_json_body`
39-
* `json_encode`
40-
* `json_encode_pretty`
37+
- `run_http_query`
38+
- `encode_execution_results`
39+
- `load_json_body`
40+
- `json_encode`
41+
- `json_encode_pretty`
4142

4243
**NOTE:** the `json_encode_pretty` is kept as backward compatibility change as it uses `json_encode` with `pretty` parameter set to `True`.
4344

@@ -50,4 +51,5 @@ blueprint to build your own integration or GraphQL server implementations.
5051
Please let us know when you have built something new, so we can list it here.
5152

5253
## Contributing
54+
5355
See [CONTRIBUTING.md](CONTRIBUTING.md)

docs/_static/graphql-server-logo.svg

+1
Loading

0 commit comments

Comments
 (0)