Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/doctorjohn/aiogqlc

Python aynchronous/IO GraphQL client with file upload and subscription support.
https://github.com/doctorjohn/aiogqlc

aiohttp aiohttp-client asyncio graphql graphql-client graphql-library graphql-subscriptions graphql-ws python python3

Last synced: 5 days ago
JSON representation

Python aynchronous/IO GraphQL client with file upload and subscription support.

Awesome Lists containing this project

README

        

# Asynchronous/IO GraphQL client

[![Versions][versions-image]][versions-url]
[![PyPI][pypi-image]][pypi-url]
[![Downloads][downloads-image]][downloads-url]
[![Codecov][codecov-image]][codecov-url]
[![License][license-image]][license-url]

[versions-image]: https://img.shields.io/pypi/pyversions/aiogqlc
[versions-url]: https://github.com/DoctorJohn/aiogqlc/blob/main/pyproject.toml
[pypi-image]: https://img.shields.io/pypi/v/aiogqlc
[pypi-url]: https://pypi.org/project/aiogqlc/
[downloads-image]: https://img.shields.io/pypi/dm/aiogqlc
[downloads-url]: https://pypi.org/project/aiogqlc/
[codecov-image]: https://codecov.io/gh/DoctorJohn/aiogqlc/branch/main/graph/badge.svg
[codecov-url]: https://codecov.io/gh/DoctorJohn/aiogqlc
[license-image]: https://img.shields.io/pypi/l/aiogqlc
[license-url]: https://github.com/DoctorJohn/aiogqlc/blob/main/LICENSE

A Python asynchronous/IO GraphQL client based on [aiohttp][aiohttp-url].

In addition to standard HTTP POST `queries` and `mutations` this client fully supports
the [GraphQL multipart form requests spec][multipart-specs-url] for file uploads
and the [graphql-ws subprotocol][graphql-ws-url] for WebSocket based `subscriptions`.

**[Read the documentation][docs-url]**

## Installation

```sh
pip install aiogqlc
```

## Basic usage

Check the [documentation][docs-url] for detailed and more advanced usage examples.

### Queries

```python
import asyncio
import aiohttp
from aiogqlc import GraphQLClient

ENDPOINT = "https://swapi-graphql.netlify.app/.netlify/functions/index"

document = """
query {
allFilms {
films {
title
}
}
}
"""

async def main():
async with aiohttp.ClientSession() as session:
client = GraphQLClient(ENDPOINT, session=session)
response = await client.execute(document)
print(await response.json())

if __name__ == "__main__":
asyncio.run(main())
```

### Mutations

```python
import aiohttp
from aiogqlc import GraphQLClient

document = """
mutation ($userId: ID!) {
deleteUser (id: $userId) {
id
}
}
"""

variables = {
"userId": "42",
}

async def main():
async with aiohttp.ClientSession() as session:
client = GraphQLClient("https://example.com/graphql/", session=session)
response = await client.execute(document, variables=variables)
print(await response.json())
```

### File uploads

```python
import aiohttp
from aiogqlc import GraphQLClient

document = """
mutation($file: Upload!) {
uploadFile(file: $file) {
size
}
}
"""

variables = {
"file": open("test.txt", "rb")
}

async def foo():
async with aiohttp.ClientSession() as session:
client = GraphQLClient("https://example.com/graphql/", session=session)
response = await client.execute(document, variables=variables)
print(await response.json())

```

### Subscriptions

```python
import aiohttp
from aiogqlc import GraphQLClient

document = """
subscription($postId: ID!) {
likeAdded(postId: $postId)
}
"""

variables = {
"postId": "42"
}

async def main():
async with aiohttp.ClientSession() as session:
client = GraphQLClient("https://example.com/graphql/", session=session)

async with client.connect() as connection:
async for payload in connection.subscribe(document, variables=variables):
print(payload)
```

## [Documentation][docs-url]

[Read the documentation][docs-url] to learn more about queries, mutations, subscriptions, file uploads and even authentication.

[aiohttp-url]: https://github.com/aio-libs/aiohttp
[multipart-specs-url]: https://github.com/jaydenseric/graphql-multipart-request-spec
[graphql-ws-url]: https://github.com/apollographql/subscriptions-transport-ws
[docs-url]: https://doctorjohn.github.io/aiogqlc/