欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python3实现的腾讯微博自动发帖小工具

程序员文章站 2022-04-06 14:53:37
复制代码 代码如下:# -*- coding: utf-8 -*-import mysql.connector as dbimport client.tweiboimpor...

复制代码 代码如下:

# -*- coding: utf-8 -*-
import mysql.connector as db
import client.tweibo
import time

if __name__ == '__main__':
 connect = db.connect(user='root',db='collection',password='',host="127.0.0.1")
 cursor = connect.cursor()
 cursor.execute("set sql_mode = 'traditional'")
 uin = 'qq号'
 passwd = '密码'
 wb = client.tweibo.tweibo(uin, passwd)
 wb.login()
 sqlselecttwitter = "select `content`,`pic` from `collection`.`weibo_content2` order by `id` desc  limit 0, 144"
 cursor.execute(sqlselecttwitter)
 for (content, pic) in cursor:
  result = wb.publish(content, pic)
  print(result)
  print("暂停10分钟......")
  time.sleep(600)
 cursor.close()
 connect.close()