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