首頁 > 軟體

Python pywin32實現word與Excel的處理

2022-08-19 22:01:30

pywin32處理Word和Excel的一些事

我們知道Python處理word和Excel的可以藉助第三庫python-docx、xlrd、xlwt和openpyxl等實現,但這些模組只支援基本的讀寫操作,如果要實現一些較為深入功能,就要看模組是否有相應功能支援了。
例如將word和Excel轉為pdf,在word和Excel裡面執行VBA實現特殊功能,在Excel裡面生成資料透視表、設定Excel的頁面設定等等。
除了使用上述模組之外,還可以直接使用pywin32實現word和Excel的操作,其底層原理是通過win32com實現操作,不過pywin32目前只能在Windows上執行,對linux和macos不太友好,並且電腦必須安裝wps或微軟office,這也是pywin32的一些侷限。

pywin32將Word轉pdf

pywin32處理Word大多數用於格式轉換,因為一般讀寫操作都可以藉助python-docx實現,除非真的有特殊要求,但大部分企業對Wrod操作不會有太多複雜需求。

廢話不多說,直接上程式碼:

pythoncom.CoInitialize()
file_path = 'xxxx'
try:
	word = wc.gencache.EnsureDispatch('word.application')
except:
	try:
		word = wc.gencache.EnsureDispatch('kwps.application')  # 如果使用wps
	except:
		word = wc.gencache.EnsureDispatch('wps.application')  # 如果使用wps
newpdf = word.Documents.Open(file_path)
word.Visible = 0
newpdf.SaveAs(f'xxxx.pdf', FileFormat=17)
newpdf.Close()
pythoncom.CoUninitialize()

使用pywin32建立Word物件可以使用微軟Excel(word.application)或Wps實現(kwps.application或wps.application),wps的kwps和wps主要是wps版本不同導致的,這個要看電腦安裝是那個版本的Wps。
使用win32com呼叫com元件的時候,需要用pythoncom.CoInitialize初始化一下,最後還需要用pythoncom.CoUninitialize釋放資源。

pywin32將Excel格式處理並轉pdf

由於pywin32處理Excel沒有相應官方檔案說明,也沒有相應原始碼,那怎辦?實際上,官方檔案在微軟官方檔案有說明的,開啟微軟官方檔案可以發現,檔案是以VBA為主,換句話說,我們需要將VBA程式碼轉換為Python程式碼。
如果不太熟悉VBA程式碼,可以開啟Excel錄製宏程式碼,錄製過程中將使用者操作Excel轉換為VBA程式碼,

如圖所示:

關於Excel設定開發者工具,如何錄製VBA程式碼這個自行百度一下了。
然後從VBA程式碼在官方檔案找到對應屬性,比如VBA程式碼的PageSetup是Excel的頁面設定,在官方檔案找到PageSetup相關屬性方法

按照上述,VBA轉換對應Python如下:

from win32com import client as wc

try:
    excel = wc.DispatchEx('Excel.Application')
except:
    try:
        excel = wc.DispatchEx('ket.Application')
    except:
        excel = wc.DispatchEx('et.Application')
newpdf = excel.Workbooks.Open(r'C:UsersAdministratorDesktopttabc.xls')
excel.DisplayAlerts = 0
# 獲取第一個sheet
all_sheets = [sheet.Name for sheet in newpdf.Sheets]
ws_source = newpdf.Worksheets(all_sheets[0])
# 設定頁面設定
ws_source.PageSetup.LeftHeader = ""
ws_source.PageSetup.CenterHeader = ""
ws_source.PageSetup.RightHeader = ""
ws_source.PageSetup.LeftFooter = ""
ws_source.PageSetup.CenterFooter = ""
ws_source.PageSetup.RightFooter = ""
# ws_source.PageSetup.FitToPagesTall = 0
ws_source.PageSetup.FirstPageNumber = True
ws_source.PageSetup.LeftMargin = 0
ws_source.PageSetup.RightMargin = 0
ws_source.PageSetup.TopMargin = 0
ws_source.PageSetup.BottomMargin = 0
ws_source.PageSetup.HeaderMargin = 0
ws_source.PageSetup.FooterMargin = 0
# ws_source.PageSetup.PaperSize = 1
ws_source.PageSetup.Orientation = 2  # 橫向轉換pdf
ws_source.PageSetup.FitToPagesWide = 1  # 所有列壓縮在一頁紙
ws_source.PageSetup.FitToPagesTall = False
ws_source.PageSetup.Zoom = False  # 所有列壓縮在一頁紙
ws_source.PageSetup.CenterVertically = True
ws_source.PageSetup.CenterHorizontally = True
ws_source.PageSetup.Draft = False
ws_source.Select()
# 行列自動調整
# ws_source.Columns.AutoFit()
# ws_source.Rows.AutoFit()
# 設定Excel的邊框
rows = ws_source.UsedRange.Rows.Count
cols = ws_source.UsedRange.Columns.Count
ws_source.Range(ws_source.Cells(1, 1), ws_source.Cells(rows, cols)).Borders.LineStyle = 1
ws_source.Range(ws_source.Cells(1, 1), ws_source.Cells(rows, cols)).Borders.TintAndShade = 0
ws_source.Range(ws_source.Cells(1, 1), ws_source.Cells(rows, cols)).Borders.Weight = 1
# 轉換為PDF檔案
newpdf.ExportAsFixedFormat(0, r'C:UsersAdministratorDesktopttabc.pdf')
newpdf.Close()
excel.Quit()

從Python程式碼看到,它與VBA程式碼十分相似,也就是說,VBA能實現的功能,Python也能實現,說明了,程式語言只是工具,不管是什麼工具,只要玩的溜就行了。

總結

從微軟官方檔案看到,VBA還支援office所有軟體,如Access、outlook、ppt等等開發,那麼Python使用pywin32也能實現這些開發。不管如此,還可以實現Windows其他功能開發,如自動列印功能使用win32print,這都是pywin32模組。

到此這篇關於Python pywin32實現word與Excel的處理的文章就介紹到這了,更多相關Python word和Excel處理內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com