aiocoingecko

Asynchronous Python wrapper for the CoinGecko API


Keywords
async, api
License
MIT
Install
pip install aiocoingecko==1.0.0

Documentation

Asynchronous CoinGecko API wrapper

PyPi Version

Python3 wrapper around the CoinGecko API (V3)

Features 100% API implementation and full Pythonic documentation.

Installation

PyPI

pip install aiocoingecko

Usage

import asyncio

from aiocoingecko import AsyncCoinGeckoAPISession


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

        
asyncio.run(main())