In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >
Share
Shulou(Shulou.com)05/31 Report--
How to use python to write simple remote control, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain for you in detail, people with this need can come to learn, I hope you can gain something.
Students who have just begun to learn programming may often ask, "what am I doing with this?" when you buy food, you take out your computer and write a program to calculate how much it is. "
In fact, this has a lot to do with everyone's knowledge and entry-selected language, most students will choose C language to start programming, although C language is simple, but process-oriented programming will always make people feel boring and at a loss as to what to do.
So let's do an interesting one now, make a super simple remote control software, well, it's actually a script at most.
Since it is remote control, two functions need to be identified:
1. Remote
That is, through the network access to external hosts (including the intranet), we can use the socket library encapsulated in Python to achieve remote transmission of text, files, video and so on.
Detailed introduction of Python socket
2. Control
Control, the simplest understanding is to execute commands, then we can use the os library in Python, we can execute Linux shell commands.
Detailed introduction of Python os
Here's the code, save it as a .py file, and then execute server.py before client.py.
Server side, saved as server.py
#! / usr/bin/envpython
#-*-coding:utf-8-*-
Importsocket
Import os
Line=socket.socket (socket.AF_INET,socket.SOCK_STREAM)
Line.bind (('server IP', listening port))
Line.listen (5)
Print ('waitingcommd- >')
WhileTrue:
Conn,addr=line.accept ()
Msg=conn.recv (1024)
If msg ='QQ:
Break
Print ('get commd:',msg)
Result=os.popen (msg) .read ()
Conn.send ('result:' + result)
Conn.close ()
Phone.close ()
The client is saved as client.py
#! / usr/bin/env python
#-*-coding:utf-8-*-
Import socket
While True:
Line=socket.socket (socket.AF_INET,socket.SOCK_STREAM)
Line.connect (('server IP', listening port))
Msg = str (raw_input ('please inputcommd:'))
Line.send (str (msg) .encode ('utf-8'))
Data=phone.recv (1024)
Print data
Line.close ()
The implementation results are as follows:
Server execution result
The result returned by the client after executing the ls command on the server
Is it helpful for you to read the above content? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.