I need to make a Python script to edit a specific line from the config. Assume:
{ "name": "Insane Augewehr", "type": "Premium Workshop Augewehr Skin", "description": "Painted on his gun, the absolute madman!\n\n<color=#64c819>Workshop Contributors:\nDebski</color>\n\nWhen equipped this applies the <color=#64c819>Insane</color> appearance to the Augewehr in-game.", "name_color": "64c819", "itemdefid": 757, "marketable": false, "scraps": 0, "item_id": 1362, "item_skin": 170, "item_effect": 0, "vehicle_id": 0 },
From this part of the config, I need to suppose we replace item_id with 1200 and item_skin with 175. In the end, it should look like this:
{ "name": "Insane Augewehr", "type": "Premium Workshop Augewehr Skin", "description": "Painted on his gun, the absolute madman!\n\n<color=#64c819>Workshop Contributors:\nDebski</color>\n\nWhen equipped this applies the <color=#64c819>Insane</color> appearance to the Augewehr in-game.", "name_color": "64c819", "itemdefid": 757, "marketable": false, "scraps": 0, "item_id": 1200, "item_skin": 175, "item_effect": 0, "vehicle_id": 0 },
Tell me, how can you implement a similar replacement through python?