'How to change an Excel files Company property with Python

Excel files have a company property as shown below:

enter image description here

I've tried using openpyxl however it does not have a company property which I can change

import openpyxl
fh = openpyxl.load_workbook(r"C:\Users\example\Downloads\example.xlsx")

obj = fh.properties   #To get old properties
   # print old properties
    
obj = dir(obj)
obj


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source