文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>urllib 应用

urllib 应用

时间:2010-01-24  来源:angelia_liu

该程序通过获取页面的源码,从源码中读取数字来组成下一个链接的URL。


import os
import sys
import urllib
import re

def getsrc(url):
    src=urllib.urlopen(url).read() # Get the page source of the page.
    num=re.search('[\d]\d+',src) # search the digit from the page source.
    if not num: # if cant find digits from the page source,
        print src #then print the source and return the Excepion.
        return num.group(1)
    else:
        return num.group(0) # Return the digits.

if __name__=='__main__':
    url='http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345'
    for n in range(400):
        print n
        num=getsrc(url)
        url='http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing='+str(num) # use the return value(num) to create the next url.
    print num


相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载