Iciclecreek.AdaptiveExpressions.Python 4.20.0

dotnet add package Iciclecreek.AdaptiveExpressions.Python --version 4.20.0
NuGet\Install-Package Iciclecreek.AdaptiveExpressions.Python -Version 4.20.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Iciclecreek.AdaptiveExpressions.Python" Version="4.20.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Iciclecreek.AdaptiveExpressions.Python --version 4.20.0
#r "nuget: Iciclecreek.AdaptiveExpressions.Python, 4.20.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Iciclecreek.AdaptiveExpressions.Python as a Cake Addin
#addin nuget:?package=Iciclecreek.AdaptiveExpressions.Python&version=4.20.0

// Install Iciclecreek.AdaptiveExpressions.Python as a Cake Tool
#tool nuget:?package=Iciclecreek.AdaptiveExpressions.Python&version=4.20.0

icon

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.20.0 223 6/16/2023
4.19.0 214 4/15/2023
4.16.0 711 4/22/2022
4.14.0 530 7/17/2021
4.13.0 458 4/17/2021
4.12.1 437 3/9/2021
4.12.0 448 3/8/2021
4.11.0-rc0 347 10/28/2020
4.10.3 573 10/17/2020
4.10.0 586 9/3/2020
4.9.1 561 6/9/2020
4.9.0 563 6/9/2020