0

Is there a equivalent tool in python like XJC? XJC takes a schema and generates Java classes. One can populate a in-memory data-structure using these classes. No need to write them by hand.

Dilawar
  • 4,808
  • 9
  • 37
  • 54

1 Answers1

1

You can try PyXB: http://pyxb.sourceforge.net

PyXB (“pixbee”) is a pure Python package that generates Python source code for classes that correspond to data structures defined by XMLSchema.

Joe Young
  • 5,456
  • 3
  • 23
  • 24