1. Write telegram bot for searching information from csv, json and txt files on computer
import json import pandas as pd import telebot token = '1022395794:AAH5pZjKxJXO7ihQYr5q3B3-kK5h5kcjU0I' bot = telebot.TeleBot(token) @bot.message_handler(commands=['start', 'help']) def send_welcome(message): bot.reply_to(message, "Howdy, how are you doing?") @bot.message_handler(func=lambda message: True) def echo_all(message): bot.reply_to(message, message.text) bot.polling()