Re: [Python.NET] Embedding a Python interactive shell in a .NET application

2016-05-27 Thread Saparya K
newline for textbox textBox1.Text = pyStderr; } }} With this code, I was able to redirect the stdout (and stderr in the case of an error) from the Python engine to a .NET text box. On Wed, May 18, 2016 at 12:02 AM, Saparya K wrote: > Hi Denis, > Thanks for pointi

Re: [Python.NET] Embedding a Python interactive shell in a .NET application

2016-05-18 Thread Saparya K
arov : > >> for embedding look at c# embedding unit tests and also here: >> >> 1. Old API: >> >> http://pythonnet.github.io/readme.html >> >> 2. New simplified API using dynamic: >> >> https://github.com/pythonnet/pythonnet/blob/master/README.md >>

Re: [Python.NET] Embedding a Python interactive shell in a .NET application

2016-05-13 Thread Saparya K
ython REPL using pythonnet/Excel-DNA or > COM in Excel with Custom Task Pane (CTP) written in WinForms: > > https://groups.google.com/forum/#!topic/jupyter/CVht4orvQtc > > > > > > On Wed, May 11, 2016 at 4:44 PM, Saparya K wrote: > >> Hello PythonNet, >>

[Python.NET] Embedding a Python interactive shell in a .NET application

2016-05-11 Thread Saparya K
Hello PythonNet, I am looking to embed a Python interactive (REPL) shell in a .NET WinForms application. This C# application displays a graphical visualization of some data. Methods to manipulate the data in the C# application would be exposed via a Python API. The idea is to be able to interact w