python
ningto.com
个人站点:https://ningto.com
展开
-
python模拟鼠标、捕获按键事件
在这里我需要连续的双击鼠标左键; 用按键1(不是数字小键盘里面的1)来控制运行,其他按键暂停。 #------------------------------------------------------------------------------- # Name: # Purpose: # # Author: Administrator # # Creat原创 2012-10-14 20:49:43 · 6969 阅读 · 1 评论 -
python小程序
1. FTP下载文件 from ftplib import FTP print('start ...') f = FTP() f.connect('192.168.0.102', 21) f.login() d = f.dir() print(str(d)) fd = open('360wallpaper.jpg', 'wb') f.retrbinary('RETR 360wallpaper原创 2013-05-01 08:24:30 · 829 阅读 · 0 评论 -
多线程同时启动多个应用程序
# 同时启动多个可执行程序,可以传入命令行参数。 import os import threading import random import time def start_process(): startcmd = r'a.exe uname=xxx;meeting=1;pwd=%s' % random.randint(100, 999999) os.system(star原创 2013-09-16 18:11:10 · 1650 阅读 · 0 评论 -
python server, client
# python3.3 server import socket, sys s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.bind(('', 5100)) s.listen(5) client, addr = s.accept() while 1: buf = client.recv(1024) if not原创 2014-01-26 21:29:58 · 903 阅读 · 0 评论