QuantConnect.pythonnet 2.0.38

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.

Showing the top 20 packages that depend on QuantConnect.pythonnet.

Packages Downloads
QuantConnect.Lean.Engine
QuantConnect LEAN Engine: Engine Project - Core engine and datafeed implementation
5
QuantConnect.Indicators
QuantConnect LEAN Engine: Indicators Project - A collection of financial indicators
4
QuantConnect.Indicators
Lean Engine is an open-source, plataform agnostic C# and Python algorithmic trading engine. Allows strategy research, backtesting and live trading with Equities, FX, CFD, Crypto, Options and Futures Markets.
4
QuantConnect.ToolBox
QuantConnect LEAN Engine: ToolBox Project - A collection of data downloaders and converters
4
QuantConnect.Research
QuantConnect LEAN Engine: Research Project - Core implementation for jupyter research environment
4
QuantConnect.Lean.Engine
QuantConnect LEAN Engine: Engine Project - Core engine and datafeed implementation
4
QuantConnect.Indicators
Lean Engine is an open-source, platform agnostic C# and Python algorithmic trading engine. Allows strategy research, backtesting and live trading with Equities, FX, CFD, Crypto, Options and Futures Markets.
4

.NET 6.0

Version Downloads Last updated
2.0.53 2 04/13/2026
2.0.52 2 04/13/2026
2.0.51 2 04/13/2026
2.0.50 2 04/13/2026
2.0.49 1 04/13/2026
2.0.48 2 04/13/2026
2.0.47 2 04/13/2026
2.0.46 2 04/13/2026
2.0.45 2 04/13/2026
2.0.44 2 04/13/2026
2.0.43 2 04/13/2026
2.0.42 2 04/13/2026
2.0.41 3 04/13/2026
2.0.40 2 04/13/2026
2.0.39 2 04/13/2026
2.0.38 2 04/13/2026
2.0.37 2 04/13/2026
2.0.36 3 04/13/2026
2.0.35 2 04/13/2026
2.0.34 2 04/13/2026
2.0.33 2 04/13/2026
2.0.32 2 04/13/2026
2.0.31 1 04/13/2026
2.0.30 2 04/13/2026
2.0.29 2 04/13/2026
2.0.28 2 04/13/2026
2.0.27 2 04/13/2026
2.0.26 3 04/13/2026
2.0.25 3 04/13/2026
2.0.24 3 04/13/2026
2.0.23 2 04/13/2026
2.0.22 2 04/13/2026
2.0.21 2 04/13/2026
2.0.20 2 04/13/2026
2.0.19 2 04/13/2026
2.0.18 2 04/13/2026
2.0.17 2 04/13/2026
2.0.16 2 04/13/2026
2.0.15 2 04/13/2026
2.0.14 2 04/13/2026
2.0.13 3 04/13/2026
2.0.12 2 04/13/2026
2.0.11 2 04/13/2026
2.0.10 2 04/13/2026
2.0.9 2 04/13/2026
2.0.8 2 04/13/2026
2.0.7 2 04/13/2026
2.0.6 2 04/13/2026
2.0.5 2 04/13/2026
2.0.4 2 04/13/2026
2.0.3 2 04/13/2026
2.0.2 2 04/13/2026
2.0.1 2 04/13/2026
2.0.0 2 04/13/2026
1.0.5.30 2 04/13/2026
1.0.5.29 2 04/13/2026
1.0.5.28 1 04/13/2026
1.0.5.27 2 04/13/2026
1.0.5.26 2 04/13/2026
1.0.5.25 2 04/13/2026
1.0.5.24 2 04/13/2026
1.0.5.23 2 04/13/2026
1.0.5.22 2 04/13/2026
1.0.5.21 2 04/13/2026
1.0.5.20 2 04/13/2026
1.0.5.19 3 04/13/2026
1.0.5.18 2 04/13/2026
1.0.5.17 2 04/13/2026
1.0.5.16 1 04/13/2026
1.0.5.15 2 04/13/2026
1.0.5.14 2 04/13/2026
1.0.5.13 3 04/13/2026
1.0.5.12 2 04/13/2026
1.0.5.11 2 04/13/2026
1.0.5.10 2 04/13/2026
1.0.5.9 2 04/13/2026
1.0.5.8 2 04/13/2026
1.0.5.7 2 04/13/2026
1.0.5.6 2 04/13/2026
1.0.5.5 1 04/13/2026
1.0.5.4 2 04/13/2026
1.0.5.3 2 04/13/2026
1.0.5.2 2 04/13/2026
1.0.5.1 3 04/13/2026
1.0.5 2 04/13/2026
1.0.4.8 2 04/13/2026
1.0.4.7 2 04/13/2026
1.0.4.6 2 04/13/2026
1.0.4.5 3 04/13/2026
1.0.4.4 2 04/13/2026
1.0.4.3 2 04/13/2026
1.0.4.2 2 04/13/2026
1.0.4.1 3 04/13/2026
1.0.4 2 04/13/2026
1.0.3.5 2 04/13/2026
1.0.3.4 2 04/13/2026
1.0.3.3 2 04/13/2026
1.0.3.2 2 04/13/2026
1.0.3.1 2 04/13/2026
1.0.3 2 04/13/2026
1.0.2.1 2 04/13/2026
1.0.2 2 04/13/2026
1.0.1.1 2 04/13/2026
1.0.0 2 04/13/2026