ver Jan21stv2

fixed bugs
updated parts of configs
This commit is contained in:
David Chang
2024-01-21 23:55:04 +08:00
parent 4514c32269
commit 552491f765
7 changed files with 104 additions and 139 deletions

View File

@@ -7,6 +7,25 @@
pip install python-docx
```
## LibreOffice Calc
### Required Libraries
```
openpyxl
pandas
lxml
xmltodict
```
### How to Generate CSV from XLSX
```sh
libreoffice --convert-to "csv:Text - txt - csv (StarCalc):44,34,UTF8,,,,false,true,true,false,false,1" --out-dir /home/user /home/user/abc.xlsx
```
This command will generate `abc-Sheet1.csv` under `/home/user`. The last `1` in the conversion options indicates the sheet number (starting from 1) to export. Detailed usage should be referred to at [CSV Filter Options](https://help.libreoffice.org/latest/ro/text/shared/guide/csv_params.html).
## Chrome
### Starting Chrome with Remote Debugging for Python