using Python objects in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T07:42:02Zhttp://stackoverflow.com/feeds/question/845502http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/845502/using-python-objects-in-c2using Python objects in C#Meidan Alon2009-05-10T15:11:45Z2009-05-10T15:31:36Z
<p>Is there an easy way to call Python objects from C#, that is without any COM mess?</p>
http://stackoverflow.com/questions/845502/using-python-objects-in-c/845506#8455065Answer by Earwicker for using Python objects in C#Earwicker2009-05-10T15:14:10Z2009-05-10T15:14:10Z<p>Yes, by hosting IronPython.</p>
http://stackoverflow.com/questions/845502/using-python-objects-in-c/845511#8455114Answer by JaredPar for using Python objects in C#JaredPar2009-05-10T15:16:31Z2009-05-10T15:31:36Z<p>In the current released version of C# there is no great way to achieve this without using some sort of bridge layer. You can host it IronPython to a degree but its hard to take advantage of the dynamic features of IronPython since C# is a very statically typed language</p>
<p>If you're speaking of IronPython though, C# 4.0 will be able to interop with that seemlessly. C# 4.0 is introducing a new feature calldh dynamic which allows it to work with any language running on the DLR. </p>
<pre><code>dynamic d = GetSomePythonObject();
d.SomeMethod();
</code></pre>
http://stackoverflow.com/questions/845502/using-python-objects-in-c/845515#8455151Answer by Darin Dimitrov for using Python objects in C#Darin Dimitrov2009-05-10T15:18:24Z2009-05-10T15:18:24Z<p>You may take a look at this <a href="http://stackoverflow.com/questions/736443/ironpython-and-c-script-access-to-c-objects">post</a>.</p>
http://stackoverflow.com/questions/845502/using-python-objects-in-c/845516#8455162Answer by rossfabricant for using Python objects in C#rossfabricant2009-05-10T15:18:32Z2009-05-10T15:24:05Z<p>I know of 3 ways:</p>
<p>1) Use Iron Python, and your Python projects can interact freely with projects written in C#.</p>
<p>2) Expose your Python functions to COM. You would do this if you need to use Python libraries that you don't want to or can't convert to Iron Python (EG, if you just have a DLL.)
The "COM mess" is not really so bad, if your Python code and C# code are running on the same machine.
This code from <a href="http://www.devshed.com/c/a/Python/Windows-Programming-in-Python-Creating-COM-Servers/3/" rel="nofollow">this tutorial</a> shows that it's not excessively ugly: </p>
<pre><code>class PythonUtilities:
_public_methods_ = [ 'SplitString' ]
_reg_progid_ = "PythonDemos.Utilities"
# NEVER copy the following ID
# Use "print pythoncom.CreateGuid()" to make a new one.
_reg_clsid_ = "{41E24E95-D45A-11D2-852C-204C4F4F5020}"
def SplitString(self, val, item=None):
import string
if item != None: item = str(item)
return string.split(str(val), item)
# Add code so that when this script is run by
# Python.exe, it self-registers.
if __name__=='__main__':
print "Registering COM server..."
import win32com.server.register
win32com.server.register.UseCommandLine(PythonUtilities)
</code></pre>
<p>3) Have C# and Python communicate through sockets. You would do this if you have code you can't convert to Iron Python and you need to access it remotely.
This requires the most work because you need to marshall and unmarshall the arguments and return values from bytes or strings, but it is what one team of mine did when we needed to make C# talk to a remote Python process.</p>