-
Notifications
You must be signed in to change notification settings - Fork 58
Closed
Description
I'm using a free API that has a daily download limit.
The endpoint is for example: https://www.srrdb.com/download/file/Far.Cry.DVDRip-MYTH/myth.nfo
It should download a simple text file, but the daily limit is around 6-700 requests.
I've tested it to reach the limit using this code:
import requests
from time import sleep
url = 'https://www.srrdb.com/download/file/Far.Cry.DVDRip-MYTH/myth.nfo'
i = 1
while True:
r = requests.get(url)
print('#{} {}'.format(i, r.status_code))
if r.status_code != 200:
print(r.text)
exit()
i += 1
sleep(1)
After that I tried to use this library but despite it says in the logs that it using different proxies for each requests, it always returns 429 status code.
import time
from http_request_randomizer.requests.proxy.requestProxy import RequestProxy
if __name__ == '__main__':
req_proxy = RequestProxy()
test_url = 'https://www.srrdb.com/download/file/Far.Cry.DVDRip-MYTH/myth.nfo'
status = 0
while status != 200:
request = req_proxy.generate_proxied_request(test_url)
status = request.status_code
if status == 200:
print('OK')
time.sleep(2)
What am I missing here? Thank you
Metadata
Metadata
Assignees
Labels
No labels