本帖最后由 jxyk2007 于 2020-5-19 14:23 编辑
局域网web远程控制软件
功能:在同一个局域网内远程简单管理win电脑 重启 关机 截屏
python代码:
[Python] 纯文本查看 复制代码 import web import os
import time
from PIL import ImageGrab
import numpy as np
import cv2
urls = (
'/reboot_html/(.*)', 'reboot_html',
'/jp_html/(.*)', 'jp_html',
'/shutdown_html/(.*)', 'shutdown_html',
'/(js|css|images)/(.*)', 'static'
)
app = web.application(urls, globals())
render = web.template.render('templates/')
#重启电脑
class reboot_html:
def GET(self, text):
print('input:' + text)
adb ='shutdown -r now'
d = os.popen(adb)
return render.reboot(content=text.upper())
#截屏
class jp_html:
def GET(self, text):
print('input:' + text)
beg = time.time()
debug = False
# img = ImageGrab.grab(bbox=(250, 161, 1141, 610))
img = ImageGrab.grab()
end = time.time()
print('time:',end - beg)
# img.show()
img.save("images/screen.jpg")
return render.jp(content=text.upper())
#关闭电脑
class shutdown_html:
def GET(self, text):
print('input:' + text)
adb ='shutdown -s -f'
d = os.popen(adb)
return render.shutdown(content=text.upper())
class static:
def GET(self, media, file):
try:
f = open(media+'/'+file, 'rb')
return f.read()
except:
return ''
if __name__ == "__main__":
app.run()
3.html模板文件和源码
002web服务器 远程控制管理电脑.zip
(54.74 KB, 下载次数: 218)
5.安装
安装一个python 设置好环境变量
python.exe webstart.py
[PHP] 纯文本查看 复制代码 #设置web端口
python webstart.py 8089
|