Thư viện Python để xử lý file Excel Thư viện được đề xuất cho việc đọc ghi file Excel 2010 trở lên (xlsx)
# I. XLWINGS
https://xlwings.org
# II. PANDAS
https://pandas.pydata.org
# III. WIN32COM.CLIENT
pip install pywin32
# IV. OPENPYXL
Download: http://pypi.python.org/pypi/openpyxl Tài liệu: https://openpyxl.readthedocs.org/ Bitbucket: https://bitbucket.org/openpyxl/openpyxl
# xlsxwriter
Thư viện để ghi dữ liệu, format, tạo bảng biểu cho Excel 2010 (xlsx)
Download: https://pypi.python.org/pypi/XlsxWriter Tài liệu: https://xlsxwriter.readthedocs.org/ GitHub: https://github.com/jmcnamara/XlsxWriter
xlrd Thư viện đọc, ghi file excel với dịnh dạng cũ (xls)
Download: http://pypi.python.org/pypi/xlrd Tài liệu: http://xlrd.readthedocs.io/en/latest/ GitHub: https://github.com/python-excel/xlrd xlwt Thư viện đọc, ghi file excel với dịnh dạng cũ (xls)
Download: http://pypi.python.org/pypi/xlwt Tài liệu: http://xlwt.readthedocs.io/en/latest/ Examples: https://github.com/python-excel/xlwt/tree/master/examples GitHub: https://github.com/python-excel/xlwt xlutils Thư viện tổng hợp cả xlrd, openpyxl và xlwt, để xử lý copy và chỉnh sửa các file excel
Download: http://pypi.python.org/pypi/xlutils Tài liệu: http://xlutils.readthedocs.io/en/latest/ GitHub: https://github.com/python-excel/xlutils