I want to send multiple requests to a website using requests.post. How can I do this? Do I have to use range() or should I use something else?
Here is my source code:
requests.post(url, allow_redirects=False, data={
'{usernameInput}': username,
'{passwordInput}': password
})
requests.postrepresents one HTTP exchange, out and back. Do you want to send N identical requests? (If so, why?) Or do you want to send N different requests?