运行 Python 交互式控制台

Python 交互式控制台,也被称为 Python 解析器或 Python shell,为开发者提供快速执行命令以及不必创建文件就测试代码的途径。可在终端进行 UNO 对象观察以及获取 Collabora Office Python 模块文档。

使用 Basic 宏:


        Sub interpreter_console
            ps = CreateUnoService("com.sun.star.util.PathSettings")
            install_path = ConvertFromURL(ps.Module)
            Shell( install_path + GetPathSeparator() + "python" )
        End Sub
    

使用 Python 宏:


        # -*- coding: utf-8 -*-
        from __future__ import unicode_literals
           
        import uno, os, subprocess
            
        def interpreter_console():
            ctx = XSCRIPTCONTEXT.getComponentContext()
            smgr = ctx.getServiceManager()
            ps = smgr.createInstanceWithContext("com.sun.star.util.PathSettings", ctx)
            install_path = uno.fileUrlToSystemPath(ps.Module)
            pgm = install_path + os.sep + "python"  # Python shell/console path
            subprocess.Popen(pgm)  # Start Python interactive Shell
            
    

用法:

Python 交互式控制台

请支持我们!