解析表行与美丽的汤

时间:2017-07-13 04:22:09

标签: python parsing beautifulsoup

我试图解析这个html并得到53.1和41.7值。我不太清楚该怎么做。

我一直在尝试使用Beautiful Soup

任何建议或想法将不胜感激。感谢。

enter image description here

1 个答案:

答案 0 :(得分:0)

from bs4 import BeautifulSoup
import urllib
r = urllib.urlopen('url/to/open').read()
soup = BeautifulSoup(r)
print type(soup)

-OR -

from bs4 import BeautifulSoup
import requests
url = raw_input("Enter a website to extract the URL's from: ")
r  = requests.get("http://" +url)
data = r.text
soup = BeautifulSoup(data)
for link in soup.find_all('a'):
    print(link.get('href'))

注意.find_all()方法。尝试探索beautifulsoup的所有帮助方法。祝你好运。