Jump to content

AsteroH

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by AsteroH

  1. On 2/15/2024 at 7:48 PM, appenz said:

    Are you comfortable with (simple) coding? If yes, python is very good at this. For example:
      https://www.geeksforgeeks.org/convert-json-to-csv-in-python/

    As JSON is a more complex structure, there is no 1:1 conversion. You will have to parse through the tree and generate what you want.

    The file isn't recognized by python i think , cause i had this error: 

    JSONDecodeError: Expecting value: line 1 column 1 (char 0)

    using just a simple code :
     

    with open("E:/SteamLibrary/steamapps/common\Kerbal Space Program 2/test.json", 'r') as file:
        data = json.load(file)
×
×
  • Create New...