python提取url

发布时间:2019-08-18 13:02:19编辑:auto阅读(1315)

    import urllib2
    str1='<a title="xxxx" target="_blank" href="http://xxxx.html">xxxx</a>'
    href=str1.find(r'href')
    url=str1.find(r'.html')

    html = str1[href+6:url+5]
    content = urllib2.urlopen(html).read()
    print content


关键字

上一篇: python语言基础

下一篇: Python yield用法