-3
I recently built a simple algorithm to find correct combinations with the following url:
https://api-main.ecobonuz.com/api/v1/bus-cards/checkInfo?number=1395037673&card=5c8b1160a453ea0ae5e0fdfd&busCardId=&checkBusCard=true&ein=
I needed the parameter number began in 1000000000
and were up 9000000000
. If the status code is 200
or True
, would like to store the number used in the request.
For now I have only this code:
import requests
import json
numero=
Url='https://api-main.ecobonuz.com/api/v1/bus-cards/checkInfo?number='+numero+'&card=5c8b1160a453ea0ae5e0fdfd&busCardId=&checkBusCard=true&ein='
r = requests.get(Url)
print(r.text)
I am a beginner so if there was any mistake, please let me know the problems to enrich my learning.
you want to make 8 billion http requests, that’s it?
– jsbueno