Understanding requests versus grequests
问题 I'm working with a process which is basically as follows: Take some list of urls. Get a Response object from each. Create a BeautifulSoup object from the text of each Response. Pull the text of a certain tag from that BeautifulSoup object. From my understanding, this seems ideal for grequests: GRequests allows you to use Requests with Gevent to make asynchronous HTTP Requests easily. But yet, the two processes (one with requests, one with grequests) seem to be getting me different results,