我怎样才能找到"跟进"到re.findall()搜索?

时间:2015-11-09 09:08:26

标签: html regex python-2.7

在这种情况下,我想创建一个脚本,该脚本可以查找特定商品的蒸汽市场价格。

import urllib2
import re
urllib2.Request("https://steamcommunity.com/market/listings/730/Dual%20Berettas%20%7C%20Dualing%20Dragons%20%28Battle-Scarred%29")
response = urllib2.urlopen(req)
the_page = response.read()
re.findall('class="market_listing_price market_listing_price_with_fee"',the_page)

所以这给了我一个列表,其中包含了在html中重复字符串的所有时间。 跟进(我在html文件中寻找)是:

                    0,10€                   

如何从html文件中获取这些价格?

0 个答案:

没有答案