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 …
6
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. …
0
votes

Has anyone tracked down whether IronPython or IronRuby will support Attributes?

There was some discussion about the plans in the ironpython mailing list recently - link text …
1
vote

Intercepting Method Access on the Host Program of IronPython

This post might be useful. …
1
vote

Iron Python installed but project type missing from VS08

IronPython does not have any VS Integration. The link in your question simply installs the commandline tool. The default folder is IronPython 2.0 under ProgramFiles. That is the only thing that get …
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 …