Zncl2222 / pyfastexcel

High performace excel writer in python
MIT License
0 stars 0 forks source link

Make FastWriter and NormalWriter easier to use #34

Open Zncl2222 opened 2 months ago

Zncl2222 commented 2 months ago

Rename NormalWriter and FastWriter to make them easier to use without requiring inheritance from a class, similar to how openpyxl's Workbook operates. However, ensure that they still allow for inheritance to write Excel files if needed.

Zncl2222 commented 1 month ago

After some experiments and researches. I found that FastWriter doesn't provide better performance than Workbook and NormalWriter. Therefore the next step is to delete the FastWriter and Rename NormalWriter to StreamWriter. Beside enable the INDEX_SUPPORTED for StreamWriter since expand_rows function has already been optimize in #41