通过python向telegram bot发送mysql数据

dzhpxtsq  于 2021-06-20  发布在  Mysql
关注(0)|答案(2)|浏览(407)

我有一个问题,如何从mysql检索数据并通过python发布到telegrambot。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地址。请帮忙。

2ekbmq32

2ekbmq321#

execute方法返回一个迭代器,而不是您要查找的结果。
请尝试以下操作:

elif command == '/sessions':
    cur.execute('SELECT ip FROM sessions')
    for result in cur.fetchall():
        bot.sendMessage(chat_id, result [0])
ebdffaop

ebdffaop2#

非常感谢你的帮助。菲利普斯。。它可以工作,我可以从mysql检索数据。最后给出了ip地址的计算结果。
如果你能再帮我一次,如何让mysql数据库在数据插入数据库时自动(触发)将结果发送到电报。

相关问题