1
返される結果が順不同であるため、結果を順番に返す必要があります。BeautifulSupループがシーケンスで返されない
ランキングを記録しようとしています。
def parse(self, response):
sourceHtml = BeautifulSoup(response.body)
soup = sourceHtml.find("dl", {"id": "resultList"})
for link in soup.find_all('dd'):
print(link.get('code'))