Binance.com REST API async Python non-official wrapper. Tested only with Python 3.7. Alpha stage.
Supports all API modules:
pip install -U aiobinanceRegister Binance.com account and create free API key.
import asyncio
from aiobinance import Client
async def main():
c = Client('apikey', 'apisecret')
try:
print(await c.account.info())
print(await c.general.exchange_info())
finally:
await c.close()
if __name__ == '__main__':
asyncio.run(main())