Author Topic: Integrate EA API using Python  (Read 11249 times)

Tafros

  • EA User
  • **
  • Posts: 25
  • Karma: +1/-0
    • View Profile
Integrate EA API using Python
« 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!.

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +396/-301
  • I'm no guru at all
    • View Profile
Re: Integrate EA API using Python
« Reply #1 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.