Metadata-Version: 2.1
Name: async-dataloader
Version: 0.0.1
Summary: Asyncio Dataloader for GraphQL.
Home-page: https://github.com/syfun/async-dataloader
License: MIT
Author: syfun
Author-email: sunyu418@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: typing_extensions (>=3.7.4,<4.0.0); python_version < "3.8"
Description-Content-Type: text/markdown

# 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).


