摘要:
1 )python中可以用subprocess模块创建子进程,subprocess被用来替换一些老的模块和函数,如:os.system、os.spawn*、os.popen*、popen2.*、commands.*等2) 通过ConfigParser.SafeConfigParser读取配置文件setting.conf内容为:[section]key=value代码如下:#!/usr/bin/env python#coding=utf-8import subprocessfrom ConfigParser import SafeConfigParserclass Utility: @st... 阅读全文
摘要:
1)使用 Python 进行线程编程, 研究了如何同时使用线程和队列在 Python 中完成线程编程。2) Queue— A synchronized queue classTheQueuemodule implements multi-producer, multi-consumer queues. It is especially useful in threaded programming when information must be exchanged safely between multiple threads. The Queueclass in this module im 阅读全文