一、openpyxl
1、安装
pip install openpyxl
2、使用
# 新建工作簿
from openpyxl import Workbook
wb = Workbook
ws = wb.active
ws.title = ' '
header = [' ', ' ']
ws.append(header)
ws['A1'] = 1
ws.save('*.xlsx')
# 已有工作簿打开、新建sheet
from openpyxl import load_workbook
wb = load_workbook('*.xlsx')
ws = wb.create_sheet(' ', n) #默认插入到最后,n为位置,从0开始
## 获取sheet(list)
wb.sheetnames # 用这个!!!
wb.get_sheet_names()
DeprecationWarning: Call to deprecated function get_sheet_names (Use wb.sheetnames)
# 选择sheet对象
ws = wb['Sheet1'] # 用这个!!!
ws = wb.get_sheet_by_name('Sheet1')
DeprecationWarning: Call to deprecated function get_sheet_by_name (Use wb[sheetname])
# 复制一个sheet对象
source = wb.active
target = wb.copy_worksheet(sourse)
# 删除sheet
del wb['sheet']
wb.remove(wb['sheet'])
# 插入删除行、列
ws.insert_rows(n, m)
ws.delete_rows(n)
ws.insert_cols(n, m)
ws.delete_cols(n)
# 单元格
## 合并、拆分单元格
ws.merge_cells('A2:D2')
ws.unmerge_cells('A2:D2')
## 单元格属性
cell.column , row, value, number_format, font
## 格式样式设置
from openpyxl.styles import Font, colors, Alignment
font = Font(name=' ',
size=11, #字体大小
bold=False, #是否加粗
italic=False, #斜体
underline='none', #下划线
color='FF000000') #颜色,可以用colors中的颜色
for row in sheet.rows:
for cell in row:
cell.font = font
align = Alignment(horizontal='left',vertical='center',wrap_text=True)
##horizontal:水平方向,左对齐left,居中center,右对齐right,分散对齐distributed,跨列居中centerContinuous,两端对齐justify,填充fill,常规general
##vertical:垂直方向,居中center,靠上top,靠下bottom,两端对齐justify,分散对齐distributed
# 自动换行:wrap_text,布尔类型的参数,这个参数还可以写作wrapText
# Font:来设置文字的大小,颜色和下划线等
# PatternFill:填充图案和渐变色
# Border:单元格的边框
# Alignment:单元格的对齐方式等
# protection:写保护
二、pyexcel
pyexcel不考虑字体、样式、公式和图表
from pyexcel_xls import read_data
from pyexcel_xls import get_data
a = read_data('*.xlsx') #版本更新后不用这个函数了
b = get_data('*.xlsx') # 用这个
print(type(a), type(b))
<class 'collections.OrderedDict'> <class 'collections.OrderedDict'>
for sheetname in a:
print(sheetname) # 既然是字典类型,一切都可以套用字典方法
# 合并多个文件
import glob, pyexcel
merged = pyexcel.Sheet()
for file in glob.glob("*.csv"): # glob 返回所有匹配的文件路径列表
merged.row += pyexcel.get_sheet(file_name=file)
merged.save_as("merged.csv")