使用模块PyTypecho
使用此模块在配合requests,BeautifulSoup就可以写出自动采集发布脚本了
from pytypecho import Typecho,Attachment,Post
pageContent = {
}
pageContent["title"] = '标题'
pageContent["content"] = '内容'
wp = Typecho("https://www.529i.com/action/xmlrpc", "帐号", "密码")
post = Post(title=pageContent["title"],description=pageContent["content"])
post.title = pageContent["title"]
post.content = pageContent["content"]
post.categories = ['采集'] #分类
post.terms_names = {
'category': ['采集'] # 文章所属分类,没有则自动创建
}
#print(post)
wp.new_post(post,publish=True)
4 条评论
请问这个模块支持代理访问么
这个只是发布模块代理需要用代理模块
PyTypecho这个链接打不啊
我这里没问题请自行检查网络或者配备梯子