Køyring av Python interaktiv konsoll

Pythons interaktive konsoll, også kalla Pythontolkaren eller Python skal, gjev programmerarar ein rask måte for å utføre kommandoar og å prøva ut og testa koden utan å laga ei fil. Du kan få dokumentasjonen for UNO-objekt og LibreOffice Pythonmodular frå terminalen.

note

Er ei fullstendig LibreOffice-pakke med alle funksjonar installert, vil eit Basic- eller Python-skript finna den innebygde kopien av Python-konsollen.


Bruka ein Basic-makro

Denne rutinen brukar Platform-klassemodul for å finna det gjeldande operativsystemet.


        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
    

Bruka ein 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 konsoll

Alternativ konsoll

APSO utvidingskonsoll som eit alternativ:

APSO konsoll

Støtt oss!