python - Get Arguments To Program Remotely -
i have code:
arguments = urllib.urlopen("http://website.com.info/file.php")
command = location + "\file.exe " + arguments.read()
i able control arguments remotely , code works, problem av block behavior because tries access website or something. alternative way able pass arguments program remotely?
i use python2.6 , program run on windows (py2exe)
p.s used on own computers i'm trying control arguments remotely when i'm not around.
Comments
Post a Comment