This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import grequests | |
| import time | |
| from requests.exceptions import HTTPError | |
| MARKET_URL = "https://esi.tech.ccp.is/v1/markets/10000042/orders/" | |
| def concurrent_requests(pages): | |
| reqs = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import time | |
| from requests.exceptions import HTTPError | |
| MARKET_URL = "https://esi.tech.ccp.is/v1/markets/10000042/orders/" | |
| def sync_requests(pages): | |
| responses = [] |