threadfinder

This commit is contained in:
Justine
2021-02-07 22:46:38 +01:00
parent 6d08071c6c
commit bd16dc7a6e
3 changed files with 166 additions and 2 deletions

View File

@ -60,7 +60,7 @@ def scraper(soup):
tags=soup.findAll('img')
sources = []
for tag in tags:
sources.append(tag['href'])
sources.append(tag['src'])
#Got image sources, removing any left http headers
for index, item in enumerate(sources):