Re: How to interface with C# without IronPython

2009-03-17 Thread Kay Schluehr
On 17 Mrz., 16:22, Mudcat wrote: > On Mar 17, 6:39 am, Kay Schluehr wrote: > > > > > On 16 Mrz., 23:06, Mudcat wrote: > > > > On Mar 13, 8:37 pm, Christian Heimes wrote: > > > > > Chris Rebert wrote: > > > > > Haven't used it, butPythonfor .NET sounds like it might be what you > > > > > want:ht

Re: How to interface with C# without IronPython

2009-03-17 Thread Mudcat
On Mar 17, 6:39 am, Kay Schluehr wrote: > On 16 Mrz., 23:06, Mudcat wrote: > > > > > On Mar 13, 8:37 pm, Christian Heimes wrote: > > > > Chris Rebert wrote: > > > > Haven't used it, butPythonfor .NET sounds like it might be what you > > > > want:http://pythonnet.sourceforge.net/ > > > > I've don

Re: How to interface with C# without IronPython

2009-03-17 Thread Kay Schluehr
On 16 Mrz., 23:06, Mudcat wrote: > On Mar 13, 8:37 pm, Christian Heimes wrote: > > > Chris Rebert wrote: > > > Haven't used it, butPythonfor .NET sounds like it might be what you > > > want:http://pythonnet.sourceforge.net/ > > > I've done some development for and with PythonDotNET. It's definite

Re: How to interface with C# without IronPython

2009-03-16 Thread Mudcat
On Mar 13, 8:37 pm, Christian Heimes wrote: > Chris Rebert wrote: > > Haven't used it, butPythonfor .NET sounds like it might be what you > > want:http://pythonnet.sourceforge.net/ > > I've done some development for and with PythonDotNET. It's definitely > the right thing. It works with .NET, Mono

Re: How to interface with C# without IronPython

2009-03-13 Thread Christian Heimes
Chris Rebert wrote: > Haven't used it, but Python for .NET sounds like it might be what you > want: http://pythonnet.sourceforge.net/ I've done some development for and with PythonDotNET. It's definitely the right thing. It works with .NET, Mono and Python 2.4 to 2.6. Christian -- http://mail.py

Re: How to interface with C# without IronPython

2009-03-13 Thread Chris Rebert
On Fri, Mar 13, 2009 at 3:51 PM, Mudcat wrote: > All the topics I seem to find on this topic lead me in the direction > of IronPython, but I'm not interested right now in a reimplementation > of Python in .Net environment. There are wrappers and methods > available for integrating with Java, C, an

How to interface with C# without IronPython

2009-03-13 Thread Mudcat
All the topics I seem to find on this topic lead me in the direction of IronPython, but I'm not interested right now in a reimplementation of Python in .Net environment. There are wrappers and methods available for integrating with Java, C, and a bevy of other languages. I don't know much about .N

Re: Interface with C

2005-09-14 Thread Terry Hancock
On Wednesday 14 September 2005 12:34 pm, Ben Pearson wrote: > I have a program that is developed in C, that has a simple text > interface. I would like to use the same program, but with a GUI. I > would like to use Python to interface with it, so that Python will > simply read and write the code

Re: Interface with C

2005-09-14 Thread Eric Lavigne
> When this button is hit, it will send a code of 0 to the C > program. > > ./mcp | python gui.py Your pipe is backwards. Try this: python gui.py | ./mcp When your gui.py notices that a button got hit, it can just print the number 0 (followed by a newline character) to standard output. This beco

Interface with C

2005-09-14 Thread Ben Pearson
I have a program that is developed in C, that has a simple text interface. I would like to use the same program, but with a GUI. I would like to use Python to interface with it, so that Python will simply read and write the code that would be used from a normal user, but using a TK GUI. For exa