高粱seo自己写的三级代理系统以及快排系统,之前都是使用宝塔或者百度BCM进行触发查询排名,存在一些问题,特别是效率问题,为了彻底解决问题,高粱seo就自己写了一个使用python做的一段脚本,能够配合php查询路径,进行触发查询,极大的提高了查询效率。以下是代码
# encoding:utf-8
import requests
import time
count=0
while count<=1:
try:
print("正在执行快排查询...")
kuaipai = requests.get('http://localhost/')需要触发的路径
s=kuaipai.content
if "误" in s.decode():
print("查询出错跳过,继续执行中....")
elif "no" in s.decode():
print("今天快排关键词已经查询完毕")
else:
print(s.decode())
except Exception as e:
continue
try:
print("正在执行下拉词查询...")
xiala = requests.get('http://localhost/')//需要触发的路径
x=xiala.content
if "误" in x.decode():
print("查询出错跳过,继续执行中....")
elif "no" in x.decode():
print("今天下拉关键词已经查询完毕")
else:
print(x.decode())
except Exception as e:
continue
文章标签:
python
文章来源于网络,如若侵权,请联系作者删除,谢谢!
转载请注明来自于网址:http://sdzbquansheng.com/biji/67.html