You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I'm a bit new to python and this is my first time working with your library.
After migrating one of my scripts using grequests from an old server with python 3.6 to a new server with python 3.11, I noticed that it began to be executed several times
old server: centos 7, python 3.6 - it's a VM - 2vPCU, 8Gb
$ python parse.py
--- 11.287319898605347 seconds ---
new server: ubuntu 22.04, python 3.11 - it's a VM - 2vPCU, 8Gb
$ python3 parse.py
--- 71.94743847846985 seconds ---
I started looking for what exactly is the problem. I already took the Debian 11, installed Anaconda there with different versions of python and ran a test with my own script (I ran each test twice, to be sure). At the same time I tried 3.8
Hmmm. I'm not sure why Python version alone would cause this. I would maybe suspect the version of gevent and/or requests being used as a possible cause. It might also be helpful if this could be reproduced with a minimal example (say, using httpbin.org and some minimal code that is compatible between 3.6 and 3.11) and I could investigate more closely.
Hi I'm a bit new to python and this is my first time working with your library.
After migrating one of my scripts using grequests from an old server with python 3.6 to a new server with python 3.11, I noticed that it began to be executed several times
old server: centos 7, python 3.6 - it's a VM - 2vPCU, 8Gb
$ python parse.py
--- 11.287319898605347 seconds ---
new server: ubuntu 22.04, python 3.11 - it's a VM - 2vPCU, 8Gb
$ python3 parse.py
--- 71.94743847846985 seconds ---
I started looking for what exactly is the problem. I already took the Debian 11, installed Anaconda there with different versions of python and ran a test with my own script (I ran each test twice, to be sure). At the same time I tried 3.8
Is this expected behavior or am I doing something wrong?
The text was updated successfully, but these errors were encountered: