Python for .NET is a package that gives Python programmers nearly seamless integration with the .NET Common Language Runtime (CLR) and provides a powerful application scripting tool for .NET developers.
Перейти к файлу
Victor Uriarte a343b34dd3 Remove check-manifest 2017-02-14 04:55:04 -07:00
.github Fix paths in PULL_REQUEST_TEMPLATE.md 2017-01-22 04:08:13 -07:00
ci Add pytest to CI 2017-02-13 15:18:37 -07:00
conda.recipe Build conda recipe on Pull Requests 2017-01-30 19:09:41 -07:00
demo Format setup, geninterop, demo 2017-01-26 19:13:18 -07:00
src Convert unittest to pytest 2017-02-13 15:19:16 -07:00
tools Clean-up getinterop 2017-01-30 13:34:59 -07:00
.editorconfig Add .editorconfig 2017-01-08 17:00:45 -05:00
.gitignore Update gitignore 2017-01-14 15:42:05 -07:00
.travis.yml Add pytest to CI 2017-02-13 15:18:37 -07:00
AUTHORS.md MIT License (#314) 2017-01-11 04:18:35 -05:00
CHANGELOG.md Update CHANGELOG 2017-02-07 19:11:49 -07:00
CONTRIBUTING.md Clean-up README/CONTRIBUTING 2017-01-14 15:44:34 -07:00
LICENSE MIT License (#314) 2017-01-11 04:18:35 -05:00
Python.Runtime.dll.config Cleanup runtime config 2017-02-04 19:48:57 -07:00
README.md Add expire to license shield 2017-02-07 17:39:42 -07:00
appveyor.yml Add pytest to CI 2017-02-13 15:18:37 -07:00
pythonnet.sln Add PY3 project/sln configs 2017-02-02 11:32:47 -07:00
setup.cfg Remove check-manifest 2017-02-14 04:55:04 -07:00
setup.py Update NUnit syntax 2017-02-08 19:21:07 -07:00
tox.ini Remove check-manifest 2017-02-14 04:55:04 -07:00

README.md

pythonnet - Python for .NET

appveyor shield travis shield codecov shield license shield pypi package version python supported shield

Python for .NET is a package that gives Python programmers nearly seamless integration with the .NET Common Language Runtime (CLR) and provides a powerful application scripting tool for .NET developers. It allows Python code to interact with the CLR, and may also be used to embed Python into a .NET application.

Calling .NET code from Python

Python for .NET allows CLR namespaces to be treated essentially as Python packages.

import clr
from System import String
from System.Collections import *

To load an assembly, use the AddReference function in the clr module:

import clr
clr.AddReference("System.Windows.Forms")
from System.Windows.Forms import Form

Embedding Python in .NET

  • 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).
  • Use mod.func(args, Py.kw("keywordargname", keywordargvalue)) to apply keyword arguments.
  • All python objects should be declared as dynamic type.
  • 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

static void Main(string[] args)
{
    using (Py.GIL())
    {
        dynamic np = Py.Import("numpy");
        dynamic sin = np.sin;
        Console.WriteLine(np.cos(np.pi*2));
        Console.WriteLine(sin(5));
        double c = np.cos(5) + sin(5);
        Console.WriteLine(c);
        /* this block is temporarily disabled due to regression
        dynamic a = np.array(new List<float> { 1, 2, 3 });
        dynamic b = np.array(new List<float> { 6, 5, 4 }, Py.kw("dtype", np.int32));
        Console.WriteLine(a.dtype);
        Console.WriteLine(b.dtype);
        Console.WriteLine(a * b); */
        Console.ReadKey();
    }
}

Output:

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