Search Results

1
vote

Iron python, beautiful soup, win32 app

Regarding the second part of your question, you can use the DLR Hosting APIs to run IronPython code from within a C# application. The DLR hosting spec is …
2
votes

Iron python, beautiful soup, win32 app

Also, regarding one of the previous comments about compiling with -X:SaveAssemblies - that is wrong. -X:SaveAssemblies is meant as a debugging feature. There is a API meant for compiling python cod …
7
votes

How to embed IronPython in a .NET application

IronPython has a hosting API which can be used to execute IronPython scripts from a C#\VB application. This …
0
votes

How do I create a Web Service in IronPython?

Have a look at the sample called DynamicWebServiceHelpers in the recently released IronPython …
0
votes

How can I add attributes to methods and types defined in IronPython?

One, albeit ugly and sometimes impractical, workaround is to create a stub class in C# and decorate it with attributes and derive from that in IronPython. …
4
votes

How do I install IronPython 2.0 with NGEN’ed binaries?

Try passing in NGENDLLS=True from the commandline. …
1
vote

Querying IronPython scripts for interfaces in a hosted environment

You can always get the backing .NET type for a Python Type by calling clr.GetClrType Python.GetClrModule(engine) returns the clr module and then call the GetClrType method on it passing in …