def derive(update: Update, context: CallbackContext): args = context.args message = update.effective_message message.reply_text(newton.derive('{}'.format(args[0])))
def derive(bot: Bot, update: Update, args: List[str]): message = update.effective_message message.reply_text(newton.derive('{}'.format(args[0])))
def derive(update, context): args = context.args args = str(args) message = update.effective_message message.reply_text(newton.derive('{}'.format(args[0])))
def derive(update: Update, context: CallbackContext): args = context.args message = update.effective_message message.reply_text(newton.derive(f"{args[0]}"))
def derive(update, context: List[str]): args = context.args message = update.effective_message message.reply_text(newton.derive('{}'.format(args[0])))
def main(client, message): x = message.text.split(' ')[1] client.send_message(message.chat.id, newton.derive(x) + "thats okk")