Python/sqlmlutils/sqlbuilder.py [197:215]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                input_params: dict = None,
                output_params: dict = None,
                language_name: str = "Python"):

        """StoredProcedureBuilder SQL stored procedures based on Python functions.

        :param name: name of the stored procedure
        :param script: function to base the stored procedure on
        :param input_params: input parameters type annotation dictionary for the stored procedure
        :param output_params: output parameters type annotation dictionary from the stored procedure
        :param language_name: name of the language to be executed in sp_execute_external_script, if using EXTERNAL LANGUAGE
        """
        if input_params is None:
            input_params = {}
        if output_params is None:
            output_params = {}
        
        output_params[STDOUT_COLUMN_NAME] = str
        output_params[STDERR_COLUMN_NAME] = str
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Python/sqlmlutils/sqlbuilder.py [399:417]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                input_params: dict = None, 
                output_params: dict = None,
                language_name: str = "Python"):
        """StoredProcedureBuilderFromFunction SQL stored procedures based on Python functions.

        :param name: name of the stored procedure
        :param func: function to base the stored procedure on
        :param input_params: input parameters type annotation dictionary for the stored procedure
        Can use function type annotations instead; if both, they must match
        :param output_params: output parameters type annotation dictionary from the stored procedure
        :param language_name: name of the language to be executed in sp_execute_external_script, if using EXTERNAL LANGUAGE
        """
        if input_params is None:
            input_params = {}
        if output_params is None:
            output_params = {}
            
        output_params[STDOUT_COLUMN_NAME] = str
        output_params[STDERR_COLUMN_NAME] = str
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



