- 博客(2)
- 收藏
- 关注
原创 xlwings常用API
app = xw.App(visible=True, add_book=False) wb = app.books.add() sht = wb.sheets.active b3 = sht.range('b3') """设置单元格大小""" sht.autofit() # 自动调整单元格大小。 sht.range(1,4).column_width = 5 # 设置第4列 列宽。(1,4)为第1行第4列的单元格 sht.range(1,4).row_height = 20 # 设置
2020-07-22 16:02:14 3517 4
原创 爬虫学习之xpath:使用requests、xpath、html.etree、图片懒加载、转换编码等,爬取多页图片并下载
-- coding: utf-8 -- import requests,os from lxml import html headers = { ‘User-Agent’: ‘Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36’ } dirName = ‘TestFiles’ if not os.path.exists(dirName): o
2020-06-11 04:50:28 283
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人