.. _devel-faq: Natron Python FAQ ================= Here are a few frequently asked questions. There may be more answers in the `Natron forum `_, especially in the `All About Natron Python Scripting `_ topic. Q: How can I get the location of the current Natron executable? :: import sys print(sys.executable) Q: How can I get all widgets from a :doc:`modal dialog `? :doc:`PythonReference/NatronGui/PyModalDialog` inherits from `Qdialog `_, which inherits from `QObject `_, which has a `QObject::children() `_ method.