Interaktive Python-Konsole ausführen

Die interaktive Python-Konsole, auch als Python-Interpreter oder Python-Shell bekannt, bietet Programmierern eine schnelle Möglichkeit, Befehle auszuführen und Code auszuprobieren und zu testen, ohne eine Datei zu erstellen. Die Introspektion von UNO-Objekten sowie die Dokumentation zu LibreOffice Python-Modulen können vom Terminal abgerufen werden.

note

Von einem mit vollem Funktionsumfang installierten LibreOffice-Paket aus findet ein Basic- oder Python-Skript die eingebettete Kopie der Python-Konsole.


Ein Basic-Makro verwenden

Diese Routine greift auf das Klassenmodul "Platform" zurück, um das tatsächliche Betriebssystem zu unterscheiden.


        Sub interpreter_console
            Set opsys = New Platform
            ps = CreateUnoService("com.sun.star.util.PathSettings")
            install_path = ConvertFromURL(ps.Module)
            If opsys.isMacOSX Then
                cmd = "/System/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal "
                pgm_path = Array( install_path,"..","Resources","python" )
            ElseIf opsys.isLinux Then
                cmd = "x-terminal-emulator -e "
                pgm_path = Array(install_path,"python")
            ElseIf opsys.isWindows Then
                cmd = ""
                pgm_path = Array("python")
            EndIf
            python_interpreter = Join( pgm_path, GetPathSeparator() )
            Shell(cmd + python_interpreter)
        End Sub
    

Ein Python-Makro verwenden


        # -*- 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
            
    

Beispiel einer Ausgabe

Interaktive Python-Konsole

Alternative Konsole

Verwenden Sie die Konsole APSO-Erweiterung als eine Alternative:

APSO-Konsole

Bitte unterstützen Sie uns!