prrifth
Results
1
issues of
prrifth
In crawler.py, there's this code: ```python try: response = urllib.request.urlopen(url) except: print('404 error') return ``` However, 404 is not the only possible exception that can occur with urllib.request.urlopen(). Solution: ```python...