Re: [Ironpython-users] Ironpython cannot load .Net DLL

2017-04-04 Thread Slide
Please try adding the Dependencies directory to the sys.path. You can do it like this: sys.path.append('path/to/Dependencies') On Tue, Apr 4, 2017, 07:52 Petri Alapiessa wrote: > Hi, > > My company uses .NET and has libraries to application interface. I would > like to use python to invoke appl

[Ironpython-users] Ironpython cannot load .Net DLL

2017-04-04 Thread Petri Alapiessa
Hi, My company uses .NET and has libraries to application interface. I would like to use python to invoke application functions. A prerequisite is that I can load .NET DLL that interacts with that application. But I am stuck here, Ironpython cannot load one of the dependent DLL's or it's depende

[Ironpython-users] getting a PythonAst from a string containing Python code in c#

2017-04-04 Thread Venkatesh Potluri
Hi list, I am trying to get an IronPython.Compiler.Ast.PythonAst from a c# string containing some python code. How do I go about doing this in c#? My understanding is that I first have to create a parser using IronPython.Compiler.Parser.CreateParser() and then parse the code to get a PythonAst.