2

Do you know of any Python module for resources (resx files) manipulation?

P.S.: I know I could write a custom wrapper on top of base XML processor available, I'm just checking out before going to hack my own code...

Ali
  • 1,369
  • 14
  • 37
  • do you have any pointers on how you did it. I have a usecase where I need to create a .resx file from my models data which consists of translations. – Swapnil Sawant Nov 04 '20 at 14:27
  • 1
    I'm afraid it's been a while since I asked this question, and since then I moved on to other things. – Ali Nov 06 '20 at 16:56

1 Answers1

1

This question Resources (resx) maintenance in big projects has an answer pointing to some .NET source code for a tool to manage RESX resources. Since IronPython can interface with any existing .NET objects written in C#, you should be able to adapt that RESX tool source code into an object that you can then use in IronPython.

Community
  • 1
  • 1
Michael Dillon
  • 31,190
  • 5
  • 66
  • 104