skip to Main Content

How to call a Perl script with couple of arguments with html tag from within a Python script using Subprocess/shell? HTML tagging not working

Within a python script I have a function which looks as below: def NotifierFunc(Mail, Ticket_Num, Open_DtTime): cmd = "/home/path/MyPerlScript.pl --channel 'MyChannel' --userid 'itsme' --message 'Hello <at>"+Mail+"<at> : The ticket <a href='`echo 'http://snview/'"+Ticket_Num+">`echo "+Ticket_Num+"`</a> is not closed for more than 72…

VIEW QUESTION

is there any other function to load json in python

import json response_message = { 'id': 'chatcmpl-9Iof6Uwf74o9N6uKsyxIVMFFIDJYC', 'object': 'chat.completion', 'created': 1714271676, 'model': 'gpt-3.5-turbo-0125', 'choices': [ { 'index': 0, 'message': { 'role': 'assistant', 'content': 'sfsdfs {n "plant": {n "light blocker": 1,n "give water": 0,n "spray water": 0,n "conditions": {n "humidity (%)":…

VIEW QUESTION

Reading a JSON file

I need to write a file that can be appended (and not overwritten!) and then to read this file. This is the code I wrote: import io, json def WriteJSON(): Taskslist = [["1Name", "1c:/path/file.ext", "1Some other text", 10, ["a", "b",…

VIEW QUESTION
Back To Top
Search