He needs help. I don't know how to pass in node-re Payload to Function Python variable = NewDoc at a later stage in python I replace an existing line in the auto file
[
{
"id": "1046fdc339d116e8",
"type": "function",
"z": "6aa251ec168de374",
"name": "Budowanie Emial",
"func": " \nmsg.NewDoc=5555\n \nreturn msg;",
"outputs": 1,
"timeout": "",
"noerr": 0,
"initialize": "",
"finalize": "",
"libs": [],
"x": 235,
"y": 300,
"wires": [
[
"f0e14692235cab36"
]
],
"l": false
},
{
"id": "f0e14692235cab36",
"type": "template",
"z": "6aa251ec168de374",
"name": "",
"field": "payload",
"fieldType": "msg",
"format": "python",
"syntax": "plain",
"template": "import re\n\n \n\ninput_file = \"C:/Node-red/Automat.js\"\noutput_file = \"C:/Node-red/AutomatN.js\"\n\n# Odczytanie pliku\nwith open(input_file, \"r\") as file:\n lines = file.readlines()\n\n# Modyfikacja linii 213 (indeksy od 0, więc 213)\nif len(lines) >= 198:\n lines[197] = lines[197].replace( \"NewDoc\" ,\"NewDoc\" )\n\nif len(lines) >= 213:\n lines[212] = lines[212].replace( \"NewDoc\",\"NewDoc\" )\n \n# Zapisanie zmodyfikowanego pliku\nwith open(output_file, \"w\", encoding=\"utf-8\") as file:\n file.writelines(lines)\n\nprint(f\"Plik został zapisany jako {output_file}\")\n",
"output": "str",
"x": 360,
"y": 400,
"wires": [
[
"46f9ec1180fbf108"
]
]
}
]