- import socket
- # working with a socket as a context manager
- with socket.socket() as client_socket:
- hostname = '127.0.0.1'
- port = 9090
- address = (hostname, port)
- client_socket.connect(address)
- data = 'Wake up, Neo'
- data = data.encode()
- client_socket.send(data)
- response = client_socket.recv(1024)
- response = response.decode()
- print(response)
# https://pyperclip.readthedocs.io/en/latest/ import pyperclip while True : # pyperclip.copy('Hello, world!') # pyperclip.paste() # pyperclip.waitForPaste() print ( pyperclip. waitForNewPaste ( ) ) # 获取要输入新的坐标,也可以通过autohotkey import time import pyautogui as pag import os try : while True : print ( "Press Ctrl-C to end" ) x , y = pag. position ( ) # 返回鼠标的坐标 posStr = "Position:" + str ( x ) . rjust ( 4 ) + ',' + str ( y ) . rjust ( 4 ) print ( posStr ) # 打印坐标 time . sleep ( 0.2 ) os . system ( 'cls' ) # 清楚屏幕 except KeyboardInterrupt : print ( 'end....' ) # 打印消息 import pyautogui import time import pyperclip content = """ 呼叫龙叔! 第二遍! 第三遍! 第四遍...
评论
发表评论