So am trying to read .mpp file in python using MPXJ library, i was able to get task Name, respective task start/end date etc. I want to get the respective type for these datas as well. And also I want to read all the columns and their respective types as well including their dependency attachments and any other custom fields as well. I couldn't find this in their documentation which function i should use hence asking here
Whole code
import jpype
import mpxj
jpype.startJVM()
from net.sf.mpxj.reader import UniversalProjectReader
project = UniversalProjectReader().read('example.mpp')
print("Tasks")
tasks = project.getTasks()
for task in tasks:
print(task.getID().toString() + "\t" + task.getName() + "\t" + task.getStart() + "\t" + task.getFinish() + "\t" + task.getDuration())
Custom fields code which is not working
customFields = project.getCustomFields()
print(customFields)
Unfortunately I don't have a lot of examples in Python for MPXJ yet, but I'm working on it! In the meantime I've adapted your code to show how you can retrieve details of all the custom fields present in a project, then filter those down just to task fields, and then finally use the field type to dynamically retrieve the values for the custom fields, and also use the "alias" as a column heading:
As the Python version of MPXJ is a wrapper around the underlying Java version, you'll find a lot of useful details about the classes and methods available by consulting the Javadoc http://www.mpxj.org/apidocs/index.html .