+ 1
Execute a python script REMOTELY using another python script
I have a python script in my remote computer. I need to execute that script with my local system, using a python script. Please do help me. Please provide me a python script to do so, or atleast imform me about the procedure, libraries, or built-in functions that I can use
6 Antworten
+ 1
I can make a listen server, but I need a python script to run that listen server.
Nomally people write 2 scripts for RPC, one for the server and the other for the client at local and remote system respectively. What I want is a single script at the local system, that can run the client script at the remote system
+ 1
Markus Kaleton can u give me example scripts?
0
you could make a listen server to the remote computer that waits for x package and when it receives it, it runs the script function.
then just make a script on the local machine that sends this package.
needed.
Modules: socket and socketserver,
0
depending on the OS and how the network is set up, you could write a python script that runs psexec which commands the target system to run the python file.
or if you have ssh you could send execute over that
0
I doubt i have any examples saved up and I'm busy this week to write you one, but you should check os module and check microsoft site for psexec. I've ran psexec scripts with powershell but they can be done with python as well. Everything is also highly dependant on your target system
0
or ssh, etc module possibilities