我有问题,如何从Mysql检索数据并通过Python发布到Telegram Bot。 Mysql可以连接到Python并在Python终端中显示数据,但在电报中,它仅显示行数。
import time
import random
import datetime
import telepot
import MySQLdb
from telepot.loop import MessageLoop
db = MySQLdb.connect(host="127.0.0.1", # localhost
user="cowrie", # username
passwd="12345678", # password
db="cowrie") # name of the data base
cur = db.cursor()
def handle(msg):
chat_id = msg['chat']['id']
command = msg['text']
print 'Command received: %s' % command
if command == '/about':
bot.sendMessage(chat_id, 'Hi, I\'m netrapsystembot')
elif command == '/random':
bot.sendMessage(chat_id, random.randint(0,9))
elif command == '/time':
bot.sendMessage(chat_id, str(datetime.datetime.now()))
elif command == '/sessions':
bot.sendMessage(chat_id, cur.execute('SELECT ip FROM sessions'))
for result in cur.fetchall():
print result [0]
bot = telepot.Bot('617662632:AAEGW74VAvZcjEpVCkiye8KLcv2xmSkt0L4')
MessageLoop(bot, handle).run_as_thread()
print 'Bot ready!'
while 1:
time.sleep(10)
Python终端显示mysql的IP:
但是电报仅显示行数:
我要检索的数据是位于表会话中的IP地址。请帮忙。
答案 0 :(得分:2)
execute方法返回一个迭代器,而不是您要寻找的结果。
尝试以下操作:
elif command == '/sessions':
cur.execute('SELECT ip FROM sessions')
for result in cur.fetchall():
bot.sendMessage(chat_id, result [0])
答案 1 :(得分:0)
非常感谢您的帮助。S. Phillips ..它有效,我可以从mysql检索数据。最终显示IP地址的结果。
如果您能再帮我一次,当数据插入数据库时,如何使MySQL数据库自动将结果发送(触发)给电报。