├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── api.rst ├── changes.rst ├── conf.py ├── development.rst ├── index.rst ├── installation.rst ├── licenses.rst └── make.bat ├── examples ├── big-16Mb.py ├── big-35Mb.py ├── blanks.py ├── col_width.py ├── country.py ├── dates.py ├── format.py ├── formula_names.py ├── formulas.py ├── hyperlinks.py ├── image.py ├── image_chg_col_wid.py ├── merged.py ├── merged0.py ├── merged1.py ├── mini.py ├── num_formats.py ├── numbers_demo.py ├── outline.py ├── panes.py ├── panes2.py ├── panes3.py ├── parse-fmla.py ├── pattern_examples.xls ├── protection.py ├── python.bmp ├── row_styles.py ├── row_styles_empty.py ├── simple.py ├── sst.py ├── unicode0.py ├── unicode1.py ├── unicode2.py ├── wsprops.py ├── xlwt_easyxf_simple_demo.py └── zoom_magnification.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── bitmaps.xls ├── less_simple.xls ├── mini.xls ├── python.bmp ├── simple.xls ├── test_biff_records.py ├── test_bitmaps.py ├── test_by_name_functions.py ├── test_compound_doc.py ├── test_easyxf.py ├── test_mini.py ├── test_simple.py ├── test_unicode1.py ├── test_unicodeutils.py ├── test_worksheet.py ├── unicode1.xls ├── utils.py └── xlwt_easyxf_simple_demo.xls ├── tox.ini └── xlwt ├── BIFFRecords.py ├── Bitmap.py ├── Cell.py ├── Column.py ├── CompoundDoc.py ├── ExcelFormula.py ├── ExcelFormulaLexer.py ├── ExcelFormulaParser.py ├── ExcelMagic.py ├── Formatting.py ├── Row.py ├── Style.py ├── UnicodeUtils.py ├── Utils.py ├── Workbook.py ├── Worksheet.py ├── __init__.py ├── antlr.py ├── compat.py └── excel-formula.g /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/licenses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/docs/licenses.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/big-16Mb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/big-16Mb.py -------------------------------------------------------------------------------- /examples/big-35Mb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/big-35Mb.py -------------------------------------------------------------------------------- /examples/blanks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/blanks.py -------------------------------------------------------------------------------- /examples/col_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/col_width.py -------------------------------------------------------------------------------- /examples/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/country.py -------------------------------------------------------------------------------- /examples/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/dates.py -------------------------------------------------------------------------------- /examples/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/format.py -------------------------------------------------------------------------------- /examples/formula_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/formula_names.py -------------------------------------------------------------------------------- /examples/formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/formulas.py -------------------------------------------------------------------------------- /examples/hyperlinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/hyperlinks.py -------------------------------------------------------------------------------- /examples/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/image.py -------------------------------------------------------------------------------- /examples/image_chg_col_wid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/image_chg_col_wid.py -------------------------------------------------------------------------------- /examples/merged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/merged.py -------------------------------------------------------------------------------- /examples/merged0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/merged0.py -------------------------------------------------------------------------------- /examples/merged1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/merged1.py -------------------------------------------------------------------------------- /examples/mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/mini.py -------------------------------------------------------------------------------- /examples/num_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/num_formats.py -------------------------------------------------------------------------------- /examples/numbers_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/numbers_demo.py -------------------------------------------------------------------------------- /examples/outline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/outline.py -------------------------------------------------------------------------------- /examples/panes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/panes.py -------------------------------------------------------------------------------- /examples/panes2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/panes2.py -------------------------------------------------------------------------------- /examples/panes3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/panes3.py -------------------------------------------------------------------------------- /examples/parse-fmla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/parse-fmla.py -------------------------------------------------------------------------------- /examples/pattern_examples.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/pattern_examples.xls -------------------------------------------------------------------------------- /examples/protection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/protection.py -------------------------------------------------------------------------------- /examples/python.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/python.bmp -------------------------------------------------------------------------------- /examples/row_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/row_styles.py -------------------------------------------------------------------------------- /examples/row_styles_empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/row_styles_empty.py -------------------------------------------------------------------------------- /examples/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/simple.py -------------------------------------------------------------------------------- /examples/sst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/sst.py -------------------------------------------------------------------------------- /examples/unicode0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/unicode0.py -------------------------------------------------------------------------------- /examples/unicode1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/unicode1.py -------------------------------------------------------------------------------- /examples/unicode2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/unicode2.py -------------------------------------------------------------------------------- /examples/wsprops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/wsprops.py -------------------------------------------------------------------------------- /examples/xlwt_easyxf_simple_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/xlwt_easyxf_simple_demo.py -------------------------------------------------------------------------------- /examples/zoom_magnification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/examples/zoom_magnification.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bitmaps.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/bitmaps.xls -------------------------------------------------------------------------------- /tests/less_simple.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/less_simple.xls -------------------------------------------------------------------------------- /tests/mini.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/mini.xls -------------------------------------------------------------------------------- /tests/python.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/python.bmp -------------------------------------------------------------------------------- /tests/simple.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/simple.xls -------------------------------------------------------------------------------- /tests/test_biff_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_biff_records.py -------------------------------------------------------------------------------- /tests/test_bitmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_bitmaps.py -------------------------------------------------------------------------------- /tests/test_by_name_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_by_name_functions.py -------------------------------------------------------------------------------- /tests/test_compound_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_compound_doc.py -------------------------------------------------------------------------------- /tests/test_easyxf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_easyxf.py -------------------------------------------------------------------------------- /tests/test_mini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_mini.py -------------------------------------------------------------------------------- /tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_simple.py -------------------------------------------------------------------------------- /tests/test_unicode1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_unicode1.py -------------------------------------------------------------------------------- /tests/test_unicodeutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_unicodeutils.py -------------------------------------------------------------------------------- /tests/test_worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/test_worksheet.py -------------------------------------------------------------------------------- /tests/unicode1.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/unicode1.xls -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/xlwt_easyxf_simple_demo.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tests/xlwt_easyxf_simple_demo.xls -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/tox.ini -------------------------------------------------------------------------------- /xlwt/BIFFRecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/BIFFRecords.py -------------------------------------------------------------------------------- /xlwt/Bitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/Bitmap.py -------------------------------------------------------------------------------- /xlwt/Cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/Cell.py -------------------------------------------------------------------------------- /xlwt/Column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/Column.py -------------------------------------------------------------------------------- /xlwt/CompoundDoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/CompoundDoc.py -------------------------------------------------------------------------------- /xlwt/ExcelFormula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/ExcelFormula.py -------------------------------------------------------------------------------- /xlwt/ExcelFormulaLexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/ExcelFormulaLexer.py -------------------------------------------------------------------------------- /xlwt/ExcelFormulaParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/ExcelFormulaParser.py -------------------------------------------------------------------------------- /xlwt/ExcelMagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/ExcelMagic.py -------------------------------------------------------------------------------- /xlwt/Formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/Formatting.py -------------------------------------------------------------------------------- /xlwt/Row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/Row.py -------------------------------------------------------------------------------- /xlwt/Style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/Style.py -------------------------------------------------------------------------------- /xlwt/UnicodeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/UnicodeUtils.py -------------------------------------------------------------------------------- /xlwt/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/Utils.py -------------------------------------------------------------------------------- /xlwt/Workbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/Workbook.py -------------------------------------------------------------------------------- /xlwt/Worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/Worksheet.py -------------------------------------------------------------------------------- /xlwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/__init__.py -------------------------------------------------------------------------------- /xlwt/antlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/antlr.py -------------------------------------------------------------------------------- /xlwt/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/compat.py -------------------------------------------------------------------------------- /xlwt/excel-formula.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-excel/xlwt/HEAD/xlwt/excel-formula.g --------------------------------------------------------------------------------