Metadata-Version: 2.1
Name: aiocoingecko
Version: 0.1.0
Summary: Asynchronous Python wrapper for the CoinGecko API
Home-page: https://github.com/regulad/aiocoingecko
Author: regulad
Author-email: regulad@outlook.com
License: MIT
Download-URL: https://codeload.github.com/regulad/aiocoingecko/zip/refs/heads/main
Keywords: async,api
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Asynchronous CoinGecko API wrapper
[![PyPi Version](https://img.shields.io/pypi/v/pycoingecko.svg)](https://pypi.python.org/pypi/pycoingecko/)
![GitHub](https://img.shields.io/github/license/man-c/pycoingecko)

Python3 wrapper around the [CoinGecko](https://www.coingecko.com/) API (V3)

Features 100% API implementation and full Pythonic documentation.

### Installation

PyPI
```bash
pip install aiocoingecko
```

### Usage

```python
import asyncio

from aiocoingecko import AsyncCoinGeckoAPISession


async def main():
    async with AsyncCoinGeckoAPISession() as cg:
        print(await cg.ping())

        
asyncio.run(main())
```


