I want to be able to execute my python script on the client's machine when they access my website but haven't been able to find a solution that works.
import urllib.request, urllib.error, urllib.parse
url = "http://ip4only.me/api/"
response = urllib.request.urlopen(url)
webContent = response.read()