Replies: 2 comments
-
|
Would you mind sharing the full error and the contents of your |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hi @joshcarty thank you for the reply. I pasted the full errore above, here it is: While the content of the script is: I'm using the library in question to extract query-url of a site that generates a lot of traffic. I can't download beyond 60 days otherwise the timeout error I pasted in the first post will appear. I was wondering if it was possible to tell the script to wait more, or to handle any timeout. Thanks for the support |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all, I'm trying to download queries from a site with good traffic. By setting 16 months (480) days, the call times out.
I would like to understand if it was possible to raise the timeout or how to handle this exception.
Thanks for your help.
`timeout Traceback (most recent call last)
in
15
16 while not completed:
---> 17 ex = extract_gsc_data(webproperty, start_date, end_date, 'query', 'page')
18 if ex:
19 print("Success!")
16 frames
/usr/lib/python3.8/ssl.py in read(self, len, buffer)
1097 try:
1098 if buffer is not None:
-> 1099 return self._sslobj.read(len, buffer)
1100 else:
1101 return self._sslobj.read(len)
timeout: The read operation timed out`
Beta Was this translation helpful? Give feedback.
All reactions