https://github.com/syfun/async-dataloader
Asyncio Dataloader for GraphQL.
https://github.com/syfun/async-dataloader
asyncio dataloader graphql python
Last synced: 4 months ago
JSON representation
Asyncio Dataloader for GraphQL.
- Host: GitHub
- URL: https://github.com/syfun/async-dataloader
- Owner: syfun
- Created: 2020-05-17T08:09:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-30T07:11:40.000Z (almost 3 years ago)
- Last Synced: 2025-09-30T03:15:31.665Z (9 months ago)
- Topics: asyncio, dataloader, graphql, python
- Language: Python
- Size: 35.2 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Async DataLoader
Async DataLoader is a python port of [DataLoader](https://github.com/graphql/dataloader).
DataLoader is a generic utility to be used as part of your application's data fetching layer to provide a simplified and consistent API over various remote data sources such as databases or web services via batching and caching.
## Requirement
Python 3.7+
## Installation
`pip install async-dataloader`
## Example
Please see this graphql [example](https://github.com/syfun/async-dataloader/tree/master/examples/post_tags.py).