Removed an unused import and unused iterator variable
Added except for KeyboardInterrupt to allow for graceful stop of scrape partway through.
Ideally, we shouldn't do a general except at all, as it could hide errors that we need to fix. What exception is raised when there is a missing detail page or no results?
except
forKeyboardInterrupt
to allow for graceful stop of scrape partway through.Ideally, we shouldn't do a general
except
at all, as it could hide errors that we need to fix. What exception is raised when there is a missing detail page or no results?