# FuckExcel **Repository Path**: RhythmLian/FuckExcel ## Basic Information - **Project Name**: FuckExcel - **Description**: load *.xls* as two-dimensional array(one base) - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-12-25 - **Last Updated**: 2022-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FuckExcel - Easier to operate excel. ## Install ```shell python3 setup.py install ``` ## DEMO ### demo - 1 ```python from FuckExcel import getFuckExcel fuck_excel = getFuckExcel('./A.xlsx', with_numba=True) # default with_numba is False fuck_excel[5:10, 5:10] = 'init' # or ['init', 'init', 'init', 'init', 'init'] fuck_excel.save() ``` - Demo will create `A.xlsx` and set init value. ![demo](demo.png) ### demo - 2 ```python from FuckExcel import getFuckExcel fuck_excel = getFuckExcel('./A.xlsx', with_numba=True) # default with_numba is False fuck_excel[5:, 1] = [1, 2, 3, 4, 5] # set [5][1]~[10][1] = [1, 2, 3, 4, 5] fuck_excel.save() ```