Skip to content

Commit

Permalink
Update scraper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandhunt committed Jan 26, 2020
1 parent 0959435 commit f0b82de
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scraper.py
Expand Up @@ -699,6 +699,10 @@ def doesscrapeurlexist(scrapesitelist, scrapeurl):
output = re.finditer(r'image\=\"(.*)\"', image_dom, flags=re.U)
array_output = []
for output_el in output:

for el in output_el.group():
print(el)

array_output.append(output_el.group())
if len(array_output) > 1:
if array_output[1].len() > 0:
Expand Down

0 comments on commit f0b82de

Please sign in to comment.