This commit is contained in:
xyj 2024-03-09 14:28:24 +08:00
commit 919fc8b839
8 changed files with 132 additions and 0 deletions

3
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

7
.idea/misc.xml Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.10 (pythonProject)" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10 (pythonProject)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/pythonProject.iml" filepath="$PROJECT_DIR$/.idea/pythonProject.iml" />
</modules>
</component>
</project>

10
.idea/pythonProject.iml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.venv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

36
click.py Normal file
View File

@ -0,0 +1,36 @@
import pyautogui
a = {
"Type": 1,
"Index": 0,
"DataNum": 1,
"PointNum": 4,
"Check": 38,
"Point": [
{
"x": 100,
"y": 100
},
{
"x": 100,
"y": 100
},
{
"x": 100,
"y": 100
},
{
"x": 100,
"y": 100
}
]
}
def click_it(x, y):
pyautogui.moveTo(x, y)
pyautogui.click(x, y)
if __name__ == '__main__':
click_it(100, 100)

62
main.py Normal file
View File

@ -0,0 +1,62 @@
# coding=utf-8
# 多线程TCP服务器
import json
import pyautogui
import socket
import threading
def click_it(x, y):
pyautogui.moveTo(x, y)
pyautogui.click(x, y)
bind_ip = "127.0.0.1" # 监听的IP 地址
bind_port = 9999 # 监听的端口
# 建立一个socket对象
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# 绑定监听的地址创建的对象是AF_INET的形式所以地址(ip, port)的元组形式来表示
server.bind((bind_ip, bind_port))
# 启动监听并设置连接数为5
server.listen(5)
print("[*] Listening on %s:%d" % (bind_ip, bind_port))
# 这是客户处理线程,也是一个回调函数,创建一个新的进程对象,将客户端套接字对象作为一个句柄传递给它。
def handle_client(client_socket):
# 打印处客户端发送得到的内容
data = client_socket.recv(1024)
try:
data = data.decode("utf-8")
Point = json.loads(data)["Point"]
print(Point[0])
except Exception as e:
print(e)
# 返还一个 ACK 在计算机网络中的意思是返回包确认,表示收到
client_socket.send(b"ACK!")
client_socket.close()
# 等待连接,这里必定进入循环
while True:
# 一个客户端成功建立连接的时候我们将收到的客户端套接字对象保存到client变量中将远程连接的细节保存到addr变量中。
# 返回的client是一个套接字是表示专属客户的一个新的套接字 | 而addr则是一个tuple元组抓了某次数据返回的就是('127.0.0.1', 62549)
# 运行到下面就被当作套接字传递给上面自定义的 handle_client 函数
client, addr = server.accept()
# 打印结果 在('127.0.0.1', 62549)中addr[0] -> 127.0.0.1addr[1] -> 62549
print("[*] Accepted connection from: %s:%d" % (addr[0], addr[1]))
# 挂起客户端线程,处理传入的数据。
# Thread是一个类创建一个新的线程对象target指定调用的函数args指定调用函数的参数是一个元组后面要加一个,
# 当调用start函数时就回去执行这个函数
client_handler = threading.Thread(target=handle_client, args=(client,))
# 启动线程开始处理客户端连接。handle_client 函数执行recv()函数之后将一段信息发送给客户端
client_handler.start()

0
test.py Normal file
View File