Iciclecreek.AdaptiveExpressions.Python
4.19.0
See the version list below for details.
dotnet add package Iciclecreek.AdaptiveExpressions.Python --version 4.19.0
NuGet\Install-Package Iciclecreek.AdaptiveExpressions.Python -Version 4.19.0
<PackageReference Include="Iciclecreek.AdaptiveExpressions.Python" Version="4.19.0" />
paket add Iciclecreek.AdaptiveExpressions.Python --version 4.19.0
#r "nuget: Iciclecreek.AdaptiveExpressions.Python, 4.19.0"
// Install Iciclecreek.AdaptiveExpressions.Python as a Cake Addin #addin nuget:?package=Iciclecreek.AdaptiveExpressions.Python&version=4.19.0 // Install Iciclecreek.AdaptiveExpressions.Python as a Cake Tool #tool nuget:?package=Iciclecreek.AdaptiveExpressions.Python&version=4.19.0
Python Functions for AdaptiveExpression
This library provides the ability to call python functions from AdaptiveExpressions
Installation
To install
dotnet add package Iciclecreek.AdaptiveExpressions.Python
Define functions
Given a python with functions in it:
Example: myfunctions.py
def add2Numbers(x , y):
return x + y;
(Option 1) Load functions into adaptive expressions.
To Load it, simply read the text file and call RegisterFunction with namespace.
var python = File.ReadAllText("myfunctions.py");
PythonFunctions.RegisterFunction("contoso", python);
(Option 2) Load functions with Bot Framework Resource Explorer
If you call Register with a ResourceExplorer then all files of extension ".function.py" will be automatically mounted with the file name (minus .function.py) will be used as the namespace. ResourceExplorer change detection will reload the functions if the file changes.
NOTE: As of 4.12 with new Runtime Integration you do NOT need to modify startup, it automatically registers .py files
In startup
ResourceExplorer resourceExplorer = new ResourceExplorer(...) ... ;
PythonFunctions.AddPythonFunctions(resourceExplorer);
To call a function that has been added
Every top level function in myfunctions.py will be mounted in the given namespace. To call a function you simply use the namespace+function name with args.
Example Expression calling function added via AddPythonFunctions
contoso.Add2Numbers(user.age, 7)
Example Expression calling function defined in a myfunctions.py
myfunctions.Add2Numbers(user.age, 7)
Example Expression parsing from C#
var expression = Expression.Parse("contoso.Add2Numbers(user.age, 7)");
Internal Details
This project uses IronPython to execute the python 2.7.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- IronPython (>= 2.7.11)
- IronPython.StdLib (>= 2.7.11)
- Microsoft.Bot.Builder (>= 4.19.3)
- Microsoft.Bot.Builder.Dialogs.Declarative (>= 4.19.3)
- Microsoft.Extensions.DependencyInjection (>= 3.1.22)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.