About 28 results
Open links in new tab
  1. Python.NET | pythonnet

    Python.NET provides a powerful application scripting tool for .NET developers. Using this package you can script .NET applications or build entire applications in Python, using .NET services and …

  2. Embedding .NET into Python - Python.NET documentation

    Python.NET is available as a source release on GitHub and as a platform-independent binary wheel or source distribution from the Python Package Index. Installing from PyPI can be done using pip install …

  3. Python.NET documentation

    Python.NET provides a powerful application scripting tool for .NET developers. Using this package you can script .NET applications or build entire applications in Python, using .NET services and …

  4. Embedding Python into .NET - Python.NET documentation

    Because Python.NET is so closely integrated with the managed environment, one will generally be better off importing a module and deferring to Python code as early as possible rather than writing a …

  5. C# Reference - Python.NET documentation

    Convert a Python object to a Python int if possible, raising a PythonException if the conversion is not possible. This is equivalent to the Python expression “int (object)”.

  6. Codecs - Python.NET documentation

    Codecs Python.NET performs some conversions between .NET and Python automatically. For example, when Python calls this C# method: void Foo(int bar) { ... } via Foo(42), Python value 42 of type int will …

  7. Usage - clr-loader documentation - GitHub Pages

    The assembly instance can now be used to get a wrapper instance of the Test function in Python. The given parameters are the fully qualified class name and the function name.

  8. clr-loader documentation - GitHub Pages

    A function like this can be called from Python with a single bytes parameter. If more functionality is required, please consider using Python.NET instead.

  9. Python Reference - Python.NET documentation

    Load Python.NET in the specified runtime The same parameters as for set_runtime can be used. By default, set_default_runtime is called if no environment has been set yet and no parameters are …

  10. Python.NET | pythonnet.github.io

    reference types can be important when using Python.NET because the Python language has no value type semantics or syntax - in Python “everything is a reference”. Here is a simple example that …