摘要:
#tablib.Dataset()操作exl类型数据之“类方法”研究 import tablib #初始化 data=tablib.Dataset() #设置列标题 data.headers=('name','where') some_collector=[('xiaodeng','enshi'),('xiaoming','hubei'),('xiaodong','enshi')] #写入... 阅读全文
摘要:
#tablib把数据导出为Excel、JSON、CSV等格式的Py库 #python 3 import tablib #定义列标题 headers = ('1列', '2列', '3列', '4列', '5列') #需写入的数据,按照一行一行的输入 #元组数据的个数必须和列数一致 data = [('23','23','34','23','34'),('sadf','23','sdf'.. 阅读全文
摘要:
解决BeautifulSoup库运行时报错问题运行BeautifulSoup库时可能出现下面的错误,具体错误消息为:To get rid of this warning, change this: BeautifulSoup([your markup])to this: BeautifulSoup( 阅读全文
摘要:
#xiaodeng #python3 #用Beautiful Soup解析html源码 html_doc = """ The Dormouse's story 测试 The Dormouse's story Once upon a time there... 阅读全文
摘要:
#python3from html.parser import HTMLParser class MyHTMLParser(HTMLParser): """ 1、tag是的html标签,attrs是标签的属性 2、抓网页中的超链接,返回list 3、抓网页标题, 4、handle_data:处理数据,就是data中间的那些数据 """ d... 阅读全文
摘要:
阿-_-涵的博客 阅读全文