Beispiel #1
0
def get_anchors():
    result = ipc.send('{"f":"dom","args":"' + text + '","child":"anchors"}')
    return result
Beispiel #2
0
def getElementById(element):
    result = ipc.send('{"f":"dom","args":"' + element + '","child":"gebi"}')
    return result
Beispiel #3
0
def error ( text:str = "") :
    '''
        Outputs an error message.
    '''
    ipc.send('{"f":"err","args":"' + text + '"}')
Beispiel #4
0
def warn ( text:str = "") :
    '''
        Outputs a warning message.
    '''
    ipc.send('{"f":"warn","args":"' + text + '"}')
Beispiel #5
0
def log ( text:str = "") :
    '''
        For general output of logging information.
    '''
    ipc.send('{"f":"log","args":"' + text + '"}')
Beispiel #6
0
def info ( text:str = "") :
    '''
        Informative logging of information.
    '''
    ipc.send('{"f":"info","args":"' + text + '"}')