# ---------------------------------------------------------------------------------------------------------------------- # The Secondo Python API (pySecondo) # Victor Silva (victor.silva@posteo.de) # October 2019 # ---------------------------------------------------------------------------------------------------------------------- # Module # ---------------------------------------------------------------------------------------------------------------------- # Secondo Messages # secondomessages.py # ---------------------------------------------------------------------------------------------------------------------- """ The module Secondo Messages contains the start and end strings of the responses to an inquiry or a command from the |sec| server. """ SECONDO_OK = '' SECONDO_INTRO_START = '' SECONDO_INTRO_END = '' SECONDO_ERROR_START = '' SECONDO_ERROR_END = '' SECONDO_CONNECT_START = '\n' SECONDO_CONNECT_END = '\n' SECONDO_DISCONNECT_END = '\n' SECONDO_COMMAND_START = '\n' SECONDO_COMMAND_END = '\n' SECONDO_MESSAGE_START = '' SECONDO_MESSAGE_END = '' SECONDO_RESPONSE_START = '' SECONDO_RESPONSE_END = '' SECONDO_PROGRESS = 'progress'