Tagged Questions
0
votes
1answer
739 views
How to reliably process web-data in Python
I'm using the following code to get data from a website:
time_out = 4
def tryconnect(turl, timer=time_out, retries=10):
urlopener = None
sitefound = 1
tried = 0
while (sitefound != ...