core
Fill in a module description here
convert
convert (path:str, file_glob:str='*.csv', out_file:str='output.xlsx', recursive:bool=True, delimiter=',', quotechar='"', symlinks:bool=True, file_re:str=None, folder_re:str=None, skip_file_glob:str=None, skip_file_re:str=None, skip_folder_re:str=None)
Convert csv file(s) into an excel file, if multiple csvs put on tabs.
| Type | Default | Details | |
|---|---|---|---|
| path | str | path to searching for *.csv files | |
| file_glob | str | *.csv | Only include files matching glob |
| out_file | str | output.xlsx | output excel file |
| recursive | bool | True | search subfolders |
| delimiter | str | , | delimiter to use |
| quotechar | str | ” | quote character to escape the delimiter |
| symlinks | bool | True | follow symlinks? |
| file_re | str | None | Only include files matching regex |
| folder_re | str | None | Only enter folders matching regex |
| skip_file_glob | str | None | Skip files matching glob |
| skip_file_re | str | None | Skip files matching regex |
| skip_folder_re | str | None | Skip folders matching regex, |