python保存为xlsb_How can I convert a XLSB file to csv using python?
可以將文章內容翻譯成中文,廣告屏蔽插件可能會導致該功能失效(如失效,請關閉廣告屏蔽插件后再試):
問題:
I have been provided with a xlsb file full of data. I want to process the data using python. I can convert it to csv using excel or open office, but I would like the whole process to be more automated. Any ideas?
Update: I took a look at this question and used the first answer: import subprocess subprocess.call("cscript XlsToCsv.vbs data.xlsb data.csv", shell=False)
I realize it's an issue in encoding, but it's possible to retain the original encoding converting the xlsb file to csv ?
回答1:
Most popular Excel python packages openpyxl and xlrd have no support for xlsb format (bug tracker entries: openpyxl, xlrd).
So I'm afraid there is no native python way =/. However, since you are using windows, it should be easy to script the task with external tools.
I would suggest taking look at Convert XLS to XLSB Programatically?. You mention python in title but the matter of the question does not imply you are strongly coupled to it, so you could go pure c# way.
If you feel really comfortable only with python one of the answers there suggests a command line tool under a fancy name of Convert-XLSB. You could script it as an external tool from python with subprocess.
I know this is not a good answer, but I don't think there is better/easier way as of now.
回答2:
I also looked at the problem and the following worked for me. First opening the file in excel via python and than saving it to different file. Bit of a workaround but I like it more than other solutions. In example I use file format 6 which is CSV but you can also use other ones. import win32com.client excel = win32com.client.Dispatch("Excel.Application") excel.DisplayAlerts = False excel.Visible=False doc = excel.Workbooks.Open("C:/users/A295998/Python/@TA1PROG3.xlsb") doc.SaveAs(Filename="C:\\users\\A295998\\Python\\test5.csv",FileFormat=6) doc.Close() excel.Quit()
回答3:
I've encountered this same problem and using pyxlsb does it for me: from pyxlsb import open_workbook with open_workbook('HugeDataFile.xlsb') as wb: for sheetname in wb.sheets: with wb.get_sheet(sheetname) as sheet: for row in sheet.rows(): values = [r.v for r in row] # retrieving content csv_line = ','.join(values) # or do your thing
回答4:
In my previous experience, i was handling converting xlsb using libreoffice command line utility,
In ruby i just execute system command to call libreoffice for converting xlsb format to csv: `libreoffice --headless --convert-to csv your_csv_file.csv --outdir /path/csv`
and to change the encoding i use command line to using iconv, using ruby : `iconv -f ISO-8859-1 -t UTF-8 your_csv_file.csv > new_file_csv.csv`
回答5:
XLSB is a binary format and I don't think you'll be able to parse it with current python tools and packages. If you still want to somehow automate the process with python you can do what the others have told you and script that windows CLI tool. Calling the .exe from the command line with subprocess, and passing an array of the files you want to convert.
I.e: with a script similar to this one you could convert all the .xlsb files that you place in the "xlsb" folder to .csv format...
xlsb_to_csv.py #!/usr/bin/env python import os files = [f for f in os.listdir('./xlsb')] for f in files: subprocess.call("ConvertXLS.EXE " + str(f) + " --arguments", shell=True)
Note: the Windows command is pseudocode... I use a similar approach to batch-convert stuff in headless windows servers for testing purpouses. You just have to figure out the exe location and the windows command...
Hope it helps... good luck!
回答6:
I think you can do this using pyuno. This blog entry shows how to convert xls files to csv, and as open office supports xlsb files since version 3.2, this code might just work for you. You will have to go through hassle of setting up the pyuno environment though..
回答7:
The script you reference seem to use the ActiveX interface to Excel, and save via its Workbook.SaveAs method. According to the MSDN documentation this method have a TextCodepage argument which may be helpful.
Sidenote: You can rewrite the VB script in python, see this question.
總結
以上是生活随笔為你收集整理的python保存为xlsb_How can I convert a XLSB file to csv using python?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【WLAN】【调试】使用wireshar
- 下一篇: 计算道路超高lisp_基于Visual