Send_Request(
method : str, #The Method of your procedure call.
auto_id: bool = False, #if you want to create an automatic ID for your request.
id : str = None, # if auto_id is set to false, pass an ID by hand,
params : dict = {}, #The data you want to send.
peer = None #the ID of the specific connected pier you want to send to.
)
Send_Response(
id : str, #The ID of an incoming request.
result: dict # Calculated responseDATA
)
Send_Error(
id : str, #The ID of an incoming request.
error: dict #Calculated responseDATA
)