亲宝软件园·资讯

展开

python使用BeautifulSoup分页网页中超链接 python使用BeautifulSoup分页网页中超链接的方法

令狐不聪 人气:0
想了解python使用BeautifulSoup分页网页中超链接的方法的相关内容吗,令狐不聪在本文为您仔细讲解python使用BeautifulSoup分页网页中超链接的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:python,BeautifulSoup,分页,网页,链接,下面大家一起来学习吧。

本文实例讲述了python使用BeautifulSoup分页网页中超链接的方法。分享给大家供大家参考。具体如下:

python通过BeautifulSoup分页网页中的超级链接,这段python代码输出www.qb5200.com主页上所有包含了jb51的url链接

from BeautifulSoup import BeautifulSoup
import urllib2
import re
url = urllib2.urlopen("//www.qb5200.com")
content = url.read()
soup = BeautifulSoup(content)
for a in soup.findAll('a',href=True):
  if re.findall('sharejs', a['href']):
    print "Found the URL:", a['href']

希望本文所述对大家的Python程序设计有所帮助。

加载全部内容

相关教程
猜你喜欢
用户评论