跳到主要内容

「百度链接推送」Python脚本推送链接到百度搜索资源平台

· 阅读需 1 分钟
猿1993👨🏻‍💻
一个后端打酱油程序猿~

首先注册 「百度搜索资源平台」 创建站点后,得到类似如下的 api 链接:

http://data.zz.baidu.com/urls?site=https://blog.lichenghao.cn&token=xxxx

安装 Python 环境,百度 or lichlaughing的语雀-搭建 python3.x 环境

编写脚本 push-to-baidu.py

import feedparser
import requests

# 需要修改
push_url = 'http://data.zz.baidu.com/urls?site=https://blog.lichenghao.cn&token=xxxx'
headers = {
"Host": "data.zz.baidu.com",
"Content-Length": "83"
}
page_list = []
# rss 地址。或者自己整理地址
d = feedparser.parse('https://blog.lichenghao.cn/atom.xml')
for key in d.entries:
page_list.append(key.link)

post_data = '\n'.join(page_list)
response = requests.post(push_url, headers=headers, data=post_data)
print(response.text)

需要在服务器上提前安装依赖

pip3 install feedparser
pip3 install requests

将脚本上传到服务器的某个位置,配合宝塔使用,更丝滑

正常的执行结果

{"remain":2920,"success":20}
文章标题:「百度链接推送」Python脚本推送链接到百度搜索资源平台
版权声明:内容遵守
许可协议。转载请注明出处!
侵权提示:部分信息可能来源于网络。如发现有侵权,请随时联系删除!

相关推荐

2024-10-31|狼蛛SC580鼠标驱动[24年9月5号版本]#软件工具#鼠标

随机推荐


随机标签


神评论

如需图片可上传至免费图床后,使用图片外链即可。SM.MS