Web数据上的Python移动平均值

时间:2015-12-16 22:13:18

标签: python

如果我问一个愚蠢的问题,那么python相对较新,所以道歉。

我只是想检查这是否可行,以及它是否有多复杂。

我想根据此网页上的分享数据计算移动平均值

https://uk.finance.yahoo.com/q/hp?a=&b=&c=&d=11&e=16&f=2015&g=d&s=LLOY.L%2C+&ql=1

2 个答案:

答案 0 :(得分:0)

您可以使用此示例代码。

import urllib
from BeautifulSoup import *

url = raw_input('Enter - ')
html = urllib.urlopen(url).read()

soup = BeautifulSoup(html)
# Retrieve all of the anchor tags
tags = soup('span')
for tag in tags:
   # Look at the parts of a tag
   #calculate whatever you wanto

答案 1 :(得分:0)

试一试:

from urllib import request
from bs4 import BeautifulSoup

url = "https://uk.finance.yahoo.com/q/hp?a=&b=&c=&d=11&e=16&f=2015&g=d&s=LLOY.L%2C+&ql=1"
html_contents = request.urlopen(url).read()

page = BeautifulSoup(html_contents, "html.parser")
el_list = page.find_all("span", {"id": "yfs_p43_lloy.l"})
print(el_list[0])