I'd like to assign proxies to open with multiple tabs, but it's only using my ip on my phone. I'm fairly new to python, and I've attempted to look up how to do this, but I guess what's out there isn't directly answering what I want to know, if that makes sense. Any help would be GREATLY APPRECIATED!!!! I'm open to also changing the entire code if need be.
import webbrowser
proxies = :{
'https' : ' xxx.xxx.xxx.xxx.:xxxx', xxx.xxx.xxx.xxx.:xxxx
}
url = ('httpsbin.org/ip')
url1 = ('httpsbin.org/ip')
url2 = ('httpsbin.org/ip')
webbroswer.open(url, proxies)
webbroswer.open_new_tab(url1, proxies)
webbroswer.open_new_tab(url2, proxies)
I even tried using proxies=proxies instead of just "proxies"