Bonjour, avec la librairie win32 de python tu peux manipuler des fichier excel avec les composants win32.
Ensuite, tu peux faire appel aux fonctions qui sont normalement disponible dans les macros excel vbscript.
Code Python :
import win32com.client
xl = win32com.client.Dispatch("Excel.Application")
wb = xl.Workbooks.Open(filename)
...
wb.Close()
xl.Quit()
Tu peux également regarder du coté de http://www.python-excel.org/