Yebach
Yebach

Reputation: 1691

create ms project xml file using python

I am using python 2.7.

I would like to create a xml file like the one ms project creates. I need it (the file) to import it to RadiantQ jQuery Gantt.

any suggestions?? thank you

Upvotes: 2

Views: 2819

Answers (2)

Jon Iles
Jon Iles

Reputation: 2579

I would suggest trying MPXJ, if the platform you are working on allows interoperation between Python and Java or .Net.

Similar question and answer here with some suggestions for interoperability tools.

Upvotes: 1

ahadcse
ahadcse

Reputation: 499

There are lots of libraries available in python to deal with xml files. I personally used ElementTree. Below link is the summary tutorial for this:

    http://docs.python.org/2.7/library/xml.etree.elementtree.html#parsing-xml

Upvotes: 0

Related Questions