摘要: Pandas 教程 | 菜鸟教程 (runoob.com) 1、介绍 Pandas 是一个开放源码、BSD 许可的库,提供高性能、易于使用的数据结构和数据分析工具。 Pandas 可以从各种文件格式比如 CSV、JSON、SQL、Microsoft Excel 导入数据。 2、Series类 这是一 阅读全文
posted @ 2023-05-07 14:59 挖洞404 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 1、xml格式 (1)items作为根节点,具有burpVersion、exportTime两个属性,分别表示burp版本和导出时间 (2)item作为itmes的子节点,表示一组请求-响应 (3)item内包括多个字节点: time,表示时间,cst格式 url, host,例如static.de 阅读全文
posted @ 2023-05-07 12:31 挖洞404 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 对应整个xml结构。 2、初始化 class ElementTree: def __init__(self, element=None, file=None): self._root = element # first node if file: self.parse(file) elem 阅读全文
posted @ 2023-05-07 10:44 挖洞404 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 1、介绍 对应节点对象 2、初始化 class Element: tag = None attrib = None text = None tail = None def __init__(self, tag, attrib={}, **extra): “tag”-包含元素名称的字符串。 “attr 阅读全文
posted @ 2023-05-07 10:28 挖洞404 阅读(56) 评论(0) 推荐(0) 编辑