python 尋找關鍵詞在百度的排名

來源:互聯網
上載者:User

 前段時間為了尋找自己的老王python的關鍵詞排名怎麼樣,特意用python寫了一個尋找網頁關鍵詞排名的程式,感覺效果還不錯。特別是尋找關鍵詞排名靠後的網頁來說非常的方便,不用自己手動的去一個個的翻頁,廢話不說了,趕快上代碼。

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#@author:wl
#@qq:280026798@qq.com
#@description:檢測給定的關鍵字在百度上的排名

import sys
import urllib ,urllib2
import re

def baidu(w,pn):
    '''返回當前頁的內容'''
    url= "http://www.baidu.com/s?"
    values = {
    "w":w.encode('gbk','ignore'),
    "pn":pn
    }
    data = urllib.urlencode(values)
    newurl = url + data
    response = urllib2.urlopen(newurl)
    the_page = response.read()
    return the_page

def ana(data,mysite,pn):
    '''檢測關鍵字的位置'''
    o = re.compile(r'href="(.+?)"')
    f = o.findall(data)
    line = pn
    for ff in f:
        ff = ff.strip() 
        if not re.search("^s\?",ff) and re.search("^http:\/\/",ff) and not re.search('baidu.com',ff):
            if re.search(mysite,ff):
                print "* " ,line ,ff
                return True
            else:
                print line,ff
                line = line + 1
                continue
        
   
if __name__ == "__main__":
    mysite = sys.argv[2]
    pn = 1
    while True:
        keyword = sys.argv[1].decode('gbk')
        data = baidu(keyword,pn)
        checkflag = ana(data,mysite,pn)
        if not checkflag:
            pn = pn + 10
            print "page %s" % str(int(pn)/10)
        else:
            print 'found:%s' % (mysite)
            break
    else:
        print 'not found:%s' % (mysite) 用法: 先儲存成python檔案,然後要啟動並執行話,可以按照下面的步驟。 python xxx.py 關鍵詞 網址 就可以查出關鍵詞在百度搜尋列表的具體位置了。 

文章連結:http://www.cnpythoner.com/post/webkeyword.html 轉載請保留,謝謝!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.