Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 552 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 552 Bytes

AioCentralBankRuApi

How to install:

git clone https://github.com/dark0ghost/AioCentralBankRuApi.git

dep

python>=3.7 aiohttp>=3.6

How to use bot:

      import aiohttp
      import AioCentralBankRuApi
 
      async def start() -> None:
         session: aiohttp.ClientSession = aiohttp.ClientSession()
         cb: AioCentralBankRuApi = AioCentralBankRuApi(session)
         coin: Dict[str,Dict[str,str]] = await  cb.build_list_coin()
         print(coin)
         print( coin["EUR"])
         await session.close()