A modern, high-performance, async-aware, zero-copy Python ↔ .NET interop runtime.
PyDotNet embeds CPython directly inside your .NET process. No subprocess, no sockets, no serialisation — just raw function calls across the language boundary with full GIL awareness and optional zero-copy memory sharing.
Plugin packages — typed, idiomatic C# wrappers for popular Python libraries ship as separate NuGet packages built on top of PyDotNet core:
PyDotNet.NumPy·PyDotNet.DataFrames·PyDotNet.Torch·PyDotNet.Matplotlib·PyDotNet.Extensions.Hosting·PyDotNet.LangChain(planned)
📖 Full API reference → — every public type and member, generated from the source on every push, alongside the guides below. What changed between releases is in the changelog.
- Features
- Why PyDotNet?
- Requirements
- Installation
- Quick start
- Runtime lifecycle
- Working with Python objects
- Type marshaling
- Callbacks
- Hosting and dependency injection
- Typed Python collections
- Tuple marshaling
- Weak references
- UTF-8 zero-copy string reads
- Zero-copy buffer access
- Tensor and array interop
- GPU-accelerated libraries
- Async/await bridge
- Configuration
- Exception handling
- Thread safety and the GIL
- Local development
- Platform support
- Plugins
- Roadmap
- Contributing
| Capability | Details |
|---|---|
| In-process embedding | Loads libpython / python3xx.dll directly — no subprocess or IPC overhead |
| Zero-copy buffers | Exposes Python's buffer protocol as Span<T> / Memory<T> |
| Zero-copy .NET → Python | PyMemoryView<T> pins any Memory<T> and hands it to Python as a memoryview — no copy; supports shaped N-D views and ReadOnlyMemory<T> |
| Zero-copy string reads | PyObject.UseUtf8Span() gives direct access to Python's internal UTF-8 buffer — no string allocation |
| DLPack exchange | Zero-copy tensor exchange via __dlpack__() (NumPy ≥ 1.22, PyTorch, CuPy, JAX, TF); plus .NET → Python export via DLPackTensor.Export<T>() |
| Buffer DataType detection | PyBuffer.DataType maps the buffer format string to a TensorDataType enum — no numpy import needed |
| Array interface | Reads __array_interface__ and __cuda_array_interface__ without importing NumPy |
| GPU compute libraries | Call CuPy, nvmath-python, PyTorch, JAX, or any CUDA-accelerated library; inspect GPU tensor metadata via DLPack without a device copy |
| Async/await bridge | await fn.CallAsync<T>() drives Python asyncio coroutines from .NET Tasks |
| Async generators | fn.CallAsyncEnumerable<T>() and module.CallAsyncEnumerable<T>() stream Python async generators as IAsyncEnumerable<T>; supports kwargs; calls aclose() on early break |
| PyModule async | module.CallAsync<T>(), module.CallAsync(), module.CallAsyncEnumerable<T>() — invoke coroutines and generators by name, without a GetFunction call |
| EvaluateAsync | interp.EvaluateAsync<T>(expr) evaluates a Python expression and drives the resulting coroutine to completion |
| Keyword arguments | Pass kwargs to any Python callable via Call(args, kwargs), CallAsync(args, kwargs), and CallAsyncEnumerable(args, kwargs) |
| Callbacks | Action / Func<> marshal to Python callables — key= to sorted(), DataFrame.apply, hooks; exceptions cross both ways |
| Typed collections | PyList<T> and PyDict<TKey,TValue> — strongly-typed wrappers with IReadOnlyList<T> / IReadOnlyDictionary<TKey,TValue> |
| Tuple marshaling | ValueTuple<T1…T7> is automatically converted to/from Python tuples via ToPython(), As<T>(), and Call<T>() |
| Weak references | PyWeakRef<T> / PyWeakRef.Create<T>() — track Python objects without preventing GC |
| Finalizer-safe GC | PyDecRefQueue background thread drains abandoned object handles from .NET finalizers without holding the GIL inline |
| Full type marshaling | Bidirectional conversion: primitives, strings, dates, collections, complex numbers |
| Pre-compiled code | interp.Compile() / interp.CompileExpression() produce a PyCompiledCode object — parse and compile once, execute thousands of times; supports per-call variable injection via Execute(locals) / Evaluate(locals) |
| GIL-safe threading | Automatic GIL acquire/release via GilScope; free-threaded Python 3.13+ detected |
| Auto-discovery | Finds the Python shared library from PATH, registry (Windows), or environment variable |
| Typed exceptions | Python errors arrive as PyValueError, PyKeyError, PyModuleNotFoundError and the rest, matched through the Python type's MRO, with __cause__ chaining into InnerException |
| Structured logging | Plugs into Microsoft.Extensions.Logging |
| Diagnostics report | PyRuntime.WriteDiagnosticsReport() prints which interpreter was actually resolved, sys.path in search order, and whether a virtual environment is really active |
| Hosting integration | services.AddPyDotNet() handles startup, graceful drain, configuration binding, and an injectable PyInterpreter |
| Multi-targeting | Targets .NET 8, .NET 9, and .NET 10 from a single NuGet package |
| Approach | Call latency | Zero-copy memory | Async coroutines | Notes |
|---|---|---|---|---|
| PyDotNet | ~1–3 µs | ✓ Span<T> / DLPack |
✓ native Task |
In-process; no serialization |
pythonnet |
~5–20 µs | ✗ | ✗ | In-process but COM-style reflection overhead |
| Subprocess + stdout | ~1–50 ms | ✗ | ✗ | Process start + pipe encoding |
| REST / gRPC service | ~0.5–10 ms | ✗ | via HTTP/2 | Network stack; separate process/container |
- Explicit ownership — every Python object is a
usingvariable;Py_DecRefis called deterministically, so there are no GC finalizer races or surprise collection pauses. - Zero-copy buffers — expose
bytearray, NumPy arrays, and anything that implements the buffer protocol directly asSpan<T>orMemory<T>with no heap allocation. - DLPack tensor exchange — share tensors with NumPy ≥ 1.22, PyTorch, JAX, and TensorFlow without copying — even on CUDA devices.
- Async-first —
await fn.CallAsync<T>()drives Pythonasynciocoroutines natively from .NETTasks, including concurrent fan-out withTask.WhenAll. - Errors that survive the boundary — Python exceptions arrive as types you can
catch, carrying their cause chain, and a .NET exception thrown inside a callback becomes a Python exception rather than disappearing. - Modern .NET — targets net8.0 / net9.0 / net10.0 from a single package; built with
Nullable,TreatWarningsAsErrors, andAnalysisLevel=latest-recommended.
| Component | Minimum version |
|---|---|
| .NET SDK | 8.0 |
| Python | 3.11 — 3.15 (CPython, standard GIL or free-threaded builds) |
| OS | Windows x64/ARM64, Linux x64/ARM64, macOS (x64 / Apple Silicon) |
Python must be installed with its shared library and be discoverable. See Configuration for the manual override.
Python 3.15 is supported and verified against 3.15.0rc1, but it is still a release candidate (final: 2026-10-01). CI runs it as an informational job that cannot fail the build, because most third-party wheels —
pyarrow,matplotlib,torch— do not exist for it yet. 3.11 through 3.14 are the versions the build enforces. PyDotNet picks its interpreter configuration mechanism per version automatically; see Virtual environments and isolation.
Linux — install the shared-library package (not just the interpreter):
# Debian / Ubuntu
sudo apt install libpython3.12 # adjust version as needed
# RHEL / Fedora
sudo dnf install python3.12-libsmacOS — Homebrew (brew install python@3.12) or the official python.org installer both work. The Xcode / system Python does not include a shared library and will not work.
Windows — use the official python.org installer. Conda and Windows Store Python are not supported.
dotnet add package PyDotNet
Or add manually to your .csproj:
<PackageReference Include="PyDotNet" Version="*" />using PyDotNet.Runtime;
// 1. Start the runtime once, ideally at application startup.
PyRuntime.Initialize();
// 2. Create an interpreter (lightweight, can be created many times).
using var interp = PyRuntime.CreateInterpreter();
// 3. Get the Python version.
Console.WriteLine(interp.GetPythonVersion()); // e.g. "3.14.5 ..."
// 4. Import a module and call a function.
using var math = interp.ImportModule("math");
using var result = math.Call("sqrt", 144.0);
Console.WriteLine(result.As<double>()); // 12.0
// 5. Evaluate an expression.
using var upper = interp.Evaluate("'hello world'.upper()");
Console.WriteLine(upper.As<string>()); // HELLO WORLD
// 6. Execute arbitrary Python code.
interp.Execute("""
import sys
print(f"Running Python {sys.version}")
""");
// 7. Shut down when finished (optional but recommended).
PyRuntime.Shutdown();PyRuntime is a static singleton that owns the embedded Python interpreter for the lifetime of the process.
// Default initialization — auto-discovers Python.
PyRuntime.Initialize();
// Custom initialization.
PyRuntime.Initialize(new PyRuntimeOptions
{
PythonLibraryPath = "/usr/lib/libpython3.14.so.1.0",
ReleaseGilAfterInit = true,
AdditionalSysPaths = ["/opt/myapp/python-packages"],
});
Console.WriteLine(PyRuntime.IsInitialized); // true
Console.WriteLine(PyRuntime.State); // Running
Console.WriteLine(PyRuntime.IsGilEnabled); // false on free-threaded 3.13+ builds
PyRuntime.Shutdown(); // releases tracked wrappers; CPython remains loaded process-wideShutdown stops managed work, drains deferred reference releases, invalidates tracked
PyObject wrappers, and resets managed caches. It deliberately does not call
Py_Finalize or unload libpython: CPython extensions retain process-global state and
native pointers that make unload-and-reload unsafe. A later Initialize reactivates the
existing process-wide CPython runtime.
Do not use an interpreter or Python wrapper concurrently with Shutdown. After shutdown,
existing tracked wrappers throw ObjectDisposedException; create new interpreters and
wrappers after reactivation. Applications requiring hard cancellation, a fresh Python
runtime, or recovery from a native extension crash should isolate Python in a worker process.
PyRuntime.State exposes Uninitialized, Initializing, Running, Stopping, Stopped,
or Faulted. New work is accepted only in the Running state.
Initialize is idempotent — it is safe to call from multiple threads or multiple times with the same configuration. Shutdown is also idempotent.
PYDOTNET_PYTHON_LIBRARYenvironment variable (full path to the shared library)PyRuntimeOptions.PythonLibraryPathpropertypython/python3onPATH— queried withsysconfigto resolve the library path- Platform-specific search directories (
/usr/lib, Windows registry, etc.)
PyInterpreter represents an execution context within the runtime. It is inexpensive to create and dispose.
using var interp = PyRuntime.CreateInterpreter();
// Execute statements (no return value).
interp.Execute("x = 42");
// Evaluate an expression and get the result.
using var val = interp.Evaluate("x * 2");
Console.WriteLine(val.As<int>()); // 84
// Import a module.
using var os = interp.ImportModule("os");
// Get the Python version string.
string version = interp.GetPythonVersion();Every call to Execute(string) or Evaluate(string) parses and compiles the source text from scratch. For hot loops — signal processing, dashboard rendering, batch inference — compile once and run many times with PyCompiledCode:
// Compile the source exactly once → bytecode is ready
using var formula = interp.CompileExpression("a * b + c");
// Execute thousands of times — only bytecode evaluation, no re-parsing
for (int i = 0; i < 100_000; i++)
{
using var result = formula.Evaluate(new Dictionary<string, object?> {
["a"] = data[i].A, ["b"] = data[i].B, ["c"] = bias
});
output[i] = result.As<double>();
}For statement blocks use Compile() (returns PyCompileMode.Exec); for single expressions use CompileExpression() (returns PyCompileMode.Eval). Calling Evaluate() on an exec-mode code object throws InvalidOperationException — the mode mismatch is caught early rather than silently returning None.
// Statement block — compiled once, run per batch
using var pipeline = interp.Compile("""
import math
hypotenuse = math.sqrt(a * a + b * b)
area = 0.5 * a * b
""");
foreach (var (a, b) in triangles)
{
pipeline.Execute(new Dictionary<string, object?> { ["a"] = a, ["b"] = b });
using var hyp = interp.Evaluate("hypotenuse");
}
// Symmetric interpreter overloads are also available
interp.Execute(pipeline); // plain Execute
interp.Execute(pipeline, locals); // Execute with injection
using var r = interp.Evaluate(formula); // plain Evaluate
using var r2 = interp.Evaluate(formula, locals); // Evaluate with injectionPyObject wraps any CPython PyObject*. It owns one reference and calls Py_DecRef on disposal.
using var obj = interp.Evaluate("[1, 2, 3]");
// Convert to a .NET type.
int[] arr = obj.As<int[]>();
// Read an attribute.
using var upper = obj.GetAttr("__class__");
// Write an attribute.
// When called on a module object this sets a module-level global, making the
// value addressable from subsequent Evaluate() / Execute() calls.
using var main = interp.ImportModule("__main__");
using var result = someFunc.Call(args);
main.SetAttr("_result", result); // now reachable as "_result" in Python
using var extracted = interp.Evaluate("_result['key']");
// Item access (indexer).
using var first = obj[0L]; // obj[0]
using var byKey = obj["key"]; // obj["key"]
// Check for None.
bool isNone = obj.IsNone;
// String representation (calls __repr__).
Console.WriteLine(obj.ToString());PyModule extends PyObject with module-specific helpers.
using var mod = interp.ImportModule("json");
// Call a module-level function with positional args.
using var encoded = mod.Call("dumps", new object[] { new Dictionary<string, object?> { ["x"] = 1 } });
// Call with keyword arguments.
using var pretty = mod.Call("dumps",
args: [new Dictionary<string, object?> { ["x"] = 1 }],
kwargs: new Dictionary<string, object?> { ["indent"] = 2 });
// Get a function reference for repeated calls.
using var dumpsFunc = mod.GetFunction("dumps");PyFunction wraps any callable Python object.
using var mathMod = interp.ImportModule("math");
using var log = mathMod.GetFunction("log");
// Synchronous call returning a typed value.
double result = log.Call<double>(Math.E); // 1.0
double result2 = log.Call<double>(100.0, 10.0); // 2.0
// Synchronous call returning a PyObject.
using var obj = log.Call(Math.E);
// Call with keyword arguments.
using var obj2 = log.Call(args: [100.0], kwargs: new Dictionary<string, object?> { ["base"] = 10.0 });
// Typed call with keyword arguments.
double result3 = log.Call<double>([100.0], new Dictionary<string, object?> { ["base"] = 10.0 });
// Async call with keyword arguments.
double result4 = await log.CallAsync<double>([100.0], new Dictionary<string, object?> { ["base"] = 10.0 });
// Async call (see Async/await bridge section).
double asyncResult = await log.CallAsync<double>(Math.E);
// Get the qualified name.
Console.WriteLine(log.GetQualifiedName()); // "log"PyIterator bridges any Python iterable to .NET's IEnumerable<PyObject> using the
__iter__ / __next__ protocol. Each yielded item owns one reference and must be disposed.
using PyDotNet.Iterators;
interp.Execute("words = ['hello', 'world', 'from', 'python']");
using var pyList = interp.Evaluate("words");
foreach (var item in PyIterator.From(pyList))
using (item)
{
Console.WriteLine(item.As<string>());
}Works with any iterable: list, tuple, set, generator, dict.keys(),
custom classes that implement __iter__, and so on.
Conversion between .NET and Python types is handled automatically in both directions.
| .NET type | Python type |
|---|---|
null |
None |
bool |
bool |
int, long, short, byte, uint, ulong, ushort, sbyte |
int |
BigInteger |
int (arbitrary precision, lossless both ways) |
float, double |
float |
decimal |
decimal.Decimal (lossless — not float) |
string, char |
str |
byte[], ReadOnlyMemory<byte> |
bytes |
DateTime, DateTimeOffset |
datetime.datetime |
DateOnly |
datetime.date |
TimeOnly |
datetime.time |
TimeSpan |
datetime.timedelta |
Guid |
uuid.UUID |
Complex |
complex |
PyObject (and subclasses) |
passed through as-is (ref-count bumped) |
T[], List<T>, any IEnumerable |
list |
IDictionary<string, object?>, any IDictionary |
dict |
Action, Func<> |
a callable — see Callbacks |
Specify the target type via As<T>() or Call<T>().
| .NET target type | Accepted Python types |
|---|---|
bool |
any object (via __bool__) |
int |
int |
long |
int |
double, float |
float, int |
decimal |
decimal.Decimal, int, float |
BigInteger |
int of any size |
string |
str |
byte[] |
bytes, bytearray |
DateTime |
datetime.datetime |
DateOnly |
datetime.date |
TimeOnly |
datetime.time |
TimeSpan |
datetime.timedelta |
Guid |
uuid.UUID, str |
Complex |
complex |
T[] |
list, tuple |
List<T>, IList<T>, IReadOnlyList<T>, IEnumerable<T> |
list, tuple |
PyObject |
any (ref-count bumped, caller owns) |
object |
dynamic — best-fit conversion |
decimalandBigIntegerare converted through their exact string forms, not throughdoubleorInt64. Adecimalis usually chosen precisely because binary floating point would lose the value, and aBigIntegerbecause 64 bits are not enough — so a numeric hop in either direction would defeat the point of using the type.
.NET methods can be passed where Python expects a callable — key= to sorted(),
DataFrame.apply, an event handler, a hook, or business logic a Python script calls into:
using var sorted = builtins.Call(
"sorted",
new object?[] { words },
new Dictionary<string, object?> { ["key"] = new Func<string, int>(s => s.Length) });PyObject.FromDelegate returns the callable itself, for holding on to or passing more than
once. The delegate stays alive for as long as Python holds a reference, and is released
when Python collects the last one.
Python's argument rules apply: keywords bind by .NET parameter name, omitted parameters
fall back to their .NET defaults, and a call that cannot be satisfied raises TypeError
rather than being quietly adjusted — including a keyword the delegate has no parameter for,
which would otherwise be silently discarded.
An exception thrown inside the delegate becomes a Python exception; one that originally came from Python is raised again as the type it was, so a round trip does not degrade it. The delegate runs with the GIL held, so it can use PyDotNet directly.
A delegate returning Task or ValueTask becomes an awaitable, and await suspends the
calling coroutine rather than blocking it, so callbacks driven by asyncio.gather overlap:
using var fetch = PyObject.FromDelegate(new Func<string, Task<string>>(FetchAsync));results = await asyncio.gather(*(fetch(u) for u in urls))See Callbacks for the argument rules, the exception mapping, and the GIL implications.
PyList<T> and PyDict<TKey, TValue> are strongly-typed wrappers around Python list and dict objects. They implement the standard .NET IReadOnlyList<T> and IReadOnlyDictionary<TKey, TValue> interfaces and acquire the GIL automatically on each operation.
// Create from .NET data.
using var primes = PyList<int>.From([2, 3, 5, 7, 11]);
// IReadOnlyList<T>
Console.WriteLine(primes.Count); // 5
Console.WriteLine(primes[0]); // 2
// Mutate in place.
primes.Add(13);
primes.Set(0, 1);
// Enumerate without extra allocations.
foreach (var p in primes)
Console.Write($"{p} ");
// Wrap an existing Python list object.
interp.Execute("my_list = [10, 20, 30]");
using var obj = interp.Evaluate("my_list");
using var wrapped = PyList<int>.Wrap(obj); // shares the underlying Python list// Create from .NET data.
var source = new Dictionary<string, double> { ["pi"] = 3.14, ["e"] = 2.72 };
using var constants = PyDict<string, double>.From(source);
// IReadOnlyDictionary<TKey, TValue>
Console.WriteLine(constants.Count); // 2
Console.WriteLine(constants["pi"]); // 3.14
Console.WriteLine(constants.ContainsKey("e")); // true
// TryGetValue for safe access.
if (constants.TryGetValue("tau", out var tau))
Console.WriteLine(tau);
// Mutate.
constants.Set("tau", 6.28);
// Enumerate all pairs.
foreach (var (key, value) in constants)
Console.WriteLine($"{key} = {value}");
// Keys / Values sequences.
foreach (var k in constants.Keys) Console.WriteLine(k);
// Wrap an existing Python dict object.
interp.Execute("config = {'debug': True, 'timeout': 30}");
using var pyConfig = interp.Evaluate("config");
using var cfg = PyDict<string, object>.Wrap(pyConfig);Any .NET ValueTuple<T1…T7> is automatically converted to a Python tuple when passed to
Python, and Python tuples can be converted back to ValueTuples via As<T>().
interp.Execute("def tup_len(t): return len(t)");
using var main = interp.ImportModule("__main__");
using var fn = main.GetFunction("tup_len");
long len = fn.Call<long>((1, "hello", 3.14)); // ValueTuple<int,string,double>
Console.WriteLine(len); // 3using var pyTuple = interp.Evaluate("(42, 'world', True)");
var (n, s, b) = pyTuple.As<(long, string, bool)>();
Console.WriteLine($"{n} {s} {b}"); // 42 world TrueWhen deserialising with As<object>(), a Python tuple is returned as object?[]:
using var pyTuple = interp.Evaluate("(1, 2, 3)");
var dyn = pyTuple.As<object>(); // object?[] { 1L, 2L, 3L }PyWeakRef<T> wraps a Python weakref.ref — it tracks a Python object without keeping it
alive. Use it to implement observer patterns, caches, or any scenario where you want to know
whether a Python object still exists without pinning it in memory.
using var obj = interp.Evaluate("Target()"); // user-defined class; object() doesn't support weakref in Python 3.12+
using var weak = PyWeakRef.Create(obj); // PyWeakRef.Create<T>(T target)
Console.WriteLine(weak.IsAlive); // True
using var back = weak.TryGetTarget(); // T? — null if GC'd
Console.WriteLine(back is not null); // TrueWhen the last strong reference is released and Python GC runs, IsAlive returns false and
TryGetTarget() returns null:
PyWeakRef<PyObject>? weak;
{
using var shortLived = interp.Evaluate("Target()");
weak = PyWeakRef.Create(shortLived);
} // shortLived disposed → ref-count drops to 0
interp.Execute("import gc; gc.collect()");
Console.WriteLine(weak.IsAlive); // False
Console.WriteLine(weak.TryGetTarget()); // null
weak.Dispose();Note: Python
int,float,str, and other interned / cached types do not support weak references. Passing them toPyWeakRef.CreatethrowsPyInteropException.
PyObject.UseUtf8Span(Utf8SpanAction) gives you a ReadOnlySpan<byte> pointing directly
into CPython's internal UTF-8 buffer. No string allocation, no copying.
The callback is invoked while the GIL is held; the span is only valid inside the callback.
using var pyStr = interp.Evaluate("'hello world'");
pyStr.UseUtf8Span(utf8 =>
{
// Zero-allocation scan
int spaces = 0;
foreach (var b in utf8)
if (b == (byte)' ') spaces++;
Console.WriteLine($"Spaces: {spaces}"); // 1
});Common use cases:
- Hashing Python strings without allocating a .NET
string - Passing Python string content directly to
System.Text.Encoding.UTF8.GetString(span)for one-shot decoding - Computing checksums, pattern scanning, or protocol parsing over large Python strings with zero heap pressure
// SHA-256 of a Python string — zero allocation
using var secret = interp.Evaluate("'my-api-key'");
secret.UseUtf8Span(utf8 =>
{
var hash = SHA256.HashData(utf8);
Console.WriteLine(Convert.ToHexString(hash));
});Any Python object that implements the buffer protocol (bytearray, NumPy arrays, array.array, etc.) can be accessed directly as a Span<T> without any copying.
// Read-only span over a Python bytearray.
interp.Execute("data = bytearray([10, 20, 30, 40, 50])");
using var data = interp.Evaluate("data");
using var buf = data.AsBuffer(); // acquires buffer protocol view
Console.WriteLine(buf.Length); // 5
Console.WriteLine(buf.NDim); // 1
Console.WriteLine(buf.IsReadOnly);
Span<byte> span = buf.AsSpan<byte>(); // zero-copy
foreach (var b in span) Console.Write($"{b} ");
// Writable view — modifies the Python object in place.
using var wb = data.AsBuffer(writable: true);
Span<byte> ws = wb.AsSpan<byte>();
ws[0] = 99;
// Managed copy for safe off-lifetime use.
byte[] copy = buf.ToArray<byte>();PyBuffer.DataType maps the buffer's format string to a TensorDataType enum — useful for type-safe dispatch without importing numpy:
using var arr = interp.Evaluate("__import__('numpy').array([1.0], dtype='float32')");
using var buf = arr.AsBuffer();
Console.WriteLine(buf.Format); // "f"
Console.WriteLine(buf.DataType); // TensorDataType.Float32PyBuffer is disposed automatically. While it is live, the underlying Python buffer is pinned.
PyMemoryView<T> pins a Memory<T> and exposes it to Python as a memoryview — no copy in either direction. The .NET memory is pinned for the lifetime of the PyMemoryView<T> instance.
Supported element types: byte, sbyte, short, ushort, int, uint, long, ulong, float, double.
// Expose a float array to Python — zero allocation, zero copy.
var data = new float[] { 1.0f, 2.0f, 3.0f, 4.0f };
using var mv = PyMemoryView<float>.From(data.AsMemory());
interp.Execute("""
import struct
def double_in_place(view):
for i in range(len(view)):
view[i] *= 2
""");
using var module = interp.ImportModule("__main__");
using var fn = module.GetFunction("double_in_place");
fn.Call(mv.PyObject); // Python writes back through the same pointer
Console.WriteLine(data[0]); // 2.0 — .NET sees the change immediately
// Use with numpy.frombuffer — also zero-copy.
interp.Execute("""
import numpy as np
def numpy_sum(view):
return float(np.frombuffer(view, dtype=np.float32).sum())
""");
using var sumFn = module.GetFunction("numpy_sum");
double total = sumFn.Call<double>(mv.PyObject); // 10.0For a read-only view (Python cannot write):
using var ro = PyMemoryView<int>.From(data.AsMemory(), readOnly: true);For a ReadOnlyMemory<T> view (automatically read-only):
ReadOnlyMemory<float> rom = GetReadOnlyData();
using var mv = PyMemoryView<float>.From(rom);
// Python sees a readonly memoryview — any write attempt raises TypeError.For a shaped N-dimensional view, pass an explicit shape array:
// Expose a flat 12-element float array as a 3×4 matrix to Python.
var data = new float[12];
using var mv = PyMemoryView<float>.From(data.AsMemory(), shape: [3L, 4L]);
interp.Execute("""
def get_shape(v):
return v.shape
""");
// Python sees memoryview with shape (3, 4) and C-contiguous strides.
// No data is copied.Lifetime:
PyMemoryView<T>must be disposed before the backingMemory<T>is freed or moved. Theusingpattern ensures this when both live within the same scope.
PyTensor wraps any Python tensor (NumPy array, PyTorch tensor, JAX array) and exposes its metadata.
interp.Execute("""
import numpy as np
arr = np.arange(6, dtype=np.float32).reshape(2, 3)
""");
using var arr = interp.Evaluate("arr");
using var tensor = PyTensor.FromPyObject(arr);
Console.WriteLine(tensor.Rank); // 2
Console.WriteLine(tensor.Shape[0]); // 2
Console.WriteLine(tensor.Shape[1]); // 3
Console.WriteLine(tensor.DataType); // Float32
Console.WriteLine(tensor.Device); // Cpu
Console.WriteLine(tensor.ElementCount); // 6
// Zero-copy Span via the buffer protocol (CPU tensors only).
using var buf = tensor.AsTensorBuffer();
Span<float> values = buf.AsSpan<float>();
// values == [0, 1, 2, 3, 4, 5]Supported TensorDataType values: Float16, Float32, Float64, BFloat16, Int8, Int16, Int32, Int64, UInt8, UInt16, UInt32, UInt64, Bool, Complex64, Complex128.
Supported TensorDevice values: Cpu, Cuda, Metal, Unknown.
DLPackTensor exchanges tensors with any framework that implements __dlpack__() (NumPy ≥ 1.22, PyTorch, CuPy, JAX, TensorFlow). No data is copied — the .NET side holds a reference to the framework's memory.
using var np = interp.ImportModule("numpy");
using var arr = np.Call("array",
new object[] { new float[] { 1f, 2f, 3f } },
new Dictionary<string, object?> { ["dtype"] = "float32" });
using var tensor = DLPackTensor.From(arr);
Console.WriteLine(tensor.NDim); // 1
Console.WriteLine(tensor.Shape[0]); // 3
Console.WriteLine(tensor.DataType); // Float32
Console.WriteLine(tensor.IsOnCpu); // true
Console.WriteLine(tensor.IsContiguous()); // true
// Read directly — no copy.
Span<float> values = tensor.AsSpan<float>(); // [1, 2, 3]
// Device information (for CUDA tensors).
Console.WriteLine(tensor.DeviceType); // DLDeviceType.Cpu
Console.WriteLine(tensor.DeviceId); // 0
// Static helper — get device without acquiring a full DLPackTensor.
var (deviceType, deviceId) = DLPackTensor.GetDevice(arr);
// Copy tensor data into a managed array (CPU tensors only).
float[] copy = tensor.ToArray<float>();On disposal, DLPackTensor calls the DLPack deleter, notifying the source framework that the memory is released.
DLPackTensor.Export<T>() pins .NET memory and wraps it in a DLPack capsule consumable by numpy.from_dlpack, torch.from_dlpack, and any other DLPack-aware framework — zero copy in both directions.
var data = new float[] { 1f, 2f, 3f, 4f, 5f, 6f };
// Export as a 2×3 float32 matrix.
using var capsule = DLPackTensor.Export(data.AsMemory(), shape: [2L, 3L]);
// Inject into Python's __main__ globals and consume with numpy.
using var main = interp.ImportModule("__main__");
main.SetAttr("_cap", capsule);
interp.Execute("""
import numpy as np
class _Wrap:
def __init__(self, c): self._c = c
def __dlpack__(self, stream=None): return self._c
def __dlpack_device__(self): return (1, 0) # kDLCPU
_arr = np.from_dlpack(_Wrap(_cap))
# _arr.shape == (2, 3) — zero copy, backed by the .NET array
""");Lifetime:
capsulemust stay alive until Python has consumed it viafrom_dlpack(i.e. until theusingblock exits). After consumption, Python holds the only reference to the data;.NETdisposal ofcapsuleis a no-op.
Supported element types for export: byte, sbyte, short, ushort, int, uint, long, ulong, float, double.
ArrayInterfaceInfo reads __array_interface__ (CPU) or __cuda_array_interface__ (CUDA/CuPy) without requiring NumPy to be imported at the .NET level.
using var arr = interp.Evaluate("my_numpy_array");
// CPU array.
ArrayInterfaceInfo? info = ArrayInterfaceInfo.TryRead(arr);
if (info is not null)
{
Console.WriteLine(info.DataPointer); // raw pointer to the data buffer
Console.WriteLine(info.NDim);
Console.WriteLine(info.Shape[0]);
Console.WriteLine(info.TypeStr); // e.g. "<f4"
Console.WriteLine(info.DataType); // TensorDataType.Float32
Console.WriteLine(info.IsReadOnly);
}
// CUDA array (CuPy, etc.).
ArrayInterfaceInfo? cudaInfo = ArrayInterfaceInfo.TryReadCuda(arr);Requires a CUDA-capable GPU, the CUDA toolkit, and the Python packages below. The
PyDotNet.Sample.Gpusample detects the GPU at runtime and falls back to NumPy on CPU automatically, so it runs on every machine.
PyDotNet does not limit you to CPU workloads. CuPy,
nvmath-python, PyTorch, JAX, and any other
CUDA-accelerated library are called identically to their CPU counterparts. Data can
stay on the GPU across multiple Python calls; bring it back only when you need a Span<T>.
pip install cupy-cuda12x # CuPy for CUDA 12
pip install "nvmath-python[cu12]" # NVIDIA nvmath for CUDA 12Define a shared xp alias and a _to_cpu() helper once; all subsequent calls dispatch
transparently to GPU or CPU:
interp.Execute("""
import numpy as np
_has_gpu = False
try:
import cupy as cp
if cp.cuda.runtime.getDeviceCount() > 0:
_has_gpu = True
except Exception:
pass
xp = cp if _has_gpu else np # array namespace
def _to_cpu(a): return cp.asnumpy(a) if _has_gpu else a
""");interp.Execute("""
rng = np.random.default_rng(42)
A = xp.asarray(rng.random((512, 512), dtype=np.float32))
B = xp.asarray(rng.random((512, 512), dtype=np.float32))
""");
interp.Execute("C = xp.matmul(A, B)");
// Move result to CPU NumPy, then read zero-copy via Span<T>.
using var result = interp.Evaluate("_to_cpu(C)");
using var tensor = PyTensor.FromPyObject(result);
using var buf = tensor.AsTensorBuffer(); // only valid for CPU tensors
Span<float> values = buf.AsSpan<float>(); // direct pointer into NumPy bufferinterp.Execute("""
import nvmath.fft as nvfft
signal = cp.sin(cp.linspace(0, 2 * cp.pi, 8192)).astype(cp.float32)
output = nvfft.fft(signal) # stays on GPU
mag = _to_cpu(cp.abs(output).astype(cp.float32))
""");
using var mag = interp.Evaluate("mag");
using var tensor = PyTensor.FromPyObject(mag);
using var buf = tensor.AsTensorBuffer();
Span<float> magnitudes = buf.AsSpan<float>();PyTensor.FromPyObject reads device, dtype, and shape via __dlpack_device__() without
touching device memory. Use DLPackTensor.From() to get the raw CUDA device pointer for
.NET CUDA interop libraries such as ILGPU or
ManagedCuda.
interp.Execute("gpu_t = cp.zeros((4, 128, 128), dtype=cp.float16)");
using var pyObj = interp.Evaluate("gpu_t");
using var t = PyTensor.FromPyObject(pyObj);
Console.WriteLine(t.Device); // TensorDevice.Cuda
Console.WriteLine(t.DataType); // TensorDataType.Float16
Console.WriteLine(t.ElementCount); // 65536
// Raw CUDA device pointer (for ILGPU / ManagedCuda):
// using var dlp = DLPackTensor.From(pyObj);
// nuint cudaPtr = (nuint)dlp.DataPointer;Note
AsTensorBuffer()throwsPyInteropExceptionfor CUDA tensors because the buffer protocol requires CPU-accessible memory. Callcp.asnumpy()first to get a CPU NumPy array, or useDLPackTensorto work with the device pointer directly.
Python async def functions are first-class citizens. Call them with CallAsync<T>() and await the returned Task<T> from any .NET async method.
interp.Execute("""
import asyncio
async def slow_add(a, b):
await asyncio.sleep(0.05)
return a + b
async def fetch_greeting(name):
await asyncio.sleep(0.02)
return f"Hello, {name}!"
""");
using var module = interp.ImportModule("__main__");
using var slowAdd = module.GetFunction("slow_add");
using var greet = module.GetFunction("fetch_greeting");
// Single coroutine.
int sum = await slowAdd.CallAsync<int>(17, 25); // 42
// Parallel coroutines — each runs on its own SelectorEventLoop on the thread pool.
var tasks = new[]
{
greet.CallAsync<string>("Alice"),
greet.CallAsync<string>("Bob"),
greet.CallAsync<string>("Charlie"),
};
string[] results = await Task.WhenAll(tasks);
// Fire-and-forget (no return value).
using var log = module.GetFunction("log_message");
await log.CallAsync("system started");Internally, each call creates a fresh asyncio.SelectorEventLoop, runs the coroutine to completion, then closes the loop. Using SelectorEventLoop explicitly (rather than the platform default ProactorEventLoop on Windows) avoids signal.set_wakeup_fd errors when called from non-main threads on Python 3.12.
All CallAsync overloads accept an optional IDictionary<string, object?> for keyword arguments:
interp.Execute("""
import asyncio
async def fetch(url, timeout=30, retries=3):
await asyncio.sleep(0)
return f"fetched:{url}:timeout={timeout}:retries={retries}"
""");
using var module = interp.ImportModule("__main__");
using var fetch = module.GetFunction("fetch");
var result = await fetch.CallAsync<string>(
args: ["https://api.example.com"],
kwargs: new Dictionary<string, object?> { ["timeout"] = 5, ["retries"] = 1 });
// "fetched:https://api.example.com:timeout=5:retries=1"Python async def functions that use yield are async generators. Call them with
CallAsyncEnumerable<T>() to get a .NET IAsyncEnumerable<T> that streams items one at a
time — ideal for large datasets, event streams, and real-time feeds.
interp.Execute("""
import asyncio
async def ticker(symbol, count):
for i in range(count):
await asyncio.sleep(0.01)
yield {"symbol": symbol, "tick": i, "price": 100.0 + i * 0.5}
""");
using var module = interp.ImportModule("__main__");
using var tickerFn = module.GetFunction("ticker");
await foreach (var tick in tickerFn.CallAsyncEnumerable<object>("AAPL", 5))
{
Console.WriteLine(tick);
}Keyword arguments are supported on CallAsyncEnumerable<T> too:
await foreach (var item in tickerFn.CallAsyncEnumerable<object>(
args: ["AAPL"],
kwargs: new Dictionary<string, object?> { ["count"] = 10 }))
{
Console.WriteLine(item);
}Early break is safe — aclose() is automatically called on the async generator so Python
finally blocks and async context managers run correctly:
await foreach (var item in fn.CallAsyncEnumerable<int>(1000))
{
if (item > 9) break; // aclose() called: Python finally block runs
}Call coroutines and async generators directly on a PyModule without getting a PyFunction first:
using var module = interp.ImportModule("__main__");
// Coroutine → Task<T>
int result = await module.CallAsync<int>("add_async", 10, 32);
// Coroutine with kwargs → Task<T>
string msg = await module.CallAsync<string>(
"greet",
args: ["Alice"],
kwargs: new Dictionary<string, object?> { ["greeting"] = "Hi" });
// Void coroutine → Task
await module.CallAsync("fire_and_forget", "payload");
// Async generator → IAsyncEnumerable<T>
await foreach (var v in module.CallAsyncEnumerable<int>("count_up", 5))
{
Console.WriteLine(v);
}
// Async generator with kwargs → IAsyncEnumerable<T>
await foreach (var v in module.CallAsyncEnumerable<int>(
"count_range",
args: [],
kwargs: new Dictionary<string, object?> { ["start"] = 2, ["stop"] = 10, ["step"] = 2 }))
{
Console.WriteLine(v);
}Drive a coroutine created via a Python expression string:
interp.Execute("""
import asyncio
async def async_pow(base, exp):
await asyncio.sleep(0)
return base ** exp
_pending = async_pow(3, 10)
""");
// Evaluate the expression and drive the resulting coroutine
long result = await interp.EvaluateAsync<long>("_pending"); // 59049
// Or inline:
long inline = await interp.EvaluateAsync<long>("async_pow(2, 8)"); // 256All options are passed to PyRuntime.Initialize(PyRuntimeOptions).
PyRuntime.Initialize(new PyRuntimeOptions
{
// Explicit path to the Python shared library.
// Default: auto-discovered from PATH / system defaults.
PythonLibraryPath = null,
// Extra entries added to sys.path before any code runs.
AdditionalSysPaths = ["/opt/myapp/site-packages"],
// Where those entries go. Append (the default) extends the search path;
// Prepend lets them take precedence over an installed package.
SysPathPlacement = PySysPathPlacement.Append,
// Release the GIL after initialization so .NET thread-pool threads
// can acquire it freely. Default: true.
ReleaseGilAfterInit = true,
// Reserved for a future interpreter pool; currently has no effect.
// PyDotNet hosts a single interpreter. Default: 1.
InterpreterPoolSize = 1,
});Embedded Python takes argv[0] from the .NET host executable, so packages installed into a virtual environment are not importable by default. Point PyDotNet at the environment root to activate it properly:
PyRuntime.Initialize(new PyRuntimeOptions
{
VirtualEnvironmentPath = "/srv/myapp/.venv",
});This sets CPython's program name to the environment's interpreter, so sys.prefix, sys.executable, and sys.path are all configured for the environment — not merely extended. Use ProgramName directly to target an interpreter that is not a virtual environment, and PythonHome when the standard library cannot be found relative to it.
Insulate the interpreter from the surrounding environment so that the host application, rather than the machine, controls what Python can see:
PyRuntime.Initialize(new PyRuntimeOptions
{
Isolation = PyIsolationOptions.Full, // equivalent to python -I
});Finer-grained control is available via UseEnvironment (ignore PYTHON* variables, -E) and UserSiteDirectory (skip the per-user site-packages directory, -s).
AdditionalSysPaths entries are appended by default, so they extend the search path but cannot shadow a module that is already importable. Set SysPathPlacement when they need to win:
PyRuntime.Initialize(new PyRuntimeOptions
{
AdditionalSysPaths = ["/opt/myapp/overrides"],
SysPathPlacement = PySysPathPlacement.Prepend,
});Use this to override a shipped package — a patched build, a local development copy — without touching the environment. Shadowing a standard library module this way will break the interpreter in ways that are hard to trace, so when the goal is simply a different set of packages, VirtualEnvironmentPath is the better tool.
The placement applies only to your entries. The site-packages directories PyDotNet discovers for itself on Linux and macOS are always appended, so they can never shadow what you asked for.
Interpreter discovery has several fallbacks, so the interpreter a process ends up hosting is not always the one its author assumed. EffectiveConfiguration records what was actually chosen — the first thing worth checking when imports resolve from somewhere unexpected:
PyRuntime.Initialize(options);
Console.WriteLine(PyRuntime.EffectiveConfiguration);
// Python 3.14.4 [GIL] via PyInitConfig; library '/usr/lib/libpython3.14.so';
// program name /srv/app/.venv/bin/python; prepended 1 sys.path entry [/opt/myapp/overrides]It exposes the loaded library, the Python version (including the release level, so a release candidate reports 3.15.0rc1), the program name and home actually applied, the sys.path entries and their placement, whether the GIL is enabled, and whether initialization went through PyInitConfig or the legacy globals.
VirtualEnvironmentWarning is set when the configured virtual environment appears to have been created by a different Python installation than the library that was loaded — the usual cause of ModuleNotFoundError: No module named 'encodings'. The same finding is logged, but the default ILogger discards everything, so a host that never attached one would otherwise have no way to see it.
Returns
nullbefore the runtime is initialized.
EffectiveConfiguration records what PyDotNet asked for. It cannot say what CPython then did with it — whether the virtual environment actually activated, or where a caller's sys.path entries ended up relative to everything else. WriteDiagnosticsReport answers both by reading the live interpreter:
PyRuntime.WriteDiagnosticsReport(Console.Out);
// Or, for a diagnostics endpoint or a bug report:
var report = PyRuntime.GetDiagnosticsReport();PyDotNet diagnostics report
===========================
Runtime
State Running
PyDotNet 1.2.0+192edee
Python 3.14.4
Implementation cpython
GIL enabled
Initialization PyInitConfig (PEP 741)
Library /usr/lib/libpython3.14.so
Requested configuration
Program name /srv/app/.venv/bin/python
Python home (not set)
Virtual environment /srv/app/.venv
Additional sys.path 1 entry, prepended
Interpreter
sys.executable /srv/app/.venv/bin/python
sys.prefix /srv/app/.venv
sys.base_prefix /usr
Virtual environment active (sys.prefix differs from sys.base_prefix)
Isolation (sys.flags)
isolated 0
no_site 0
no_user_site 0
ignore_environment 0
safe_path 0
sys.path (7 entries, in search order)
1 /opt/myapp/overrides <- added by PyDotNet
2 /usr/lib/python314.zip
...
Three things it shows that nothing else does: sys.path in search order with your own entries flagged, so a shadowed import has a line to blame; sys.prefix against sys.base_prefix, which is what "is the venv actually active?" means; and any VirtualEnvironmentWarning, printed first under a !! WARNING banner. A configured path that never reached sys.path is called out separately.
It never throws and does not require the runtime to be initialized — a process whose Initialize() failed is exactly when it is worth running. Values that cannot be read are marked unavailable rather than aborting the report.
dotnet run --project samples/PyDotNet.Sample.Doctor # this machine's default
dotnet run --project samples/PyDotNet.Sample.Doctor -- .venv # against a virtual environmentThese settings are read by CPython during initialization and apply once per process. See Virtual environments and isolation for the full reference, constraints, and troubleshooting.
Set PYDOTNET_PYTHON_LIBRARY to the full path of the Python shared library to bypass auto-discovery entirely:
PYDOTNET_PYTHON_LIBRARY=/opt/hostedtoolcache/Python/3.14.5/x64/lib/libpython3.14.so.1.0
PyRuntime emits structured log messages through Microsoft.Extensions.Logging. Wire up a logger before calling Initialize:
using var loggerFactory = LoggerFactory.Create(builder =>
builder.AddConsole().SetMinimumLevel(LogLevel.Debug));
PyRuntime.SetLogger(loggerFactory.CreateLogger("PyDotNet"));
PyRuntime.Initialize();All Python errors are surfaced as typed .NET exceptions.
| Exception | When thrown |
|---|---|
PythonException |
A Python exception was raised (includes type, message, and traceback) |
PyInteropException |
A marshaling or interop error (e.g. unsupported type conversion) |
PyRuntimeException |
Runtime lifecycle error (not initialized, library not found, etc.) |
try
{
using var result = interp.Evaluate("1 / 0");
}
catch (PythonException ex)
{
Console.WriteLine(ex.Message); // ZeroDivisionError: division by zero
Console.WriteLine(ex.PythonTraceback); // formatted Python traceback
}The common Python exceptions also arrive as derived types, so they can be caught
directly instead of by comparing PythonExceptionType against a string:
try
{
using var config = interp.ImportModule("myapp.config");
}
catch (PyModuleNotFoundError ex)
{
// The interpreter is not the one you expected. PyRuntime.EffectiveConfiguration
// reports which one was actually resolved.
Console.WriteLine($"{ex.Message}; loaded {PyRuntime.EffectiveConfiguration?.LibraryPath}");
}Matching follows the Python type's MRO, so a class ConfigError(ValueError) defined
in Python is caught by catch (PyValueError) exactly as except ValueError would
catch it, while PythonExceptionType still reports ConfigError. Anything without a
mapping arrives as PythonException itself, and catching PythonException still
catches every one of them.
PyValueError · PyTypeError · PyKeyError · PyIndexError · PyAttributeError ·
PyImportError · PyModuleNotFoundError · PyOSError · PyStopIteration
Chained Python exceptions (raise ... from ..., or an error raised while another was
being handled) are carried through InnerException, so the original failure is
available rather than being flattened away:
catch (PythonException ex) when (ex.InnerException is PyKeyError missingKey)
{
Console.WriteLine($"{ex.Message}, caused by {missingKey.Message}");
}See Exception handling for the full mapping and chaining rules.
Python's Global Interpreter Lock (GIL) is managed automatically.
- Every call into the Python C API acquires the GIL via
GilScopeand releases it on exit. - When
ReleaseGilAfterInit = true(the default), the GIL is released afterInitialize()so .NET thread-pool threads can each acquire it independently — enabling concurrent use ofPyInterpreterfrom multiple threads. - On Python 3.13+ free-threaded builds,
PyRuntime.IsGilEnabledreturnsfalseandGilScopeis a no-op.
// Multiple threads can each hold an interpreter concurrently.
var tasks = Enumerable.Range(0, 8).Select(i => Task.Run(() =>
{
using var interp = PyRuntime.CreateInterpreter();
using var result = interp.Evaluate($"{i} * {i}");
return result.As<int>();
}));
int[] squares = await Task.WhenAll(tasks);| Tool | Minimum version | Notes |
|---|---|---|
| .NET SDK | 10.0 | Needed to build all three TFMs (net8.0, net9.0, net10.0) |
| Python | 3.11+ | Must include the shared library (see Requirements) |
numpy |
any | Integration tests |
pandas |
any | Integration tests |
pyarrow |
any | Integration tests |
polars |
any | Integration tests |
# Install Python test dependencies
pip install numpy pandas pyarrow polars-lts-cpu # Linux / macOS x64
pip install numpy pandas pyarrow polars # Windows or ARM64git clone https://github.com/zcsizmadia/PyDotNet
cd PyDotNet
dotnet restore
dotnet build -c Release --no-restore# All tests across all TFMs
dotnet test -c Release --no-build
# Single TFM only
dotnet test -c Release --no-build -f net10.0
# Single test project
dotnet test -c Release --no-build tests/PyDotNet.Tests/
# Snippet tests (numpy / pandas / polars integration)
dotnet test -c Release --no-build tests/PyDotNet.Snippets.Tests/dotnet pack src/PyDotNet -c Release --no-build -o nupkgs# Basic: arithmetic, strings, lists, class instances, order aggregation.
dotnet run --project samples/PyDotNet.Sample.Basic
# Zero-copy: read/write Python bytearrays without allocation.
dotnet run --project samples/PyDotNet.Sample.ZeroCopy
# Async: driving Python asyncio coroutines from .NET Tasks.
dotnet run --project samples/PyDotNet.Sample.Async
# Keyword arguments: pass kwargs to synchronous and async Python calls.
dotnet run --project samples/PyDotNet.Sample.Kwargs
# Typed collections: create and consume PyList<T> and PyDict<TKey,TValue>.
dotnet run --project samples/PyDotNet.Sample.TypedCollections
# Async generators: iterate Python async generators as IAsyncEnumerable<T>.
dotnet run --project samples/PyDotNet.Sample.AsyncGenerators
# Memory view: zero-copy .NET→Python sharing via PyMemoryView<T>.
dotnet run --project samples/PyDotNet.Sample.MemoryView
# GPU: CuPy matrix multiply, nvmath-python FFT, DLPack metadata, C#→GPU→C# zero-copy.
# Falls back to NumPy automatically when no CUDA GPU is available.
dotnet run --project samples/PyDotNet.Sample.Gpu
# Virtual environment: import a package that exists only inside a venv.
# Creates a throwaway environment, so it is self-contained.
dotnet run --project samples/PyDotNet.Sample.VirtualEnvironment
# Isolation: compare sys.flags under default, -I, -s, and -E equivalents.
# Runs each configuration in its own process, since CPython applies them once.
dotnet run --project samples/PyDotNet.Sample.Isolation
# Doctor: report which interpreter this machine resolves, and why an import may not.
# Takes an optional virtual environment path; exits non-zero when something is wrong.
dotnet run --project samples/PyDotNet.Sample.Doctor
# Callbacks: hand .NET methods to Python as callables.
# Covers sorted(key=...), keyword binding, and exceptions in both directions.
dotnet run --project samples/PyDotNet.Sample.Callbacks
# Hosting: AddPyDotNet in a generic host — injected interpreter, health check,
# and the drain on shutdown, with no PyRuntime.Shutdown() call anywhere.
dotnet run --project samples/PyDotNet.Sample.Hosting# Full run (BenchmarkDotNet)
dotnet run -c Release --project benchmarks/PyDotNet.Benchmarks
# Filter to a specific class
dotnet run -c Release --project benchmarks/PyDotNet.Benchmarks -- --filter *PyDotNet*
dotnet run -c Release --project benchmarks/PyDotNet.Benchmarks -- --filter *PythonNet*The project enforces TreatWarningsAsErrors and EnforceCodeStyleInBuild; the build
will fail on any style violation. Run dotnet format before committing:
dotnet format| OS | Architecture | Python versions | Status |
|---|---|---|---|
| Windows | x64 | 3.11, 3.12, 3.13, 3.14 | Tested in CI |
| Linux (Ubuntu) | x64 | 3.11, 3.12, 3.13, 3.14 | Tested in CI |
| Linux (Ubuntu) | arm64 | 3.11, 3.12, 3.13, 3.14 | Tested in CI |
| macOS | Apple Silicon | 3.11, 3.12, 3.13, 3.14 | Tested in CI |
| Linux (Ubuntu) | x64 | 3.15 (release candidate) | Informational job — see below |
| Linux (Ubuntu) | x64 | 3.14 free-threaded | Informational job |
| Windows | arm64 | 3.13 | Informational job |
Intel macOS is not covered by CI. PyTorch no longer publishes macOS x86_64 wheels, so PyDotNet.Torch cannot be exercised there; the core library is expected to work but is untested on that platform.
Windows arm64 runs as an informational job rather than a full matrix leg, for the same reason: pyarrow and torch publish no win_arm64 wheels, so those plugin tests cannot run there. numpy, pandas and matplotlib do, so the gap may close on its own. The job covers what actually differs between platforms — locating and loading libpython, and configuring the interpreter.
Python 3.15 runs as a separate job that cannot fail the build. Most third-party wheels do not exist for it yet — pyarrow, matplotlib and torch are all absent at 3.15.0rc1 — so only the interpreter lifecycle suite runs there, covering initialization, virtual environment activation, and isolation. It moves into the matrix once 3.15 is final and the wheels have caught up.
CI runs the full test suite across all three .NET TFMs (net8.0, net9.0, net10.0) and all four supported Python versions on every push.
Typed, idiomatic C# wrappers for popular Python packages, built on top of the PyDotNet core. Each plugin is a separate NuGet package with zero-copy data sharing, async reducers, and full XML-doc IntelliSense.
| Plugin | Package | Status | Docs |
|---|---|---|---|
| NumPy | PyDotNet.NumPy |
✅ Released | docs/numpy.md |
| Pandas + Polars | PyDotNet.DataFrames |
✅ Released | docs/dataframes.md |
| PyTorch | PyDotNet.Torch |
✅ Released | docs/torch.md |
| LangChain | PyDotNet.LangChain |
🗓 Planned | — |
| Matplotlib | PyDotNet.Matplotlib |
✅ Released | docs/matplotlib.md |
| Hosting / DI | PyDotNet.Extensions.Hosting |
✅ Released | docs/hosting.md |
Each plugin wraps a focused subset of the underlying Python library's API. The table below summarises current coverage and notable gaps.
| Plugin | Wrapped | Python total (approx.) | What's covered | Notable gaps |
|---|---|---|---|---|
| PyDotNet.NumPy | ~55 | ~600 | Shape/dtype metadata; zero-copy Span<T>/Memory<T> via DLPack; reshape, transpose, flatten, squeeze, copy, astype, clip, dot, matmul; reductions (sum, mean, std, min, max) with async overloads; element-wise math (abs, sqrt, square, exp, log); C# operator overloads; array builders (zeros, ones, arange, linspace, eye, full); stack, concatenate, expand_dims |
sort/argsort, where, broadcast_to, pad, linalg.*, fft.*, advanced indexing, most of random.* |
| PyDotNet.DataFrames | ~60 | ~500 (Pandas) / ~300 (Polars) | Construction from .NET dictionaries; CSV/Parquet/JSON read and write; column listing; row count; column indexing; Select, Drop, Rename, FillNull, Head/Tail, Describe; row selection (Query, mask Filter, Series comparisons); GroupBy with multi-key aggregation; Join with a join-type enum, CrossJoin; multi-column Sort with per-column direction; zero-copy Apache Arrow batch export; PyArrowTable over pyarrow.Table with Parquet/IPC read and write and conversion to either frame library; typed element extraction from Series |
.NET → Python columnar import, apply/map, pivot and reshape, window/rolling functions, multi-index operations |
| PyDotNet.Torch | ~35 | ~700 | Autograd (requires_grad, grad, backward, detach); device movement (to, cpu, cuda); arithmetic (+, -, *, /, @, unary -); shape (reshape, view, transpose, .T, squeeze, unsqueeze); reductions (mean, sum); element-wise math (abs, exp, log, sqrt); activations (relu, sigmoid, tanh, softmax); data access (item, DLPack, buffer protocol); factory (zeros, ones, empty, from_dlpack) |
clone, contiguous, permute, cat/stack, max/min, norm, clamp, index/slice access, in-place variants |
| PyDotNet.Matplotlib | ~15 | ~500 | Figure/axes creation; line (plot), scatter, bar, histogram; title/xlabel/ylabel; legend; grid; axis limits (set_xlim, set_ylim); PNG/SVG/PDF rendering via headless Agg backend |
Subplots grid (subplots(m,n)), twin axes, log scale, color bars, 3-D plots, imshow, animation, custom tickers |
Positional Python calls use CPython's vectorcall protocol to avoid temporary tuple allocation, while live wrapper tracking uses weak-key ownership records. BenchmarkDotNet scenarios cover calls, marshaling, zero-copy buffers, and async execution; see Performance.
PyDotNet also publishes opt-in OpenTelemetry-compatible activities and metrics through PyRuntimeDiagnostics. Traces cover imports, execution, evaluation, and calls; metrics cover latency, errors, operations, runtime transitions, and active interpreters/objects. See Observability for instrument names and configuration.
Async calls run on a process-wide persistent asyncio event loop with configurable
admission control, Python-side cancellation propagation, and graceful runtime draining.
See Production async hosting for configuration and lifecycle guidance.
PyDotNet.Extensions.Hosting plugs the runtime into a Microsoft.Extensions.Hosting
application, so startup and shutdown ordering belong to the host rather than to a
hand-rolled IHostedService that has to remember PyRuntime.Shutdown() on every exit path:
builder.Services.AddPyDotNet();
builder.Services.AddHealthChecks().AddPyDotNet();app.MapGet("/summary", (PyInterpreter python) =>
{
using var result = python.Evaluate("analytics.summarise()");
return result.As<string>();
});Interpreter settings bind from the PyDotNet configuration section, so which interpreter a
deployment uses — the setting most likely to differ between environments — changes without
a rebuild. PyInterpreter is injectable and disposed with its scope. The host's logger is
forwarded before Initialize, so interpreter discovery findings and the virtual environment
mismatch warning are logged rather than discarded. Shutdown drains in-flight Python async
work within AsyncShutdownTimeout.
The health check reports Healthy, Degraded (a virtual environment mismatch) or
Unhealthy (the runtime is not running), and carries the resolved library, version and
sys.path settings — so a deployment running the wrong interpreter can be diagnosed from a
health endpoint rather than by shelling into the container.
See Hosting and dependency injection for the full option reference.
Items below are planned or under active investigation. Rough priority order — earlier items are closer to being started.
Half of this already works. DataFrame.ToArrowBatches() exports through __arrow_c_stream__, and
RecordBatch.GetColumn<T> returns a ReadOnlySpan<T> pointing straight into Python-owned memory,
so Python → .NET columnar reads are zero-copy today. What is missing is the other direction, and a
typed surface for the Arrow type most Python code actually passes around:
PyArrowTablewrappingpyarrow.Tablewith zero-copy column access via the C Data Interface- Import — expose .NET columnar data through
__arrow_c_stream__so pandas, polars andpyarrow.Tablecan each consume it without a copy.DLPackTensor.Exportis the ownership model - Polars
LazyFramesink / source so .NET can push and pull data from a Polars pipeline - Apache Arrow Flight RPC for large distributed transfers — a network transport with its own dependency and security surface, sharing no design with in-process exchange, so it is a separate decision rather than part of the same piece of work
Tracked in #94.
Today PyDotNet hosts one CPython interpreter with the GIL enabled by default, so Python work from many .NET threads serialises. There are two routes out, and which one PyDotNet should build toward is genuinely open.
Free-threading (PEP 703) removes the GIL from the
interpreter itself. PyDotNet already runs the free-threaded 3.14t build in CI and
PyRuntime.IsGilEnabled already reports which kind of interpreter was loaded, so this route needs
no API change at all — existing code becomes parallel by running against a free-threaded
interpreter.
Sub-interpreters (PEP 684, Python 3.12+) give each interpreter its own GIL. This route needs real API design:
Py_NewInterpreterFromConfigwithPyInterpreterConfig_OWN_GIL, one per pooled interpreterInterpreterPoolSizegiven the meaning its name already implies — it currently has none- Rules for object lifetime, since a
PyObjectbelongs to the interpreter that created it - Async bridge behaviour when each interpreter runs its own event loop
Free-threading is the cheaper route and the one already exercised here, but it is not automatically the answer: sub-interpreters provide isolation that free-threading does not, which matters for a host running untrusted or mutually distrustful Python.
Both are constrained by extensions. A C extension must opt in to multi-phase initialisation to load in a sub-interpreter, and must be built free-threaded to load without the GIL; neither is universal yet, though free-threaded wheels are appearing faster. Establishing what actually loads comes before committing to either.
The core async bridge includes persistent production hosting, backpressure, Python-side
cancellation, an asyncio.Queue bridge, and structured concurrency. Next steps:
async forwith timeouts — per-item timeout onIAsyncEnumerable<T>
Make PyDotNet usable in NativeAOT-published apps:
- Replace
System.Reflection/DynamicMethodpaths in the marshaling layer with source-generated equivalents - Trim analysis annotations so the linker can safely remove unused converter paths
- Verified publish profiles for
win-x64,linux-x64,linux-arm64
That surface grew in v1.2.0 rather than shrinking: the callback trampoline uses
Delegate.DynamicInvoke, and typed-collection marshaling uses
Activator.CreateInstance(typeof(List<>).MakeGenericType(…)). Collapsing the invoke path into one
replaceable seam (#93) is the first step, and
pays for itself in call throughput whether or not AOT follows.
Note: CPython itself is not AOT-compatible; this item is about making the host side (PyDotNet) AOT-safe so it can load and call
libpythonfrom a trimmed binary.
Most of the hand-written half of this has shipped. NdArray, DataFrame, Series and
PyTorchTensor are the typed wrappers the table below originally proposed under other names, and
their coverage is summarised in Python API coverage above.
| Package | Status |
|---|---|
| NumPy | NdArray — shape/dtype awareness, operators, zero-copy via DLPack |
| Pandas | DataFrame, Series — column indexer, transformation verbs, Arrow export |
| Polars | DataFrame, Series — same surface; LazyFrame plans remain unwrapped (#94) |
| PyTorch | PyTorchTensor — grad tracking, device movement, DLPack export |
| scikit-learn | Not started — PyEstimator<TInput, TOutput> fit/predict/transform |
What remains is the part that does not scale by hand: a source generator producing wrappers
from any .pyi stub file, so users can generate typed surfaces for their own packages rather than
waiting for a plugin.
Render Python visualization libraries inside .NET UI frameworks without a browser round-trip:
- Matplotlib → rendering to
byte[]already ships (Figure.SaveToPng,SaveToSvg,SaveToPdf,SaveToBytes, via the headless Agg backend). What remains isSystem.Drawing.Bitmapconversion - Plotly → capture the HTML/JSON output and display in a WebView2 / MAUI
WebView - Streamlit / Gradio → launch in a side-process and embed via iframe in Blazor
- An
IPlotRendererabstraction so WPF, WinForms, MAUI, and Avalonia apps share the same API
Building on the existing DLPack and __cuda_array_interface__ support:
- CUDA stream synchronization — associate .NET async operations with CUDA streams so compute and I/O can overlap
- Device memory access — read/write
cuMemAllocbuffers from .NET without a device→host copy - Multi-GPU routing — fan work out across GPUs. Reading the device is already possible:
DLPackTensor.GetDevicereturns the device type and ordinal, andArrayInterfaceInfo.IsCudareports whether a buffer lives on the device - NVIDIA cuSPARSE / cuBLAS wrappers — call into Python math libraries with pre-staged GPU tensors
- Unified memory (
cudaMallocManaged) — share a single allocation across .NET, Python, and CUDA kernels
Independent of the items above, and each small enough to land on its own:
| Python 3.15 in the enforced matrix | 3.15 is verified and runs as an informational job. Promoting it waits on third-party wheels — pyarrow, matplotlib and torch have none yet. Tracked in #43 |
| Interpreter restart | Py_Finalize is deliberately never called, so a process gets one interpreter configuration for its lifetime. Investigated in #61: finalizing is viable on current CPython, but a C extension cannot be re-imported afterwards (cannot load module more than once per process), so a general restart would fail on the first real workload |
| Cancelling an async callback from Python | Cancelling the future stops the await, but the .NET task runs on with its result discarded. Propagating cancellation into a CancellationToken parameter is tracked in #98 |
| DataFrame reshaping | apply/map, pivot, window and rolling functions, and multi-index operations remain unwrapped |
Recently completed and no longer listed above: callbacks — .NET
delegates as Python callables; typed exceptions and cause chaining;
hosting and dependency injection; the
diagnostics report; DataFrame transformation verbs
(DataFrames); marshaling for decimal, Guid, DateOnly,
TimeOnly and BigInteger; effective-configuration introspection
(PyRuntime.EffectiveConfiguration); sys.path precedence (PySysPathPlacement); the
NuGet package icon; and the changelog.
Setup, the gated tests that need a process of their own, and what CI expects are in CONTRIBUTING.md. Bug reports go through the issue templates.
Security problems should be reported privately rather than as an issue — see SECURITY.md.
MIT — see LICENSE.