Re: [Python.NET] Error in calling Python class method from C#

2018-04-30 Thread techi eth
I have got success on doing. I just need to get review to ensure right. Please find below code snapshot. Class.py def test(): print "Test called" return 1 class ClassTest: def __init__(self) def Initalize(self): print "Initalize called" return 1 @staticmethod def Execute():

Re: [Python.NET] Using multiple versions of the same DLL

2018-04-30 Thread Tom Unger
Not me. Tom From: PythonDotNet On Behalf Of Denis Akhiyarov Sent: Sunday, April 29, 2018 7:58 PM To: A list for users and developers of Python for .NET Subject: Re: [Python.NET] Using multiple versions of the same DLL I presume this is your question with an open bounty on it? https://stacko

Re: [Python.NET] Embedding: finer control over module creation

2018-04-30 Thread Tom Unger
I did see the PythonScope object. Your link helps explain it’s intended use: "eval" and "exec" are the most frequently used methods when interacting with Python. However, that is not my use. I have an application that relies heavily on scripting. Initially I used IronPython and that has wo