Beispiel #1
0
async def create_binance_bot(user: str, config: str):
    from binance import BinanceBot
    bot = BinanceBot(user, config)
    await bot._init()
    return bot
Beispiel #2
0
async def create_binance_bot(config: dict):
    from binance import BinanceBot

    bot = BinanceBot(config)
    await bot._init()
    return bot