# FastExcel **Repository Path**: absolutely_unexpected/fastexcel ## Basic Information - **Project Name**: FastExcel - **Description**: 像二维数组一样操作Excel文件 从原作者fork过来的项目,原名称不太好听,fxxkexcel,改成fastexcel了。。。 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-12-21 - **Last Updated**: 2022-01-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## FastExcel - Easier to operate excel. ### demo - 1 ```python from FastExcel import FastExcel fast_excel = FastExcel('./A.xlsx') fast_excel[5:10, 5:10] = 'init' # or ['init', 'init', 'init', 'init', 'init'] fast_excel.save() ``` - Demo will create `A.xlsx` and set init value. ![demo](demo.png) ### demo - 2 ```python from FastExcel import FastExcel fast_excel = FastExcel('./A.xlsx') fast_excel[5:, 1] = [1, 2,, 3, 4, 5] # set [5][1]~[10][1] = [1, 2, 3, 4, 5] fast_excel.save() ```