QuantConnect.pythonnet 2.0.26

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
.NET 6.0
dotnet add package QuantConnect.pythonnet --version 2.0.26
NuGet\Install-Package QuantConnect.pythonnet -Version 2.0.26
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="QuantConnect.pythonnet" Version="2.0.26" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add QuantConnect.pythonnet --version 2.0.26
#r "nuget: QuantConnect.pythonnet, 2.0.26"
#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 QuantConnect.pythonnet as a Cake Addin
#addin nuget:?package=QuantConnect.pythonnet&version=2.0.26

// Install QuantConnect.pythonnet as a Cake Tool
#tool nuget:?package=QuantConnect.pythonnet&version=2.0.26

pythonnet is a package that gives .NET programmers ability to integrate Python engine and use Python libraries.

Embedding Python in .NET

  • You must set Runtime.PythonDLL property or PYTHONNET_PYDLL environment variable, otherwise you will receive BadPythonDllException (internal, derived from MissingMethodException) upon calling Initialize. Typical values are python38.dll (Windows), libpython3.8.dylib (Mac), libpython3.8.so (most other *nix). Full path may be required.
  • All calls to Python should be inside a using (Py.GIL()) {/* Your code here */} block.
  • Import python modules using dynamic mod = Py.Import("mod"), then you can call functions as normal, eg mod.func(args). You can also access Python objects via PyObject and dervied types instead of using dynamic.
  • Use mod.func(args, Py.kw("keywordargname", keywordargvalue)) or mod.func(args, keywordargname: keywordargvalue) to apply keyword arguments.
  • Mathematical operations involving python and literal/managed types must have the python object first, eg. np.pi * 2 works, 2 * np.pi doesn't.

Example

using var _ = Py.GIL();

dynamic np = Py.Import("numpy");
Console.WriteLine(np.cos(np.pi * 2));

dynamic sin = np.sin;
Console.WriteLine(sin(5));

double c = (double)(np.cos(5) + sin(5));
Console.WriteLine(c);

dynamic a = np.array(new List<float> { 1, 2, 3 });
Console.WriteLine(a.dtype);

dynamic b = np.array(new List<float> { 6, 5, 4 }, dtype: np.int32);
Console.WriteLine(b.dtype);

Console.WriteLine(a * b);
Console.ReadKey();

Output:

1.0
-0.958924274663
-0.6752620892
float64
int32
[  6.  10.  12.]

Resources

Information on installation, FAQ, troubleshooting, debugging, and projects using pythonnet can be found in the Wiki:

https://github.com/pythonnet/pythonnet/wiki

Mailing list https://mail.python.org/mailman/listinfo/pythondotnet Chat https://gitter.im/pythonnet/pythonnet

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (26)

Showing the top 5 NuGet packages that depend on QuantConnect.pythonnet:

Package Downloads
QuantConnect.Common The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

QuantConnect LEAN Engine: Common Project - A collection of common definitions and utils

QuantConnect.Indicators The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

QuantConnect LEAN Engine: Indicators Project - A collection of financial indicators

QuantConnect.Algorithm The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

QuantConnect LEAN Engine: Algorithm Project - Core QCAlgorithm implementation

QuantConnect.Algorithm.Framework The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

QuantConnect LEAN Engine: Algorithm.Framework Project - The core QCAlgorithm framework implementation

QuantConnect.Algorithm.CSharp The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

QuantConnect LEAN Engine: Algorithm.CSharp Project - A collection of C# algorithm demonstrations for how to use the API

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on QuantConnect.pythonnet:

Repository Stars
QuantConnect/Lean
Lean Algorithmic Trading Engine by QuantConnect (Python, C#)
Version Downloads Last updated
2.0.26 134 12/8/2023
2.0.25 2,069 11/21/2023
2.0.24 3,893 10/27/2023
2.0.23 1,179 10/19/2023
2.0.22 665 10/12/2023
2.0.21 14,397 7/11/2023
2.0.20 3,539 6/26/2023
2.0.19 160 6/26/2023
2.0.18 64,426 3/3/2023
2.0.17 99,634 8/24/2022
2.0.16 17,825 6/27/2022
2.0.15 21,300 5/17/2022
2.0.14 4,374 5/6/2022
2.0.13 3,850 5/2/2022
2.0.12 4,778 4/28/2022
2.0.11 65,111 12/27/2021
2.0.10 24,529 10/22/2021
2.0.9 394 10/21/2021
2.0.8 4,165 10/13/2021
2.0.7 660 10/8/2021
2.0.6 13,576 8/26/2021
2.0.5 16,763 7/14/2021
2.0.4 27,938 6/11/2021
2.0.3 989 6/8/2021
2.0.2 7,049 5/28/2021
2.0.1 17,910 3/13/2021
2.0.0 860 3/9/2021
1.0.5.30 177,245 3/31/2020
1.0.5.29 34,214 11/13/2019
1.0.5.28 584 11/12/2019
1.0.5.27 542 11/12/2019
1.0.5.26 6,695 10/15/2019
1.0.5.25 4,168 9/23/2019
1.0.5.24 4,579 9/10/2019
1.0.5.23 677 9/5/2019
1.0.5.22 593 9/5/2019
1.0.5.21 787 6/24/2019
1.0.5.20 30,784 4/23/2019
1.0.5.19 3,679 4/2/2019
1.0.5.18 800 3/27/2019
1.0.5.17 8,846 2/21/2019
1.0.5.16 663 2/20/2019
1.0.5.15 6,986 1/22/2019
1.0.5.14 809 1/18/2019
1.0.5.13 776 1/15/2019
1.0.5.12 8,186 8/27/2018
1.0.5.11 800 8/27/2018
1.0.5.10 832 8/24/2018
1.0.5.9 1,022 7/23/2018
1.0.5.8 29,046 7/16/2018
1.0.5.7 233,854 4/2/2018
1.0.5.6 1,032 4/2/2018
1.0.5.5 2,620 2/2/2018
1.0.5.4 2,327 12/29/2017
1.0.5.3 1,024 12/29/2017
1.0.5.2 1,406 11/29/2017
1.0.5.1 2,970 10/9/2017
1.0.5 1,140 9/29/2017
1.0.4.8 1,293 9/12/2017
1.0.4.7 913 9/8/2017
1.0.4.6 918 9/4/2017
1.0.4.5 932 8/21/2017
1.0.4.4 2,512 6/23/2017
1.0.4.3 996 6/23/2017
1.0.4.2 958 6/22/2017
1.0.4.1 939 6/22/2017
1.0.4 1,027 6/15/2017
1.0.3.5 1,410 6/1/2017
1.0.3.4 937 6/1/2017
1.0.3.3 938 6/1/2017
1.0.3.2 926 5/31/2017
1.0.3.1 963 5/31/2017
1.0.3 942 5/31/2017
1.0.2.1 1,071 5/25/2017
1.0.2 996 5/23/2017
1.0.1.1 1,635 4/11/2017
1.0.0 1,032 1/12/2017