一页中的所有表达式

时间:2013-08-14 12:46:28

标签: python parsing

我有这段代码从页面中检索信息:

def between_strings(source, start='<a href="http://site.com/', end='class'):
    words = []
    while True:
        start_index = source.find(start)
        if start_index == -1:
            break
        end_index = source.find(end)
        words.append(source[start_index+len(start):end_index])
        source = source[end_index+len(end):]
    return words

stat = between_strings(page)

我想从页面中获取所有值,但此代码仅返回第一个。

0 个答案:

没有答案