微博个人账户备份,可以保存这些内容:
- 文本
- 赞、转发、评论
- 日期、来自
- 图片、视频
直接运行 scripts
文件夹下的脚本。
Powershell:
$env:WEIBO_USERNAME = [USERNAME]; $env:PASSWORD = [PASSWORD]; python3 weibo_bot.py
Bash:
WEIBO_USERNAME='[USERNAME]' WEIBO_PASSWORD='[PASSWORD]' python3 weibo_bot.py
通过 pip 安装:pip install weibo-harbor
- Python 3.7 and up
- chromedriver
使用 python setup-tools 安装和运行.
$ python3 -m venv env
$ python3 -m pip install -r requirements.txt
$ python3 setup.py install
$ env/bin/harbor
Powershell:
$env:WEIBO_USERNAME = [USERNAME]; $env:WEIBO_PASSWORD = [PASSWORD]; harbor
Bash:
WEIBO_USERNAME='[USERNAME]' WEIBO_PASSWORD='[PASSWORD]' harbor
python3 -m venv env
. env/bin/activate
pip install -e .
python3 setup.py nosetests
更新了 setup.py
中的依赖后,请运行 pip-compile
来刷新 requirements.txt
文件.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.