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 4966f1c commit 777e814
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scraper.py
Expand Up @@ -685,16 +685,18 @@ def doesscrapeurlexist(scrapesitelist, scrapeurl):
image_urls[imagekey] = newimageval
imageval = newimageval
if imageval.find('//') == -1:
print('HERE')
#print('HERE')
del prodlog_image_urls[imagekey]
continue
if imageval.find('blank.'):
print('THERE')
print(imageval)
print(imageval.find('blank.'))
#print('THERE')
del image_urls[imagekey]
continue
if ignoreurlscontainingstring != '':
if imageval.find(ignoreurlscontainingstring):
print('BUT NOT HERE')
#print('BUT NOT HERE')
del image_urls[imagekey]
continue
if imageval[0:2] == '//':
Expand Down

0 comments on commit 777e814

Please sign in to comment.