What files does IronPython require in the C:Python27 folder?
We use IronPython 2.7 in a desktop app, which is used to programmatically run simple Python scripts which might import standard modules like ‘sys’, ‘time’, and so on. It retrieves these from the C:PythonLib folder, which is passed to ScriptEngine.SetSearchPaths()
.
Different ways to create IronPython script engine
I currently use IronPython 2, and create my ScriptEngine instances using code like this:
How to Use Python as a “Macro” runner for a C# Application
I am working on an application that the user may wish to automate some features of (but we don’t know what at the moment) I would like to provide them some kind of scripting interface so they can play with application more freely.
How to Use Python as a “Macro” runner for a C# Application
I am working on an application that the user may wish to automate some features of (but we don’t know what at the moment) I would like to provide them some kind of scripting interface so they can play with application more freely.