91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何理解xml,configpraser和hashlib模塊

發布時間:2021-11-26 10:42:45 來源:億速云 閱讀:113 作者:柒染 欄目:開發技術

今天就跟大家聊聊有關如何理解xml,configpraser和hashlib模塊,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

寫一個XML文件

import xml.etree.ElementTree as ET
namelist=ET.ElementTree("namelist")

將namelist生成一個根節點
name=ET.SubElement(namelist,"name",attrib={"strinf":"yes","name":"alex"})

賦予namelist屬性
age=ET.SubElement(name,"age")

在根下面建立子節點
age.txt=27

賦值
role=ET.SubElement(name,"role")

根下建立子節點
role.txt="teacher"

et=ET.ElementTree(namelist)

生成文件對象
et.write("test.xml",encoding="utf-8",xml_declaration=True)

寫進一個xml文件

configparser模塊:可以生成和修改配置文件

import configparser
config=configparser.ConfigParser()#生成對象
config["DEFAULT"]={'Interval':'45',
                 'Compression':'yes',
                 'CompressionLevel':'9'}

賦予屬性,生成字典
config['bitbucket.org']={}可以單獨生成
config['bitbucket.org']['User']='alex'#賦值
config['topsecret.server.com']={}
topsecret=config['topsecret.server.com']
topsecret['Host Port']='50022'
topsecret['ForwardXll']='no'
topsecret['enabled']='YES'

config['DEFAULT']['ForwardXll']='yes'
f=open("config.ini",'w')
config.write(f)
f.close()

在生成的文件中增刪改

import configparser
config=configparser.ConfigParser()
config.read("config1.ini")
print(config.sections())#找到文件的sections
config_name=config.sections()[1]

#找到對應的值
print(config[config_name]["host port"])

sec=config.remove_option(config_name,'forwardxll')
刪除forwardx11這一行

config.set(config_name,'host port','3000')

將端口號改為3000
config.write(open("config2.ini","w"))

hashlib模塊:用來驗證文件內容一致性的

import hashlib
m= hashlib.md5()
m.update(b"alex")
print(m.hexdigest())
m.update(b"li")
print(m.hexdigest())

讀一行的md5沒有比讀整篇的md5省內存

m2=hashlib.md5()
m2.update(b"alexli")
print(m2.hexdigest())

m2=hashlib.sha256()
m2.update(b"alexli")
print(m2.hexdigest())

sha256的比md5的安全

加鹽算法,更安全

import hmac
hamc_name=hmac.new(b"salt",b"hello")
print(hamc_name.hexdigest())

看完上述內容,你們對如何理解xml,configpraser和hashlib模塊有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

山阴县| 舒兰市| 霍城县| 依安县| 富裕县| 屏东县| 邻水| 桦川县| 高雄市| 安义县| 油尖旺区| 全南县| 屏东县| 饶河县| 江安县| 孝义市| 江陵县| 大荔县| 房山区| 平陆县| 丰城市| 吉水县| 上杭县| 巩义市| 沁阳市| 信丰县| 汤原县| 大同县| 彭水| 张掖市| 内江市| 布尔津县| 富蕴县| 巴东县| 塔河县| 水城县| 永丰县| 盐津县| 宁城县| 莱西市| 札达县|