Python console/de: Difference between revisions

From FreeCAD Documentation
(Created page with "Die Konsole ist auch in der Lage, den Dokumentationsstring einer bestimmten Funktion anzuzeigen, wenn die öffnende Klammer geschrieben wird, z.B. {{incode|function(}}")
(Created page with "{{Caption|Beispiel Python Code, der Objekte in der 3D Ansicht erzeugt.}}")
Line 24: Line 24:
[[File:FreeCAD_Python_console_example.png|800px]]
[[File:FreeCAD_Python_console_example.png|800px]]


{{Caption|Example Python code that produces objects in the 3D view.}}
{{Caption|Beispiel Python Code, der Objekte in der 3D Ansicht erzeugt.}}


The FreeCAD initialization scripts automatically load some modules, and define some aliases. Therefore, in the Python console these are available
The FreeCAD initialization scripts automatically load some modules, and define some aliases. Therefore, in the Python console these are available

Revision as of 20:19, 19 December 2019

(Januar 2020) FreeCAD wurde ursprünglich für die Arbeit mit Python 2 entwickelt. Da Python 2 im Jahr 2020 das Ende seiner Lebensdauer erreicht hat, wird die zukünftige Entwicklung von FreeCAD ausschließlich mit Python 3 erfolgen und die Abwärtskompatibilität wird nicht unterstützt.

Einleitung

Die Python-Konsole ist ein Feld, das eine Instanz des Python Interpreters ausführt, mit dem FreeCAD Prozesse gesteuert, Objekte und deren Eigenschaften erstellt und geändert werden können.

Die Python-Konsole in FreeCAD verfügt über eine grundlegende Syntaxhervorhebung, die es ermöglicht, mit verschiedenen Stilen und Farben, Kommentaren, Zeichenketten, numerischen Werten, eingebauten Funktionen, gedruckter Textausgabe und Trennzeichen wie Klammern und Kommata zu unterscheiden. Diese Eigenschaften der Konsole können im Voreinstellungseditor konfiguriert werden.

Die Python-Konsole zeigt Meldungen an, wenn FreeCAD gerade gestartet wurde.

Skriptsprache

Für absolute Anfänger, siehe: Einführung in Python, und Python Skript Tutorial.

Siehe auch: FreeCAD scripting Grundlagen, und Scripted Objekte.

Die Python Konsole kann grundlegende Code Vervollständigung durchführen, wenn ein Punkt nach einem Objekt steht; sie zeigt öffentliche Methoden und Attribute (Variablen) des aktuellen Objekts (Klasse), zum Beispiel obj.

Die Konsole ist auch in der Lage, den Dokumentationsstring einer bestimmten Funktion anzuzeigen, wenn die öffnende Klammer geschrieben wird, z.B. function(

Beispiel Python Code, der Objekte in der 3D Ansicht erzeugt.

The FreeCAD initialization scripts automatically load some modules, and define some aliases. Therefore, in the Python console these are available

App = FreeCAD
Gui = FreeCADGui

Therefore these are equal

App.newDocument()
FreeCAD.newDocument()

Note: these pre-loaded modules and aliases are only available from the Python console embedded inside the FreeCAD program. If you use FreeCAD as a library in an external program, you must remember to load the FreeCAD and FreeCADGui modules and define the necessary aliases if you wish.

Actions

Right click on the Python console shows some commands:

  • Copy: stores the selected text in the clipboard for later pasting; it is disabled if nothing is selected.
  • Copy command: stores the selected command in the clipboard for later pasting; it is disabled if nothing is selected.
  • Copy history: copy the entire history of Python commands entered in this session.
  • Save history as: save the entire history of Python commands entered in this session to a text file.
  • Paste: paste previously copied text in the clipboard to the Python console.
  • Select all: selects all text in the Python console.
  • Clear console: erases all commands entered into the Python console. This is useful if the Python console is full of messages and previously entered commands that may be distracting when testing a new function. This is merely aesthetic, as this command doesn't delete existing variables nor clears the imported modules in the session.
  • Insert file name: opens a dialog to search for a file in the system, then it inserts the full path of the file. This is useful to test functions that process an input file, without having to write the entire name in the console, which is error prone. This command does not run the file, and does not import it as a Python module, it just returns the full path of that file.
  • Word wrap: wrap very long lines that exceed the horizontal dimension of the Python console.

Template:Interface