首页 > 编程语言 > 详细

用 Python 自动定时发微博

时间:2020-01-17 23:21:56      阅读:64      评论:0      收藏:0      [点我收藏+]

虽然微博官方有Python SDK,但是下载链接竟然失效了??,再Pypi找到一个库——weibo.

安装weibo库

pip install weibo 报错 “ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output”

技术分享图片

 查看报错的行数,刚好是我昨天遇到的一个问题,打开文件时没有指定编码方式,使用的默认为gbk编码,而源码中出现了gbk无法编码的字符。

解决方法也很简单,下载压缩包,解压,在报错位置添加 encoding=‘utf-8‘

再压缩,使用 pip install weibo-0.2.2.zip 安装。

获取access_token

需要先创建应用:微连接-->移动应用-->立即接入,

填写基本信息,能得到App Key和App Secret即可。

 

 

 

 

 

参考链接:

1. Python报错ERROR: Command errored out with exit status 1

2. 

用 Python 自动定时发微博

原文:https://www.cnblogs.com/lfri/p/12207767.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!