wordpress批量发布文章 python_python自动发布文章到wordpress

解决思路

1,利用post向wordpress提交表单

2,通过wordpress_xmlrpc模块,有轮子不用想干啥

3,通过mysqldb直接插入数据库,有服务器、不需远程,直接把py脚本放在服务器跑

我们这次要用轮子拼一台摩托车!,宝马、、自己动手吧

开始动手:需自行安装的模块requests,xmlrpc;windows系统、linux安装如下,土豪随意:

pip install requests

pip install python-wordpress-xmlrpc

caiji.py

#encoding=utf-8

'''练手可以找wp博客来采集,这个脚本就是针对wp博客来做下手采集的'''

import re,requests,time,random,urllib,threading,threadpool

from wordpress_xmlrpc import Client, WordPressPost

from wordpress_xmlrpc.methods.posts import GetPosts, NewPost

'''登录'''

try:

wp=Client('https://www.example.com/xmlrpc.php','wp的账号','wp的密码')

except Exception, e:

wp=Client('https://www.example.com/xmlrpc.php','wp的账号','wp的密码')

post=WordPressPost()

'''针对单站url重复采集问题'''

f=open('url.txt','a+')

urls=f.read()

url_list=[m.strip() for m in open('url.txt').readlines()]

daili_list=[]

'''过滤html标签'''

def filter_tags(htmlstr):

re_cdata=re.compile('//]*//\]\]>',re.I) #匹配CDATA

re_script=re.compile(']*>[^',re.I)#Script

re_style=re.compile(']*>[^',re.I)#style re_br=re.compile('
')#处理换行

re_br=re.compile('
')

re_h=re.compile('?\w+[^>]*>')#HTML标签

re_comment=re.compile('')#HTML注释

s=re_cdata.sub('',htmlstr)#去掉CDATA

s=re_script.sub('',s) #去掉SCRIPT

s=re_style.sub('',s)#去掉style

s=re_br.sub('\n',s)#将br转换为换行

s=re_h.sub('',s) #去掉HTML 标签

s=re_comment.sub('',s)#去掉HTML注释

blank_line=re.compile('\n+')#去掉多余的空行

s=blank_line.sub('\n',s)

return s

'''轮换user-agent'''

def getUA():

uaList = [

'Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+TencentTraveler)',

'Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+2.0.50727;+.NET+CLR+3.0.4506.2152;+.NET+CLR+3.5.30729)',

'Mozilla/5.0+(Windows+NT+5.1)+AppleWebKit/537.1+(KHTML,+like+Gecko)+Chrome/21.0.1180.89+Safari/537.1',

'Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1)',

'Mozilla/5.0+(Windows+NT+6.1;+rv:11.0)+Gecko/20100101+Firefox/11.0',

'Mozilla/4.0+(compatible;+MSIE+8.0;+Windows+NT+5.1;+Trident/4.0;+SV1)',

'Mozilla/4.0+(compatible;+MSIE+8.0;+Windows+NT+5.1;+Trident/4.0;+GTB7.1;+.NET+CLR+2.0.50727)',

'Mozilla/4.0+(compatible;+MSIE+8.0;+Windows+NT+5.1;+Trident/4.0;+KB974489)',

'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36',

'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36',

]

ua = random.choice(uaList)

return ua

'''提取正则'''

def search(re_url,html):

re_Data=re.findall(re_url,html)

if re_Data:

return re_Data[0]

else:

return 'no'

'''轮换ip'''

def ip():

for x in open('daili.txt'):

x = x.strip()

daili_list.append(x)

newip = random.choice(daili_list)

return newip

'''获取html'''

def gethtml(url,headers):

while 1:

try:

newip=ip()

proxies={"http":"https://%s"%newip.strip()}

pages=requests.post(url,headers,proxies,timeout=10)

html=pages.content

code=pages.status_code

if '404' '302 Found' in html or code != 200 in html:

print u'代理失效重试'

continue

elif 'verify' in html:

print u'出验证码,重试'

continue

else:

return html

except Exception, e:

# print e

continue

'''正则用以提取列表页上的url,需根据实际情况来调整'''

re_url=re.compile(r'

'''正则用以提取内页上的title和正文内容content,当然也可以使用readability模块,正则需根据实际情况做修改'''

re_title_content=re.compile(r'

(.*?)

[\s\S]*?
([\s\S]*?)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值