python爬虫 python采集联想词

发布时间:2020-01-19编辑:脚本学堂
本文分享一例python代码,用于实现python爬虫,python采集联想词,有需要的朋友参考学习下。

本节内容:
python爬虫程序,采集联想词。

例子:
 

复制代码 代码示例:

#!/usr/bin/python
#
#site: www.jb200.com
#coding:utf-8
"""
常用模块和第三方库,urllib2怎么使用、http拦截、get模拟、代理访问等知识点。
"""
import urllib2
import urllib
import re
import time
from random import choice
#下面这个list中的代理ip可能失效,请换上有效的代理ip
iplist  = ['27.24.158.153:81','46.209.70.74:8080','60.29.255.88:8888']

list1 = ["集团","科技"]
for item in list1:
    ip= choice(iplist)
    gjc = urllib.quote(item)
    url = "http://sug.so.360.cn/suggest/word?callback=suggest_so&encodein=utf-8&encodeout=utf-8&word="+gjc
    headers = {
                "GET":url,
                "Host":"sug.so.360.cn",
                "Referer":"http://www.so.com/",
                "User-Agent":"sMozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.56 Safari/537.17",
                }

    proxy_support = urllib2.ProxyHandler({'http':'http://'+ip})

    opener = urllib2.build_opener(proxy_support)
    urllib2.install_opener( opener )
    req = urllib2.Request(url)
   
    for key in headers:
        req.add_header(key,headers[key])

    html = urllib2.urlopen(req).read()
   
    ss = re.findall(""(.*?)"",html)
    for item in ss:
        print item
    time.sleep(2)

您可能感兴趣的文章:
Python web爬虫的小例子
python 网络爬虫(经典实用型)
Python 网易新闻小爬虫的实现代码
python网络爬虫的代码
python 实现从百度开始不断搜索的爬虫
python编写分布式爬虫的思路
Python实现天气预报采集器(网页爬虫)的教程