10

我正在编写一个 python 脚本,它将在从网页解析后提取脚本位置。假设有两种情况:

<script type="text/javascript" src="http://example.com/something.js"></script>

<script>some JS</script>

我能够从第二种情况中获取 JS,即当 JS 写入标签时。

但是有什么办法,我可以从第一个场景中获取 src 的值(即提取脚本中 src 标记的所有值,例如http://example.com/something.js

这是我的代码

#!/usr/bin/python

import requests 
from bs4 import BeautifulSoup

r  = requests.get("http://rediff.com/")
data = r.text
soup = BeautifulSoup(data)
for n in soup.find_all('script'):
    print n 

输出:一些 JS

需要输出http ://example.com/something.js

4

3 回答 3

26

src只有当它们存在时,它才会获取所有值。否则它会跳过那个<script>标签

from bs4 import BeautifulSoup
import urllib2
url="http://rediff.com/"
page=urllib2.urlopen(url)
soup = BeautifulSoup(page.read())
sources=soup.findAll('script',{"src":True})
for source in sources:
 print source['src']

结果我得到以下两个 src

http://imworld.rediff.com/worldrediff/js_2_5/ws-global_hm_1.js
http://im.rediff.com/uim/common/realmedia_banner_1_5.js

我想这就是你想要的。希望这是有用的。

于 2013-09-11T09:42:26.077 回答
5

从脚本节点获取“src”。

import requests 
from bs4 import BeautifulSoup

r  = requests.get("http://rediff.com/")
data = r.text
soup = BeautifulSoup(data)
for n in soup.find_all('script'):
    print "src:", n.get('src') <==== 
于 2013-09-11T05:16:37.650 回答
1

这应该可以,您只需过滤以查找所有脚本标签,然后确定它们是否具有“src”属性。如果他们这样做,那么 javascript 的 URL 包含在 src 属性中,否则我们假设 javascript 在标记中

#!/usr/bin/python

import requests 
from bs4 import BeautifulSoup

# Test HTML which has both cases
html = '<script type="text/javascript" src="http://example.com/something.js">'
html += '</script>  <script>some JS</script>'

soup = BeautifulSoup(html)

# Find all script tags 
for n in soup.find_all('script'):

    # Check if the src attribute exists, and if it does grab the source URL
    if 'src' in n.attrs:
        javascript = n['src']

    # Otherwise assume that the javascript is contained within the tags
    else:
        javascript = n.text

    print javascript

这个输出是

http://example.com/something.js
some JS
于 2013-09-11T09:40:59.207 回答