0

I store a network graph(basically nodes and links) in database. I have some portions of network in a Visio files. Is it possible to extract nodes and links form this files using PHP or Python? Thanks in advance!

Alex
  • 387
  • 4
  • 16

1 Answers1

2

Yes, it is possible to query visio shape information (shape types, text, connections, etc) programmatically.

Visio provides COM API which you can use form any language which can call COM API, python for example (using e.g. either .NET module (clr) or win32com module).

Here is a similar question: Reading the contents of Microsoft Visio (2010) doc in IronPython

Community
  • 1
  • 1
Nikolay
  • 10,752
  • 2
  • 23
  • 51