提取网页的所有CSS链接

时间:2018-08-19 06:07:30

标签: python

这是通过传递网站的URL提取网站的所有href链接的代码。

import urllib2
import re
html_page = urllib2.urlopen("http://kteq.in/services")
soup = BeautifulSoup(html_page)
for link in soup.findAll('a'):
    if link.get('href')==None:
        continue
    result = re.sub(r"http\S+", "", link.get('href'))
    print result

现在,我只需要提取CSS链接(即特定网站的css链接),我一直在尝试许多不同的编码,但无法获得输出。请给我建议。预先感谢。

0 个答案:

没有答案