python中常用到的模块和包名称

简介:

1 paramiko  (基于openssh,python封装的ssh)

模块python自带


用法:

1
2
3
4
5
6
7
8
9
10
11
12
13
import  paramiko                                          
ssh  =  paramiko.SSHClient()                               
ssh.load_system_host_keys()                              
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(hostname = '192.168.100.20' ,port = 58422 ,username = 'oldboy' )
stdin, stdout,stderr = ssh.exec_command( 'uptime' )    
                 
type (stdout)
paramiko.ChannelFile
print  stderr.readlines()
[]
print  stdout.readlines()
[ ' 21:35:05 up 1 day, 55 min,  2 users,  load average: 0.00, 0.00, 0.00\n' ]


相当于shell当中的 

1
ssh  -p58422 oldboy@192.168.100.20 -o StrictHostKeyChecking=no  'uptime'


2 subprocess(尽量不要用这个模块,返回不美观,如果只是执行shell命令推荐commands模块) Python3

python自带模块 使用在python 3中取代python 2 中的commands模块

参考:http://www.jb51.net/article/48086.htm

常用fork子进程执行shell命令,可以返回结果和返回值

举例:
只需要返回值

1
2
3
4
5
6
7
In [ 6 ]: retcode  =  subprocess.call( 'ls -l' , shell = True )
total  12
- rw - rw - r - - 1  oldboy oldboy  239  Jan  19  21 : 13  access.log
- rw - rw - r - - 1  oldboy oldboy  458  Jan  19  20 : 50  arp.txt
- rw - r - - r - - 1  oldboy oldboy  184  Jan  16  12 : 04  hosts
In [ 7 ]:  print  retcode
0


注意: 

shell默认为False,等于 retcode = subprocess.call(["ls", "-l"])  列表的形式第一个为命令,后面的都作为参数传递


需要返回值

1
2
child1  =  subprocess.Popen([ "cat" , "/etc/passwd" ], stdout = subprocess.PIPE)
child1.stdout.readlines()

常用:

file="get_ldap_zhname.sh"

1
2
3
     child1  =  subprocess.Popen( 'sh '  +  file  +  ' ' +   um, shell = True , stdout = subprocess.PIPE)
     status  =  child1.wait()
     output  =  child1.stdout.read().strip()

3 comands模块(python 2中)

python自带模块

1
  status,output  =  commands.getstatusoutput( 'cat /etc/passwd' )

优点: 无论命令执行错误与正确,正确输出和错误输出都以字符串原样的字符串形式传递给output


4 multiprocessing模块

python自带模块

pool = multiprocessing.Pool(processes=4)

result_tmp.append(pool.apply_async(func, ( arg1,arg2,arg3)))



5 ping模块

pip install ping 

result = ping.quiet_ping(addr, timeout=2, count=5, psize=64)

loss_rate=result[0]

max_time=result[1]

average_time=result[2]


常用处理(取float的位数和把None值 变为0表示不通):

loss_rate = result[0]

max_time = float('%.3f'% result[1]) if isinstance(result[1], float) else 0

#if max_time and average_time is None use 0

average_time = float('%.3f'% result[2]) if isinstance(result[2], float) else 0



6 random模块

python自带

import random

常用函数

a. random函数 生成一个0-1的随机数

1
2
In [ 26 ]: random.random()
Out[ 26 ]:  0.6289910862564466



b.  sample 在一个列表(字符串)中随机抽样N个数,返回一个新的列表

1
2
3
4
In [ 27 ]: random.sample( xrange ( 1 , 100 ),  3 )
Out[ 27 ]: [ 94 91 53 ]
In [ 28 ]: random.sample( 'asdfasdf' 3 )
Out[ 28 ]: [ 'f' 'a' 'a' ]


c.  randint 函数,在指定的整数范围内(1<=x<=20),返回一个数

1
2
In [ 29 ]: random.randint( 1 , 20 )
Out[ 29 ]:  18



7 uuid模块

python自带

import uuid

常用: uuid1函数,通过mac和时间戳生成全球唯一的id

1
2
In [ 49 ]: uuid.uuid1()
Out[ 49 ]: UUID( 'cbb8c051-0929-11e6-9ba3-8c2937eebf3a' )


(注意是 UUID类型,经常转化为str类型)

1
2
In [ 50 ]:  str (uuid.uuid1())
Out[ 50 ]:  'cf296582-0929-11e6-8bbf-8c2937eebf3a'



8 hashlib 模块 

常用md5函数  (常结合uuid来生成一个32位的随机数)


1
2
In [ 48 ]: hashlib.md5( str (uuid.uuid1())).hexdigest()
Out[ 48 ]:  'd4aacc5bb29a24fd9db8e2ea1bf53cb7'



9 时间模块 time, datetime timedelta 

参考: http://cuidehua.blog.51cto.com/5449828/1767046

 


10 json模块

参考: http://cuidehua.blog.51cto.com/5449828/1767061



11 re 正则表达式模块

python自带

常用 判断一个字符串是否符合指定的表达式

1
2
3
4
5
6
7
8
In [ 9 ]:  import  re
In [ 10 ]: s  =  "10.1.1.223"
In [ 11 ]:  if  re.match(r "10.1" , s):
    ....:      print  "为10.1网段"
    ....:  else :
    ....:      print  "不在10.1网段"
    ....:     
10.1 网段


区别re.match()  和re.search()的区别

re.match(r“10.2,s”)   和  re.search(r”^10.2”,s)  是一样的

注:

1 匹配则返回对象本身,不匹配则放回None

2 match只匹配字符串的开始,如果开始不符合正则表达式,就返回None,而search匹配整个字符串,匹配到了则算匹配成功


12 collections 模块OrderedDict 函数

python自带内模块

作用: 定义有序字典,当有需要dict字典的key是有序的

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
In [ 73 ]:  from  collections  import  OrderedDict
In [ 74 ]: od  =  OrderedDict()
In [ 75 ]: od[ 'key1' =  'value1'
In [ 76 ]: od[ 'key2' =  'value2' 
In [ 77 ]: od[ 'key3' =  'value3' 
In [ 78 ]: od
Out[ 78 ]: OrderedDict([( 'key1' 'value1' ), ( 'key2' 'value2' ), ( 'key3' 'value3' )])
In [ 79 ]: od.keys()
Out[ 79 ]: [ 'key1' 'key2' 'key3' ]
In [ 80 ]:  for  k,v  in  od.ite
od.items       od.iteritems   od.iterkeys    od.itervalues  
In [ 80 ]:  for  k,v  in  od.items():
    ....:      print  k,v
    ....:     
key1 value1
key2 value2
key3 value3



12 collections 模块Counter 函数

python再带内建(python 2.7 以上版本才有Counter函数)

Counter函数是属于字典的子类,所有也拥有字典相关的特性


重要用途: 返回列表(字符串)中元素出现的次数


1
2
3
In [ 11 ]:  from  collections  import  Counter
In [ 12 ]: l  =  [ 'a' , 'b' , 'a' , 'c' , 'a' , 'd' ]
In [ 13 ]: number_rep =  Counter(l)

返回的是keys和次数组成的字典

1
2
3
4
In [ 14 ]: number_rep
Out[ 14 ]: Counter({ 'a' 3 'b' 1 'c' 1 'd' 1 })
In [ 15 ]:  type (number_rep)
Out[ 15 ]: collections.Counter


拥有字典的大部分属性函数

1
2
In [ 16 ]: number_rep[ "a" ]
Out[ 16 ]:  3
1
2
In [ 18 ]: number_rep.keys()
Out[ 18 ]: [ 'a' 'c' 'b' 'd' ]

返回出现最多的key和次数组成的二元元组列表

1
2
In [ 19 ]: number_rep.most_common( 1 )
Out[ 19 ]: [( 'a' 3 )]


也有相加功能

1
2
3
4
5
In [ 21 ]: s  =  "efghfgfefda"
In [ 22 ]: Counter(s)
Out[ 22 ]: Counter({ 'a' 1 'd' 1 'e' 2 'f' 4 'g' 2 'h' 1 })
In [ 23 ]: number_rep  +  Counter(s)
Out[ 23 ]: Counter({ 'a' 4 'b' 1 'c' 1 'd' 2 'e' 2 'f' 4 'g' 2 'h' 1 })



注意:python 2.6环境中

pip install counter

from counter import Counter

13 linecache模块

python自带

import linecache


作用,读取文本行,大的文本,可以缓存到内存,下次再次读取直接从内存中拿取


用法:

返回所有行,以列表的形式

1
l_lines  =  linecache.getlines( 'filename' )

返回指定的一行,返回字符串形式

1
s_line  =  linecache.getline( 'filename' , linenumber).rstrip()

更新缓存,是直接从磁盘中读取文件,并更新内存中的缓存,返回列表形式的所有行

1
l_lines  =  linecache.updatecache( 'filename' )


更新缓存  所有拥有缓存的

1
linecache.checkcache()


或者 指定更新的文件

1
linecache.checkcache( 'filename' )

本文转自残剑博客51CTO博客,原文链接http://blog.51cto.com/cuidehua/1761922如需转载请自行联系原作者


cuizhiliang

相关文章
|
10天前
|
Java 程序员 开发者
Python的gc模块
Python的gc模块
|
13天前
|
数据采集 Web App开发 JavaScript
python-selenium模块详解!!!
Selenium 是一个强大的自动化测试工具,支持 Python 调用浏览器进行网页抓取。本文介绍了 Selenium 的安装、基本使用、元素定位、高级操作等内容。主要内容包括:发送请求、加载网页、元素定位、处理 Cookie、无头浏览器设置、页面等待、窗口和 iframe 切换等。通过示例代码帮助读者快速掌握 Selenium 的核心功能。
54 5
|
13天前
|
Python
SciPy 教程 之 SciPy 模块列表 13
SciPy教程之SciPy模块列表13:单位类型。常量模块包含多种单位,如公制、二进制(字节)、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例代码展示了如何使用`constants`模块获取零摄氏度对应的开尔文值(273.15)和华氏度与摄氏度的转换系数(0.5556)。
15 1
|
14天前
|
XML 前端开发 数据格式
超级详细的python中bs4模块详解
Beautiful Soup 是一个用于从网页中抓取数据的 Python 库,提供了简单易用的函数来处理导航、搜索和修改分析树。支持多种解析器,如 Python 标准库中的 HTML 解析器和更强大的 lxml 解析器。通过简单的代码即可实现复杂的数据抓取任务。本文介绍了 Beautiful Soup 的安装、基本使用、对象类型、文档树遍历和搜索方法,以及 CSS 选择器的使用。
35 1
|
15天前
|
Python
SciPy 教程 之 SciPy 模块列表 9
SciPy教程之常量模块介绍,涵盖多种单位类型,如公制、质量、角度、时间、长度、压强等。示例展示了如何使用`scipy.constants`模块查询不同压强单位对应的帕斯卡值,包括atm、bar、torr、mmHg和psi。
12 1
|
11天前
|
Python
SciPy 教程 之 SciPy 模块列表 16
SciPy教程之SciPy模块列表16 - 单位类型。常量模块包含多种单位,如公制、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例代码展示了力学单位的使用,如牛顿、磅力和千克力等。
13 0
|
12天前
|
JavaScript Python
SciPy 教程 之 SciPy 模块列表 15
SciPy 教程之 SciPy 模块列表 15 - 功率单位。常量模块包含多种单位,如公制、质量、时间等。功率单位中,1 瓦特定义为 1 焦耳/秒,表示每秒转换或耗散的能量速率。示例代码展示了如何使用 `constants` 模块获取马力值(745.6998715822701)。
13 0
|
12天前
|
JavaScript Python
SciPy 教程 之 SciPy 模块列表 15
SciPy教程之SciPy模块列表15:单位类型。常量模块包含多种单位,如公制、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。功率单位以瓦特(W)表示,1W=1J/s。示例代码展示了如何使用`constants`模块获取马力(hp)的值,结果为745.6998715822701。
15 0
|
13天前
|
Python
SciPy 教程 之 SciPy 模块列表 13
SciPy 教程之 SciPy 模块列表 13 - 单位类型。常量模块包含多种单位:公制、二进制(字节)、质量、角度、时间、长度、压强、体积、速度、温度、能量、功率和力学单位。示例:`constants.zero_Celsius` 返回 273.15 开尔文,`constants.degree_Fahrenheit` 返回 0.5555555555555556。
12 0
|
14天前
|
Python
SciPy 教程 之 SciPy 模块列表 11
SciPy教程之SciPy模块列表11:单位类型。常量模块包含公制单位、质量单位、角度换算、时间单位、长度单位、压强单位、体积单位、速度单位、温度单位、能量单位、功率单位、力学单位等。体积单位示例展示了不同体积单位的换算,如升、加仑、流体盎司、桶等。
13 0
下一篇
无影云桌面