本文实例讲述了Python3.5内置模块之shelve模块、xml模块、configparser模块、hashlib、hmac模块用法。分享给大家供大家参考,具体如下:
1、shelve模块
shelve类似于一个key-value数据库,可以很方便的用来保存Python的内存对象,其内部使用pickle来序列化数据,
简单来说,使用者可以将一个列表、字典、或者用户自定义的类实例保存到shelve中,下次需要用的时候直接取出来,
就是一个Python内存对象,不需要像传统数据库一样,先取出数据,然后用这些数据重新构造一遍所需要的对象。
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author:ZhengzhengLiu import shelve import datetime d = shelve.open('shelve_test') # 打开一个文件 info = { "age":23, "job":"IT" } name = ["alex", "rain", "test"] d["name"] = name # 持久化列表 d["info"] = info # 持久化字典 d["data"] = datetime.datetime.now() d.close()
运行结果:产生3个文件
从shelve中数据读取:get方法
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author:ZhengzhengLiu import shelve import datetime d = shelve.open('shelve_test') # 打开一个文件 print(d.get("name")) print(d.get("info")) print(d.get("data"))
运行结果:
['alex', 'rain', 'test']
{'job': 'IT', 'age': 23}
2017-09-29 18:31:12.013709
2、xml模块
xml是实现不同语言或程序之间进行数据交换的协议,跟json差不多,但json使用起来更简单,在json还没诞生时,
大家只能选择用xml,至今很多传统公司如金融行业的很多系统的接口还主要是xml。xml的格式如下,就是通过<>节点来区别数据结构的。
(1)xml文件示例代码如下:文件名为:xml_test.xml
<"1.0"?> <data> <country name="Liechtenstein"> <rank updated="yes">2</rank> <year>2008</year> <gdppc>141100</gdppc> <neighbor name="Austria" direction="E"/> <neighbor name="Switzerland" direction="W"/> </country> <country name="Singapore"> <rank updated="yes">5</rank> <year>2011</year> <gdppc>59900</gdppc> <neighbor name="Malaysia" direction="N"/> </country> <country name="Panama"> <rank updated="yes">69</rank> <year>2011</year> <gdppc>13600</gdppc> <neighbor name="Costa Rica" direction="W"/> <neighbor name="Colombia" direction="E"/> </country> </data>
(2)Python中操作xml模块
xml协议在各种语言里的都是支持的,在python中可以用以下模块操作xml 。
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author:ZhengzhengLiu #python中操作xml模块 import xml.etree.ElementTree as ET tree = ET.parse("xml_test.xml") #要处理的xml文件名 root = tree.getroot() #root是一个内存对象 print(root) print(root.tag) #打印标签名 #print(ET.parse("xml_test.xml").getroot().tag) # 遍历xml文档 for child in root: print(child.tag, child.attrib) #打印下一级的标签名和属性 for i in child: print(i.tag,i.attrib,i.text)
运行结果:
<Element 'data' at 0x0062E8A0>
data
country {'name': 'Liechtenstein'}
rank {'updated': 'yes'} 2
year {} 2008
gdppc {} 141100
neighbor {'direction': 'E', 'name': 'Austria'} None
neighbor {'direction': 'W', 'name': 'Switzerland'} None
country {'name': 'Singapore'}
rank {'updated': 'yes'} 5
year {} 2011
gdppc {} 59900
neighbor {'direction': 'N', 'name': 'Malaysia'} None
country {'name': 'Panama'}
rank {'updated': 'yes'} 69
year {} 2011
gdppc {} 13600
neighbor {'direction': 'W', 'name': 'Costa Rica'} None
neighbor {'direction': 'E', 'name': 'Colombia'} None
只遍历节点year,代码如下:
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author:ZhengzhengLiu #python中操作xml模块 import xml.etree.ElementTree as ET tree = ET.parse("xml_test.xml") #要处理的xml文件名 root = tree.getroot() #root是一个内存对象 print(root) print(root.tag) #打印标签名 # 只遍历year 节点 for node in root.iter('year'): print(node.tag, node.text)
运行结果:
<Element 'data' at 0x0050E8D0>
data
year 2008
year 2011
year 2011
3、configparser模块
用于生成和修改常见配置文档,常见文档格式如下:
[DEFAULT] ServerAliveInterval = 45 Compression = yes CompressionLevel = 9 ForwardX11 = yes [bitbucket.org] User = hg [topsecret.server.com] Port = 50022 ForwardX11 = no
Python生成配置文档:
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author:ZhengzhengLiu #python生成配置文档 import configparser config = configparser.ConfigParser() config["DEFAULT"] = {'ServerAliveInterval': '45', 'Compression': 'yes', 'CompressionLevel': '9'} config['bitbucket.org'] = {} config['bitbucket.org']['User'] = 'hg' config['topsecret.server.com'] = {} topsecret = config['topsecret.server.com'] topsecret['Host Port'] = '50022' # mutates the parser topsecret['ForwardX11'] = 'no' # same here config['DEFAULT']['ForwardX11'] = 'yes' with open('example.ini', 'w') as configfile: config.write(configfile)
4、hashlib模块
做一个映射关系,将字符串转成数字,用于加密相关的操作。
3.x里主要提供 SHA1, SHA224, SHA256, SHA384, SHA512 ,MD5 算法。
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author:ZhengzhengLiu import hashlib m = hashlib.md5() #生成对象 m.update(b"Hello") m.update(b"It's me") print(m.digest()) m.update(b"It's been a long time since last time we ...") print(m.digest()) #2进制格式hash print(len(m.hexdigest())) #16进制格式hash print(m.hexdigest()) # ######## md5 ######## hash = hashlib.md5() hash.update(b'admin') print("md5:",hash.hexdigest()) # ######## sha1 ######## hash = hashlib.sha1() hash.update(b'admin') print("sha1:",hash.hexdigest()) # ######## sha256 ######## hash = hashlib.sha256() hash.update(b'admin') print("sha256:",hash.hexdigest())
运行结果:
b']\xde\xb4{/\x92Z\xd0\xbf$\x9cR\xe3Br\x8a'
b'\xa0\xe9\x89E\x03\xcb\x9f\x1a\x14\xaa\x07"htmlcode">import hmac h = hmac.new(b'zxc', 'cvb你好'.encode(encoding="utf-8")) print(h.digest()) print(h.hexdigest()) #运行结果: #b'\xc1\x89\t#VQ\xa4\x00\xbf\xed\xb2_\xc1s\xfa\xd2' #c18909235651a400bfedb25fc173fad2更多关于Python相关内容感兴趣的读者可查看本站专题:《Python操作xml数据技巧总结》、《Python数据结构与算法教程》、《Python Socket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
- 中国武警男声合唱团《辉煌之声1天路》[DTS-WAV分轨]
- 紫薇《旧曲新韵》[320K/MP3][175.29MB]
- 紫薇《旧曲新韵》[FLAC/分轨][550.18MB]
- 周深《反深代词》[先听版][320K/MP3][72.71MB]
- 李佳薇.2024-会发光的【黑籁音乐】【FLAC分轨】
- 后弦.2012-很有爱【天浩盛世】【WAV+CUE】
- 林俊吉.2012-将你惜命命【美华】【WAV+CUE】
- 晓雅《分享》DTS-WAV
- 黑鸭子2008-飞歌[首版][WAV+CUE]
- 黄乙玲1989-水泼落地难收回[日本天龙版][WAV+CUE]
- 周深《反深代词》[先听版][FLAC/分轨][310.97MB]
- 姜育恒1984《什么时候·串起又散落》台湾复刻版[WAV+CUE][1G]
- 那英《如今》引进版[WAV+CUE][1G]
- 蔡幸娟.1991-真的让我爱你吗【飞碟】【WAV+CUE】
- 群星.2024-好团圆电视剧原声带【TME】【FLAC分轨】