Sparx Systems Forum

Enterprise Architect => Automation Interface, Add-Ins and Tools => Topic started by: Tafros on September 11, 2019, 04:31:55 pm

Title: Integrate EA API using Python
Post by: Tafros on September 11, 2019, 04:31:55 pm
Hi,
Is there any documentation having proper integration steps for EA API using Python?

Any help would be great!.
Title: Re: Integrate EA API using Python
Post by: qwerty on September 11, 2019, 07:05:30 pm
It's actually quite simple:
Code: [Select]
eaApp = win32com.client.Dispatch("EA.App")
eaRep = eaApp.Repository
I have a couple of wrapper classes (written for a customer and so not open source) on top of that.

q.