QuantConnect.pythonnet 2.0.54

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.Api
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.
27
QuantConnect.Queues
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.
27
QuantConnect.Research
QuantConnect LEAN Engine: Research Project - Core implementation for jupyter research environment
27
QuantConnect.Common
QuantConnect LEAN Engine: Common Project - A collection of common definitions and utils
26
QuantConnect.ToolBox
QuantConnect LEAN Engine: ToolBox Project - A collection of data downloaders and converters
26
QuantConnect.Api
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.
25
QuantConnect.Api
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.
25
QuantConnect.Messaging
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.
25
QuantConnect.Indicators
QuantConnect LEAN Engine: Indicators Project - A collection of financial indicators
25
QuantConnect.Brokerages
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.
25
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.
25
QuantConnect.Algorithm.CSharp
QuantConnect LEAN Engine: Algorithm.CSharp Project - A collection of C# algorithm demonstrations for how to use the API
25
QuantConnect.Algorithm.Framework
QuantConnect LEAN Engine: Algorithm.Framework Project - The core QCAlgorithm framework implementation
25
QuantConnect.Common
QuantConnect LEAN Engine: Common Project - A collection of common definitions and utils
24
QuantConnect.ToolBox
QuantConnect LEAN Engine: ToolBox Project - A collection of data downloaders and converters
24

.NET 10.0

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