Home  >  Article  >  Backend Development  >  Python3实现的腾讯微博自动发帖小工具

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

WBOY
WBOYOriginal
2016-06-06 11:28:301636browse

代码如下:


# -*- 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()

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn