using Python objects in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:42:02Z http://stackoverflow.com/feeds/question/845502 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/845502/using-python-objects-in-c 2 using Python objects in C# Meidan Alon 2009-05-10T15:11:45Z 2009-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#845506 5 Answer by Earwicker for using Python objects in C# Earwicker 2009-05-10T15:14:10Z 2009-05-10T15:14:10Z <p>Yes, by hosting IronPython.</p> http://stackoverflow.com/questions/845502/using-python-objects-in-c/845511#845511 4 Answer by JaredPar for using Python objects in C# JaredPar 2009-05-10T15:16:31Z 2009-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#845515 1 Answer by Darin Dimitrov for using Python objects in C# Darin Dimitrov 2009-05-10T15:18:24Z 2009-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#845516 2 Answer by rossfabricant for using Python objects in C# rossfabricant 2009-05-10T15:18:32Z 2009-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>