Brug af Pythons interaktive skal

Pythons interaktive konsol, også kendt som Python-fortolkeren eller Pythons skal, giver programmører en genvej til at udføre kommandoer, lave forsøg og afprøve kode uden at oprette en fil. LibreOffice's dokumentation til Python-moduler kan skaffes fra terminalen.

note

Fra en LibreOffice installation med alle funktioner installeret, vil et Basic- eller Python-script finde den indbyggede kopi af Python-konsollen.


Brug af Basic-makro

Denne rutine bygger på Platform class module for at afgøre den faktiske operativsystem.


        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
    

Brug af Python-makro


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

Eksempel på resultat

Python Interaktiv konsol

Alternativ konsol

Brug APSO udvidelseskonsol som et alternativ:

APSO konsol

Støt os venligst!