资源简介
Python的多线程示例程序。zip压缩包里只有一个run.py文件,演示怎么在python里使用多线程。
代码片段和文件信息
#_*_ coding:utf-8 _*_
import requests
import json
import time
import re
import thread
import threading
haveRun = False
printlock = threading.Lock()
def mprint(mstr):
printlock.acquire()
print(mstr.encode(‘gb2312‘))
printlock.release()
def ThreadFun(datauserpassword):
mprint(user+‘--进入线程:‘+data+‘;‘+password)
while(True):
time.sleep(5)
try:
succon = AddGRRZ(data user password)
# mprint(con)
if suc:
mprint(user+‘退出线程:添加成功‘)
break
else:
mprint(user+‘添加失败,重试‘)
continue
except:
mprint(user+‘日志服务器异常,重试‘)
continue
hatime = False
def schedule():
while(True):
try:
timenow = time.strftime(‘%H:%M‘ time.localtime(time.time()))
if timenow.find(‘21:55‘) > -1:
if not haveRun:
data = time.strftime(‘%Y-%m-%d‘ time.localtime(time.time()))
mprint(‘‘+data)
thread.start_new_thread(ThreadFun (data‘user‘‘123456‘))
thread.start_new_thread(ThreadFun (data ‘user2‘ ‘123456‘))
thread.start_new_thread(ThreadFun (data ‘user3‘ ‘4‘))
thread.start_new_thread(ThreadFun (data ‘user4‘ ‘sss‘))
haveRun = True
else:
haveRun=False
if timenow.find(‘:44‘)>-1:
if not hatime:
mprint(timenow+‘--running...‘)
hatime=True
else:
hatime=False
except Exception as e:
continue
time.sleep(1)
def main():
mprint(‘开始运行‘)
schedule()
def AddGRRZ(datauserNamepassWord):
#define url
mprint(userName+‘;AddGRRZ();‘+data+‘;pw:‘+passWord)
if __name__ == “__main__“:
import sys
reload(sys)
sys.setdefaultencoding(‘utf8‘)
main()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2109 2019-02-26 22:03 run.py
相关资源
- 算法基础第五版 Foundation Of Algorithms
- python简略图书管理系统.doc
- ANSYS ACT二次开发.doc
- 请求分页存储管理(操作系统课设)
- Python Sample for Leap Motion
- python最佳实践指南--中文版
- Python植物大战僵尸.zip
- Python图像聚类
- python 简易发送邮件程序
- python turtle绘图
- 基于python的图书馆管理系统的改进
- python实现多项式加减乘除
- 贪吃蛇外加优化界面,质量保证pyth
- zw_基于python的网络爬虫设计.zip
- 简单的好友通讯录管理程序
- 将文件字母小写变大写并复制到其他
- Iterative Bagging和MultiBoosting 算法python实
- 租房API调用
- python 滑雪小游戏
- 5层神经网络带L2正则化的损失函数计
- 查找两幅图片中的不同
- python标准库中文版.tar
- python多人在线聊天室
- Python3 实现SM3国产哈希算法
- python爬取微博热搜并直接写入mysql.r
- Python-Scrapy 入门级爬虫项目实战
- 用python编写的信息管理系统的增删改
- 用python编写的饮料自动购物机
- [计算方法作业]利用python中matplotlib实
- python电子书大全.txt
评论
共有 条评论