文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>curl & python 更新新浪微博

curl & python 更新新浪微博

时间:2010-10-12  来源:酷酷的小鱼儿

利用curl 登录、更新新浪微博,用python包装为一个函数了。

def main(user, pwd, message):
   try:
       cmd = 'curl -k -c sina.txt "https://login.sina.com.cn/sso/login.php?username=%s&password=%s&returntype=TEXT"' % (user, pwd)

       os.system( cmd) 
       cmd = 'curl -e "http://t.sina.com.cn/" -b sina.txt -d "content=%s" "http://t.sina.com.cn/mblog/publish.php" ' % message
       os.system(cmd)
       os.system('rm sina.txt')
       print '\nsend msg ok\n'
   except Exception, e:
       print e

 

整理自:http://isouth.org/archives/277.html

相关阅读 更多 +
排行榜 更多 +
易欧交易所app免费版

易欧交易所app免费版

金融理财 下载
永远的蔚蓝星球手游下载

永远的蔚蓝星球手游下载

角色扮演 下载
我的恐龙学校

我的恐龙学校

模拟经营 下载