ross / requests-futures

Asynchronous Python HTTP Requests for Humans using Futures
Other
2.11k stars 152 forks source link

what does this mean? #91

Closed jimmyhli closed 4 years ago

jimmyhli commented 4 years ago

Maybe I need a Monday coffee to refresh myself, but may i ask what this means?

This means that only Python 3.5 is fully supported, while Python versions 3.4 and above REQUIRE an existing requests.

why is it 3.4 and above?

Thanks

ross commented 4 years ago

That's just for ProcessPoolExecutor, and tbh that may be out of date. In general I'd discourage the use of ProcessProolExecutor. ThreadPoolExecutor is almost certainly going to be easier to use since things won't have to cross process boundaries.

jimmyhli commented 4 years ago

cool, thanks