摘要: paramiko模块 1. 介绍: 2. 下载安装 pycrypto,由于 paramiko 模块内部依赖pycrypto,所以先下载安装pycrypto #在python2中 pip3 install pycrypto pip3 install paramiko 注:如果在安装pycrypto2. 阅读全文
posted @ 2018-02-07 15:20 银鑫 阅读(561) 评论(0) 推荐(0)
摘要: 一 threading模块介绍 multiprocess模块的完全模仿了threading模块的接口,二者在使用层面,有很大的相似性,因而不再详细介绍 官网链接:https://docs.python.org/3/library/threading.html?highlight=threading# 阅读全文
posted @ 2018-02-07 15:12 银鑫 阅读(242) 评论(0) 推荐(0)
摘要: 一 multiprocessing模块介绍 python中的多线程无法利用多核优势,如果想要充分地使用多核CPU的资源(os.cpu_count()查看),在python中大部分情况需要使用多进程。Python提供了multiprocessing。 multiprocessing模块用来开启子进程, 阅读全文
posted @ 2018-02-07 15:05 银鑫 阅读(321) 评论(0) 推荐(0)