Skip to content

ape364/aiobinance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aiobinance

PyPi License Build Coveralls Versions

Binance.com REST API async Python non-official wrapper. Tested only with Python 3.7. Alpha stage.

Features

API modules

Supports all API modules:

Installation

pip install -U aiobinance

Usage

Register 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())

About

Binance API async Python wrapper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages