|
|
|
|
|
by falcolas
3901 days ago
|
|
If you're just sending HTTP requests, regular threading in Python works fine - waiting for a socket response doesn't block the execution of other threads. Python threads are real threads, and things like blocking socket IO does not block Python execution in other threads. |
|