Python対話コンソールの実行

PythonインタープリタやPythonシェルとも呼ばれるPython対話コンソールを使うと、ファイルを作成せずにコマンドを実行したり、コードを試したり、テストしたりできます。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対話コンソール

ご支援をお願いします!