============ wapi.project ============ Use this module to interact with the wizard project infos. .. py:function:: wapi.project.set(project_name, project_password) Log the given project in wizard. :param project_name: The project name :type project_name: str :param project_password: The project password :type project_password: str :return: The success. :rtype: bool .. py:function:: wapi.project.name() Return the current wizard project name. :return: The current wizard project name. :rtype: str .. py:function:: wapi.project.path() Return the current wizard project path. :return: The current wizard project path. :rtype: str .. py:function:: wapi.project.change_password(old_password, new_password, administrator_pass) Modify the project password, you will need the administrator password to do this action. :param old_password: The project old password :type old_password: str :param new_password: The project new password :type new_password: str :param administrator_pass: The repostiory administrator password :type administrator_pass: str :return: The success. :rtype: bool .. py:function:: wapi.project.set_software_executable(software_name, executable_path) Set the given software executable path to the software :param software_name: The software name :type software_name: str :param executable_path: The path of the executable :type executable_path: str :return: The success. :rtype: bool .. py:function:: wapi.project.set_software_batch_executable(software_name, batch_executable_path) Set the given software batch executable path to the software :param software_name: The software name :type software_name: str :param batch_executable_path: The path of the batch envexecutable :type batch_executable_path: str :return: The success. :rtype: bool