0

I am a beginner programmer. How would I approach this problem? I want to provide Python with certain webpages and certain actions to take on said webpages. The problem is, the webpages are region restricted, so I have to use a VPN constantly. Would there be any way to have Python automatically connect to a vpn service (Mullvad, NordVPN etc) to a specific country while running the code? Thanks.

mralexc
  • 9
  • 3
  • You can always cheat and have python make a system call to start the vpn however you would normally do so from the command line – Barry Carter Aug 21 '22 at 18:01
  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. – Community Aug 21 '22 at 18:11

1 Answers1

0

Excluding VPNs you could use proxies. But if you need to use a VPN I suggest looking at the Google results for your specific provider, like this one for Nord.

kggn
  • 73
  • 1
  • 8