вы можете использовать Win32 API для Python, который включает в себя модуль COM:
import win32com.client as win32
def getRevisionNumberWord(path):
word = win32.gencache.EnsureDispatch('word.application')
doc = word.Documents.Open(path, Visible = False)
props = list(doc.BuiltInDocumentProperties)
revNumber = int(props[7].value) # the "Revision number" property is the index 7 of the properties list
doc.Close()
word.Quit()
return revNumber