用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - python代码库

python网络数据采集9 wikiHistoryEditPageIPs

2016-07-11 作者: ME80举报

[python]代码库

from urllib.request import urlopen
from bs4 import BeautifulSoup
from urllib.error import HTTPError
import datetime
import random
import json
import re

random.seed(datetime.datetime.now())
def getLinks(articleUrl):
    html = urlopen("https://en.wikipedia.org"+articleUrl) # 某个关键词页面
    bsObj = BeautifulSoup(html,'html.parser')
    internalSites = bsObj.find("div", {"id":"bodyContent"}).findAll("a",href=re.compile("^(/wiki/)((?!:).)*$")) # 找到所有href为/wiki/开头的a标签
    return internalSites

def getHistoryIPs(pageUrl):
    # 编辑历史页面URL链接格式是
    # http://en.wikipedia.org/w/index.php?title=Title_in_URL&action=history
    pageUrl = pageUrl.replace("/wiki/","")
    historyUrl = "http://en.wikipedia.org/w/index.php?title="+pageUrl+"&action=history"
    print("history url is: " + historyUrl)
    html = urlopen(historyUrl)
    bsObj = BeautifulSoup(html,'html.parser')
    # 找出class属性是"mw-anonuserlink"的链接
    # 它们用IP地址代替用户名
    ipAddresses = bsObj.findAll('a',{'class':'mw-userlink mw-anonuserlink'}) # 找到编辑页面里的所有提交修改过的作者ip
    addressList = set()
    for ipAddress in ipAddresses:
        addressList.add(ipAddress.attrs['href'].split('/')[-1]) # 取出a标签里的href里的ip
    return addressList

def getCountry(ipAddress):
    try:
        response = urlopen("http://freegeoip.net/json/"+ipAddress).read().decode('utf-8')
    except HTTPError as e:
        return None
    responseJson = json.loads(response)
    return responseJson.get("country_code")

links = getLinks("/wiki/Python")

while(len(links) > 0):
    for link in links:
        print('-----------')
        historyIPs = getHistoryIPs(link.attrs['href']) #某个编辑页面的所有ip
        for historyIP in historyIPs:
            country = getCountry(historyIP)
            if country is not None:
                print(historyIP+" is from "+country)
    newlink = links[random.randint(0,len(links)-1).attrs("href")] # 随机取一个关键词页面作为新页面
    links = getLinks(newlink) # 递归,从新的关键词页面重新获取/wiki/开头的链接

[代码运行效果截图]


python网络数据采集9 wikiHistoryEditPageIPs


网友评论    (发表评论)

共1 条评论 1/1页

发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...