ページから情報を取得するための次のコードがあります。
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)
ページからすべての値を取得したいのですが、このコードでは最初の値しか返されません。