AIKernel.NET

aikernel_tools.tools.managed

Python source reference / 6 symbols

aikernel_tools.tools.managed public Python API generated from source.

Source: AIKernel.Tools/python/src/aikernel_tools/tools/managed.py

Summary

This Python module belongs to aikernel-tools and exposes 6 public symbols in the generated inventory.

Why

This reference page is intentionally grouped with package and source context so it is useful as documentation, not only as an autogenerated member list.

Usage

Use this page to confirm the module name, public class/function/constant shape, and bilingual docstring coverage before writing wrapper code.

Examples

python -c "import aikernel_tools.tools.managed; print(aikernel_tools.tools.managed.__name__)"

Notes

Docstring summaries are read directly from Python source. If a symbol has no summary, the source should be improved rather than padded in the generated site.

See Also

Python package | Docs | Tutorials

KindSymbolSummary
class ManagedObject
ManagedObject
Base wrapper for public C# Tools objects.
function to_dictionary
def to_dictionary(values: Mapping[str, str])
Convert a Python mapping to System.Collections.Generic.Dictionary.
function to_string_list
def to_string_list(values)
Convert Python values to System.Collections.Generic.List[str].
function managed_type
def managed_type(type_name: str, assembly_name: str)
Resolve a C# type by assembly-qualified name.
function create_managed
def create_managed(type_name: str, assembly_name: str, *args)
Create a managed object through reflection.
function call_static
def call_static(type_name: str, assembly_name: str, method_name: str, *args)
Invoke a public static C# method through reflection.