一、python互联网数据处理模块
base64数据编码
二进制数据 encode ASCII字符
ASCll字符 decode 二进制数据
json数据交换格式
轻量的数据交换格式,json暴露的API
相似标准库marshal和pickle模块
python类型 encode json类型
json类型 decode python类型
简单类型经过编码后,跟起原始的repr()输出结果很是类似
处理字符串
json.dumps()
json.loads()
处理文件
json.dump()
json.load()
xml
解析方法:SAX,DOM,ElementTree