Hi,
I have a query which return 200K hosts. I need to download all.
if I use the following code, after 300 query rate limit will stop the script.
query = h.search ("SEARCH TERM", per_page=100, pages=-1)
Also I used another approach, which download lots of repetitive data
for page in range(1, 100):
query = h.search( 'services.port: 80 AND services.tls.certificates: * AND services.http.response.status_code: 403', per_page=100, page=page)
any IDEA how to download all data without problem.