I'm trying to write a voting bot for a website. It uses post request for sending votes. Currently I'm able to send only 1 vote by my python code, but I want to send much more votes by changing my proxy. I'm planing to buy proxies online but I couldn't figure out how to write the code.
url="website.url"
keys={
Paramaters
}
x = requests.post(url,data=keys)
print(x.text)
This is my code for sending only 1 votes. I can put it into a for loop but I need to figure out how to change my proxy after sending each votes. Thank you for your responses from now.