Skip to content

cangmean/pexcel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

pexcel

example

from pexcel import Workbook
from pexcel.font import Font


wb = Workbook()
data = [['hello', 'world', 'excel'], ['hello', 5.33, 6.78]]
ws = wb.new_sheet('H5', data)
ws['A1'].font = Font(bold=True)
ws['A2'].font = Font(italic=True)
ws['B1'].font = Font(italic=True)

wb.save('hello.xlsx')

About

python excel 库

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages