phpsir 开发 一个检测百度关键字网站排名的python 程序

走过山头,坐在夕阳勾勒的黄昏里,吹一缕向晚的凉风,听树叶婆娑着沙沙的声响。望着天边绯红的落日渐渐西沉,透过头顶的树隙,仍有一抹余温爬上微热的脸庞。
源码如下 :保存成utf-8 bd.py 文件

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import urllib ,urllib2
import re
def baidu(w):
url= "http://www.baidu.com/s?"
values = {
"w":w.encode('gbk','ignore')
}
data = urllib.urlencode(values)
newurl = url + data
response = urllib2.urlopen(newurl)
the_page = response.read().decode('gbk','ignore')
return the_page def ana(data,mysite):
o = re.compile("rel="nofollow noopener noreferrer" href=\"(.+?)\"")
f = o.findall(data)
line = 1
for ff in f:
if not re.search("baidu",ff) and not re.search("^s\?",ff) and re.search("^http:\/\/",ff):
if re.search(mysite,ff):
print "* " ,line ,ff
else:
print line ,ff
line += 1 if __name__ == "__main__":
mysite = sys.argv[2]
data = baidu(sys.argv[1].decode('utf-8'))
ana(data,mysite)

用法 python bd.py "关键字" 我的域名部分 :
例:

python bd.py "vbs" "haodaima.com"

以上就是phpsir 开发 一个检测百度关键字网站排名的python 程序。不要憎恨过去,没有它,你无法成为如今这么坚强的人。更多关于phpsir 开发 一个检测百度关键字网站排名的python 程序请关注haodaima.com其它相关文章!

标签: 网站排名 phpsir