trevdog94

Results 1 comments of trevdog94

I altered the request_until_succeed to look like this and it resolved the issue for me: ``` def request_until_succeed(url): req = Request(url) success = False while success is False: try: response...