active questions tagged ironpython - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T20:36:41Zhttp://stackoverflow.com/feeds/tag/ironpythonhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804142/check-active-directory-passwords-with-ironpython0Check active directory passwords with ironpythonHaim Bender2009-11-26T14:54:01Z2009-11-26T14:54:01Z
<p>Hi,</p>
<p>I'm an admin on an active domain and most of my users use the same password,
I find all those users so that I could ask them to change their password.</p>
<p>I was thinking that iron python would be good tool to get this done.</p>
<p>How would I get this accomplished?</p>
<p>Any help would be really appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1721761/vb-webform-in-ironpython-asp-net-website0VB webform in IronPython asp.net websitePablo2009-11-12T12:09:36Z2009-11-26T13:04:38Z
<p>Hi,</p>
<p>I tried to bring a previously done webform made in vb.net to an IronPython asp.net website with no luck. After seeing it didnt work, I tried to write the simplest codebehind vb.net webform to see if there was a problem with vb.net in an IronPython website and I got the following usual error </p>
<p>"be sure that the defined class in this file matchs with the one in the attribute inherits and that it extends the right base page (page or control)" (sorry if the translation isnt the most accurate I get that message in spanish)</p>
<p><em>but if I create a vb.net webform in the same website, with the sourcecode in the same file (with the vb.net code between script runat="server" tags in the same page) I get no problem</em>. </p>
<p>Do I have to configure something for both kind of sourcecode languages to run in such way in the same IronPython website, like configuring something in the webconfig file or is there some compatibility issue for doing that which can't be resolved?</p>
http://stackoverflow.com/questions/1784478/create-a-new-tuple-with-one-element-modified0Create a new Tuple with one element modifiedtechnomalogical2009-11-23T16:56:01Z2009-11-23T17:55:22Z
<p>(I am working interactively with a WordprocessingDocument object in IronPython using the OpenXML SDK, but this is really a general Python question that should be applicable across all implementations)</p>
<p>I am trying to scrape out some tables from a number of Word documents. For each table,
I have an iterator that is giving me table row objects. I then use the following generator statement to get a tuple of cells from each row:</p>
<pre><code>for row in rows:
t = tuple([c.InnerText for c in row.Descendants[TableCell]()])
</code></pre>
<p>Each tuple contains 4 elements. Now, in column <code>t[1]</code> for each tuple, I need to apply a regex to the data. I know that tuples are immutable, so I'm happy to either create a new tuple, or build the tuple in a different way. Given that <code>row.Descendants[TableCell]()</code> returns an iterator, what's the most Pythonic (or at least simplest) way to construct a tuple from an iterator where I want to modify the <code>n</code>th element returned?</p>
<p>My brute-force method right now is to create a tuple from the left slice (<code>t[:n-1]</code>), the modified data in <code>t[n]</code> and the right slice (<code>t[n+1:]</code>) but I feel like the <code>itertools</code> module should have something to help me out here.</p>
http://stackoverflow.com/questions/1780266/ironpython-and-pdb-settrace1IronPython and pdb.set_trace()Mike Gates2009-11-22T22:34:34Z2009-11-23T05:26:53Z
<p>Does anyone know if IronPython 2.6 is planned to have support for pdb.set_trace() to enable setting breakpoints in an ironpython module? If not does anyone have a suggestion for accomplishing this without pdb?</p>
http://stackoverflow.com/questions/1772824/reasons-for-using-a-dlr-based-language-rather-than-c-for-scripting-tasks1Reasons for using a DLR-based language rather than C# for scripting tasks?Dave2009-11-20T19:49:51Z2009-11-20T20:56:28Z
<p>I'm considering embedding a scripting language into one of my software projects and have identified two options: compiling C# at run-time via CodeDOM and embedding a DLR-based scripting language. Both options would give me full access to the .NET Framework.</p>
<p>The operation that I'd be scripting would be a user-defined transformation of a DataRow and a set of metadata resulting in a modified DataRow. I expect these transforms will be composable and frequently invoked. Of course, I expect the transforms to be provided and modifiable by the end-user.</p>
<p>With this workload in mind, are there any clear advantages to using one approach over another?</p>
http://stackoverflow.com/questions/1765919/why-cant-i-import-my-c-type-into-ironpython1Why can't I import my C# type into IronPython?Josh Kodroff2009-11-19T19:29:57Z2009-11-19T21:45:53Z
<p>I have some types in a C# library I wrote, e.g.:</p>
<pre><code>namespace SprocGenerator.Generators
{
public class DeleteGenerator : GeneratorBase
{
public DeleteGenerator(string databaseName, string tableName) : base(databaseName, tableName)
</code></pre>
<p>I want to use them in an IronPython script:</p>
<pre><code>import clr
import sys
clr.AddReferenceToFile("SprocGenerator.dll")
# problem happens here:
from SprocGenerator.Generators import *
generator = DeleteGenerator("a", "b")
</code></pre>
<p>When the line below the comment happens, I get:</p>
<pre><code>ImportError: No module named Generators
</code></pre>
<p>I have verified that the file I am loading is what I expect by renaming it and verifying the script throws an error when trying to load the assembly. I have verified the namespace is in the assembly via Reflector. I have also tried specifying a fully-qualified classname to work around my import issue, e.g.</p>
<pre><code> generator = SprocGenerator.Generators.DeleteGenerator("a", "b")
</code></pre>
<p>But I get:</p>
<pre><code> NameError: name 'SprocGenerator' is not defined
</code></pre>
<p>Even if I have this in C#:</p>
<pre><code>namespace SprocGenerator
{
public static class GeneratorHelper
{
public static string GetTableAlias(string tableName)
</code></pre>
<p>And this in IP:</p>
<pre><code>import clr
import sys
from System import *
clr.AddReferenceToFile("SprocGenerator.dll")
from SprocGenerator import *
print "helper = " + GeneratorHelper.GetTableAlias("companyBranch")
</code></pre>
<p>I get this error:</p>
<pre><code> NameError: global name 'GeneratorHelper' is not defined
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1757296/what-is-the-equivalent-of-the-c-using-block-in-ironpython3What is the equivalent of the C# "using" block in IronPython?Josh Kodroff2009-11-18T16:34:55Z2009-11-18T23:25:19Z
<p>What's the equivalent of this in IronPython? Is it just a try-finally block?</p>
<pre><code>using (var something = new ClassThatImplementsIDisposable())
{
// stuff happens here
}
</code></pre>
http://stackoverflow.com/questions/1708103/how-to-impress-developers-with-ironpython-python7How to impress developers with IronPython/PythonDror Helper2009-11-10T13:49:53Z2009-11-18T15:46:50Z
<p>I need an IronPython\Python example that would show C#/VB.NET developers how awesome this language really is. </p>
<p>I'm looking for an <strong>easy to understand</strong> code snippet or application I can use to demo Python's capabilities.</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/1755572/ironpython-scriptruntime-equivalent-to-cpython-pythonpath0IronPython ScriptRuntime equivalent to CPython PYTHONPATHRodrigo Strauss2009-11-18T12:10:08Z2009-11-18T15:33:19Z
<p>The following import works inside ipy.exe prompt but fails using IronPython ScriptRuntime inside a C# 4.0 program.</p>
<pre><code>import ConfigParser
</code></pre>
<p>C# code:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IronPython.Hosting;
using Microsoft.Scripting.Hosting;
namespace CSharpDynamic
{
class Program
{
static int Main(string[] args)
{
ScriptRuntime python = Python.CreateRuntime();
dynamic dynamicIni =
python.UseFile(@"c:\test\WebCast\DynamicIni.py");
return 0;
}
}
}
</code></pre>
<p>CPython uses PYTHONPATH environment variable. How do I configure this in IronPython when using ScriptRuntime?</p>
http://stackoverflow.com/questions/1730986/nonblocking-webserver-on-net-for-comet-applications3Nonblocking webserver on .Net for Comet applicationsTristan2009-11-13T18:22:54Z2009-11-18T15:12:48Z
<p>I am trying to implement a Comet style (e.g. chat) application using IronPython. While I don't need to scale to twitter like dimensions, it is vital that the response time is lightening fast. All the possibilities in Python (<a href="http://twistedmatrix.com/trac/" rel="nofollow">Twisted</a>, <a href="http://www.tornadoweb.org/" rel="nofollow">Tornado</a>, <a href="http://code.google.com/p/magnum-py/" rel="nofollow">Magnum-Py</a>) do not work with IronPython, often because of epoll support.</p>
<p>Is there a default choice in the .Net world for comet style applications? Or a pure python implementation with long-pulling support? I have tried <a href="http://ntornado.codeplex.com/" rel="nofollow">NTornado</a>, but performance is currently very poor (100-1000x slower than Tornado).</p>
http://stackoverflow.com/questions/1743159/rollback-in-ironpython-using-system-data-sqlclient0Rollback in Ironpython using System.Data.SqlClientunknown (google)2009-11-16T16:07:01Z2009-11-16T16:49:35Z
<p>I am unable to rollback using the following code snippet and need help:</p>
<pre><code>import clr
import sys
clr.AddReference('System.Data')
from System.Data.SqlClient import SqlConnection, SqlParameter, SqlTransaction
conn_string = "****"
connection = SqlConnection(conn_string)
connection.Open()
createuser = connection.CreateCommand()
createuser.CommandText = "****"
try:
reader = createuser.ExecuteReader()
reader.Close()
except:
reader.Rollback()
</code></pre>
<p>Thanks!</p>
<p>I understand now, however now I'm having a problem where its expecting a string but I cant do the parametrized values if I put the SQL query string in as the argument:</p>
<pre><code>createuser.CommandText = "****"
createuser.Parameters.AddWithValue("@Username", username);
usertransaction = connection.BeginTransaction(createuser)
try:
usertransaction.Commit()
except:
usertransaction.Rollback()
</code></pre>
http://stackoverflow.com/questions/1032888/how-to-addreference-to-ritmo-for-iseries-in-ironpython0how to addreference to Ritmo for iSeries in ironpythonsagar2009-06-23T14:24:51Z2009-11-15T20:00:02Z
<p>I was just wondering if anybody knows how to add reference to "Ritmo for iSeries" in IronPython.
I did it successfully in C# and get it to work (since it is just click click click) And I was trying to do the same in IronPython but it says, "could not add reference to assembly Ritmo for iSeries".</p>
<p>I was doing</p>
<p>import clr
clr.AddReference('Ritmo for iSeries')
from Ritmo........</p>
<p>IOError: Could not add reference to assembly Ritmo for iSeries</p>
http://stackoverflow.com/questions/1729791/what-are-the-disadvantages-of-writing-unit-tests-in-a-different-language-to-the9What are the (dis)advantages of writing unit tests in a different language to the code?ctford2009-11-13T15:09:38Z2009-11-13T19:14:36Z
<p>Unit tests have different requirements than production code. For example, unit tests may not have to be as performant as the production code.</p>
<p>Perhaps it sometimes makes sense to write your unit tests in a language that is better suited to writing unit tests? The specific example I have in mind is writing an application in C# but using IronRuby or IronPython to write the tests.</p>
<p>As I see it, using IronPython and IronRuby have several advantages over C# code as a testing language:</p>
<ul>
<li>Mocking can be simpler in dynamically typed languages</li>
<li>IronPython has less verbose type annotations that are not needed in unit tests</li>
<li>Experimental invocation of tests without recompilation by typing commands at the interpreter</li>
</ul>
<p><strong>What are the tradeoffs in using two different languages for tests and production code?</strong></p>
http://stackoverflow.com/questions/1707390/ironpython-asp-net-intellisense1IronPython asp.net IntelliSense Pablo2009-11-10T11:46:34Z2009-11-13T10:57:29Z
<p>I'm trying IronPython for asp.net, I got a simple CRUD screen to work. I've read IntelliSense doesnt work for IronPython, but is there any way to get rid of Visual Studio underlining all the lines' starting tokens with blue and a message of "expected declaration"?</p>
http://stackoverflow.com/questions/1440233/possible-to-intercept-and-rewrite-email-on-outlook-client-side-using-ironpython1possible to intercept and rewrite email on outlook client side using ironpython?Ross Rogers2009-09-17T17:31:22Z2009-11-12T00:23:27Z
<p>I want to intercept and transform some automated emails into a more readable format. I believe this is possible using VBA, but I would prefer to manipulate the text with Python. Can I create an ironpython client-side script to pre-process certain emails?</p>
<p>EDIT:
I believe this can be done with outlook rules. In Outlook 2007, you can do:
Tools->Rules -> New Rule</p>
<p>"check messages when they arrive"</p>
<p>next</p>
<p>[filter which emails to process]</p>
<p>next</p>
<p>"run a script"</p>
<p>In the "run a script" it allows you to use a VBA script.</p>
http://stackoverflow.com/questions/1707042/c-running-ironpython-on-multiple-threads0C# Running IronPython On Multiple Threads Klerk2009-11-10T10:43:46Z2009-11-11T03:41:22Z
<p>I have a WPF app that controls audio hardware. It uses the same PythonEngine on multiple threads. This causes strange errors I see from time to time where the PythonEngines Globals dictionary has missing values. I am looking for some guidance on how to debug/fix this. </p>
<p>The device has multiple components [filter's, gain's, etc.]. Each component has multiple controls [slider's,togglebutton's, etc.]. </p>
<p>Everytime a user changes a control value a python script (from the hardware vendor) needs to run. I am using IronPython 1.1.2(PythonEngine.Execute(code)) to do this. </p>
<p>Every component has a script. And each script requires the current values of all controls (of that component) to run.</p>
<p>The sequence is - user makes change > run component script > send results to device > check response for failure. This whole cycle takes too long to keep the UI waiting so everytime something changes I do something like component.begininvoke(startcycle).</p>
<p>Startcycle looks something like this -</p>
<pre><code>PyEngine Engine = PyEngine.GetInstance(); // this is a singleton
lock(component) // this prevents diff controls of the same component from walking over each other
{
Engine.runcode(...)
}
</code></pre>
<p>When <em>different</em> component.begininvokes happen close to each other there are chances where engine.runcode is happening on different threads at the same time. It looks like I need to get rid of the component.begininvoke but that would make things crawl. Any ideas?</p>
http://stackoverflow.com/questions/466917/natural-language-parser-for-dates-net5Natural language parser for dates (.NET)?Crescent Fresh2009-01-21T20:48:02Z2009-11-10T21:20:41Z
<p>I want to be able to let users enter dates (including recurring dates) using natural language (eg "next friday", "every weekday"). Much like the examples at <a href="http://todoist.com/Help/timeInsert" rel="nofollow">http://todoist.com/Help/timeInsert</a></p>
<p>I found <a href="http://stackoverflow.com/questions/23689/natural-language-date-time-parser-for-net">this post</a>, but it's a bit old and offered only <a href="http://www.codeplex.com/DateTimeEnglishParse" rel="nofollow">one solution</a> that I'm not entirely content with. I thought I'd resurrect this question and see: are there any other .NET libraries out there that do this kind of date parsing?</p>
http://stackoverflow.com/questions/755883/ide-for-ironpython-on-windows13IDE for ironpython on windowsShard2009-04-16T12:23:15Z2009-11-10T16:18:02Z
<p>I am currently learning ironpython and loving but i'm looking to move on from using notepad++ and cmd.exe and try using something with a bit more juice.</p>
<p>I recently learned that iron python studio does not support iron python 2 so that makes my choice a bit more difficult.</p>
<p>Is their any IDE's for windows that would be good iron python 2 development?</p>
http://stackoverflow.com/questions/1699856/c-or-other-net-equivalents-of-core-python-modules-for-ironpython0C# or other .net equivalents of core python modules for IronPython?bvmou2009-11-09T09:00:22Z2009-11-09T09:56:23Z
<p>I would like to compile and distribute (on .net) some python programs that work well with IronPython, but I am new to .net and am getting errors related to particular python modules. There is a utility for compiling to low level .net and it works well, but I get errors when dealing with common libraries; code that runs in the interpreter does not necessarily compile. For example, the below takes advantage of the basic modules <code>shutil</code>, <code>getpass</code>, and <code>os</code>. <code>getpass.getuser()</code> returns a username as a string. <code>shutil</code> provides, among other things, a copy function (although that one I can rewrite in pure python and get to compile), and <code>os</code> is used here for getting folder info, making dirs and unlinking files. How might I adapt stuff along the following lines, in whole or any part, to use only libraries native to .net? If anyone has used IronPython as a bridge from python to learning .net any related tips are appreciated.</p>
<pre><code>import shutil
import os
import getpass
uname = getpass.getuser()
folders = ["/users/"+uname+"/location", "/users/"+uname+"/other_location"]
for folder in folders:
for root, dir, files in os.walk(folder):
for file in files:
file_name = os.path.join(root, file)
time_stamp = os.stat(file_name).st_mtime
time_dict[time_stamp] = file_name
working_list.append(time_stamp)
def sync_up():
for item in working_list:
if item not in update_list:
os.remove(item)
else:
shutil.copy2(item, some_other_folder)
def cp_function(target=some_folder):
if os.path.exists(target):
sync_up()
else:
try:
os.mkdir(target)
sync_up()
except:
print """error connecting
"""
</code></pre>
http://stackoverflow.com/questions/1696305/python-stop-execution-after-a-maximum-time0Python: stop execution after a maximum timeVictor Hurdugaci2009-11-08T12:50:47Z2009-11-08T19:22:48Z
<p>Hello,</p>
<p>I have an IronPython script that execute some exes. I want to stop the execution of the current exe if its runtime exceeds a certain amount of time. How can I do this?</p>
<p>Current function:</p>
<pre><code>def execute(programName):
t0 = time.time()
#should stop the execution of "programName"
#if execution exceeds limit
p = os.popen(programName,"r")
result = p.readline()
p.close()
execTime = time.time() - t0
return result, execTime
</code></pre>
http://stackoverflow.com/questions/1439457/can-you-typecast-a-net-object-in-ironpython0can you typecast a .NET object in IronPython?Phil Smyth2009-09-17T15:05:39Z2009-11-08T06:41:23Z
<p>I'm interfacing with a .NET API in IronPython. The API is returning an object of the wrong type (some kind of generic object). I suspect that the problem is not showing up in their C# code because the type declaration when the object is constructed is forcing the returned object to the correct type. Is it possible to typecast an .NET object in IronPython? I think this would do the trick.</p>
http://stackoverflow.com/questions/1693205/how-does-ironpython-speed-compare-to-other-net-languages3How does ironpython speed compare to other .net languages?Pablo2009-11-07T14:27:18Z2009-11-07T20:24:16Z
<p>Hi,</p>
<p>I would like to give sources for what I'm saying but I just dont have them, it's something I heard.</p>
<p>Once a programming professor told me that some software benchmarking done to .net vs Python in some particular items it gave a relation of 5:8 in favor of .NET . That was his argument in favor of Python not being so much slower than .NET</p>
<p>Here it's the thing, I would like to try IronPython since I could combine the web framework I know the most (asp.net) with the language I like the most (Python) and I was wondering about the speed of programs in asp.net in Python vs the speed of programs in ASP.NET with VB.net or C#. Is there any software benchmarking on this? </p>
<p>Also, shouldnt the speeds of IronPython compared to other .NET languages be similar, since IronPython unlike Python have to compile to the .NET intermediate code? Can someone enlight me on these issues?</p>
<p>Greetings</p>
http://stackoverflow.com/questions/1156446/ironpython-studio-where-is-the-console0(IronPython Studio) Where is the console?devoured elysium2009-07-20T23:08:30Z2009-11-06T17:04:48Z
<p>Hello. I am new to IronPython. I've read the MSDN article <a href="http://msdn.microsoft.com/en-us/magazine/cc300810.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc300810.aspx</a> and for what I've understood I can set code with IronPython on the run. I created a simple Windows Forms project in IronPython studio and ran it, but I can't find on the IDE anywhere to type code into. Isn't it possible, am I missing something? Thanks</p>
http://stackoverflow.com/questions/1682889/using-python-libraries-in-compiled-ironpython0Using Python Libraries in Compiled IronPythonstimms2009-11-05T19:14:14Z2009-11-06T16:36:29Z
<p>I have a python script which works well when it isn't compiled but when I compile it using pyc it is unable to access the standard python libraries (sys and os in this case). Is there a way of compiling them into the project? </p>
http://stackoverflow.com/questions/739825/ironpython-for-unit-testing-with-ironpython-studios1IronPython for unit testing with IronPython StudiosOwen2009-04-11T10:22:15Z2009-11-06T16:28:33Z
<p>Im looking to play with IronPython and figured that writing unit tests is a simple enough way to get started. This would essentially mean that my core applications code will still be written in C# with just my tests been python. </p>
<p>With this in mind my ideal situation was to develop both the C# and IronPython code from within the same solution in Visual studios. Looking around I see that there is a visual studios editor "IronPythonStudios" that should be right for me, though so far I have hit a few issues:</p>
<ol>
<li>Importing core python libaries such as "Import os" fail. I believe this is because the path to these common libaries is not set within the IDE and I have no idea how to set it. </li>
<li>I am unable to recognize .pyproj files from visual studios, I <em>believe</em> that my version of IronPythonStudios is running in Isolated mode and not integrated. Any idea how I change this?</li>
<li>It appears that IronPythonStudos is compiling the .py files instead of just interpreting them. This essentailly means that unit testing is as slow as with C#/Vb.net as the test, build then exectue cycle still exists. Any idea how I stop VS/IPS from compiling the files and just get it to just dynamically compile the scripts?</li>
</ol>
<p>Cheers, Chris. </p>
http://stackoverflow.com/questions/1681005/how-to-use-microsoft-scripting-hosting0How to use Microsoft.Scripting.Hosting?wishi_2009-11-05T14:45:58Z2009-11-05T18:37:13Z
<p>To embed some IronPython Code into C# I want to use the ScriptEngine</p>
<pre><code>using IronPython.Hosting;
using Microsoft.Scripting.Hosting;
</code></pre>
<p>I found the reference for IronPython, but where is the necessary reference for Scripting.Hosting? I can't find it within VisualStudio 2008, targeting .Net 3.5. </p>
http://stackoverflow.com/questions/1660942/ironpython-2-6-rc2-cyrillic-character-and-xtabcompletion-switch0IronPython 2.6 RC2: Cyrillic character and -X:TabCompletion switchVladimir Aks2009-11-02T12:12:45Z2009-11-05T07:11:10Z
<p>Cyrillic characters are displayed incorrect while entering
in interactive mode if interpreter was started with -X:TabCompletion switch.
It looks like that:</p>
<blockquote>
<blockquote>
<blockquote>
<p>s="????"</p>
</blockquote>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/1324904/extending-c-net-application-build-a-custom-scripting-language-or-not8Extending C# .NET application - build a custom scripting language or not?cgyDeveloper2009-08-24T21:36:05Z2009-11-03T22:46:00Z
<p>I need to build a scripting interface for my C# program that does system level testing of embedded firmware.</p>
<p>My application contains libraries to fully interact with the devices. There are separate libraries for initiating actions, getting output and tracking success/failure. My application also has a GUI for managing multiple devices and assigning many scripts to be run.</p>
<p>For the testers (non-programmers, but technical), I need to provide a scripting interface that will allow them to come up with different scenarios for testing and run them. They are just going to call my APIs and then return a result to my program (pass/fail and message).</p>
<p>A very basic example of what I want:</p>
<pre><code>TURN_POWER_ON
TUNE_FREQUENCY frequency
WAIT 5
IF GET_FREQUENCY == frequency
REPORT_PASS "Successfully tuned to " + frequency
ELSE
REPORT_FAIL "Failed to tune to " + frequency
ENDIF
TURN_POWER_OFF
</code></pre>
<p>Where the reporting, power and frequency functions are provided by my C# libraries.</p>
<p>Will something like IronRuby or IronPython be good for this, or should I just build my own very basic language?</p>
<p>Does the Ruby/Python code get messy when trying to include a bunch of .NET compiled assemblies? I want it to be easy to learn and code for non-programmers and programmers alike.</p>
<p>EDIT:</p>
<p>Thanks for all the great responses. I chose IronPython as the answer since it had the most support, but I'll spend a bit of time with each of IronPython, Boo and IronRuby to see what the testers would prefer to write scripts in.</p>
http://stackoverflow.com/questions/1664567/embedded-ironpython-memory-leak3Embedded IronPython Memory LeakcgyDeveloper2009-11-03T00:31:36Z2009-11-03T20:18:23Z
<p>I need some help finding a solution to a memory leak I'm having. I have a C# application (.NET v3.5) that allows a user to run IronPython scripts for testing purposes. The scripts may load different modules from the Python standard library (as included with IronPython binaries). However, when the script is completed, the memory allocated to the imported modules is not garbage collected. Looping through multiple runs of one script (done for stress testing) causes the system to run out of memory during long term use.</p>
<p>Here is a simplified version of what I'm doing.</p>
<p>Script class main function:</p>
<pre><code>public void Run()
{
// set up iron python runtime engine
this.engine = Python.CreateEngine(pyOpts);
this.runtime = this.engine.Runtime;
this.scope = this.engine.CreateScope();
// compile from file
PythonCompilerOptions pco = (PythonCompilerOptions)this.engine.GetCompilerOptions();
pco.Module &= ~ModuleOptions.Optimized;
this.script = this.engine.CreateScriptSourceFromFile(this.path).Compile(pco);
// run script
this.script.Execute(this.scope);
// shutdown runtime (run atexit functions that exist)
this.runtime.Shutdown();
}
</code></pre>
<p>An example 'test.py' script that loads the random module (adds ~1500 KB of memory):</p>
<pre><code>import random
print "Random number: %i" % random.randint(1,10)
</code></pre>
<p>A looping mechanism that will cause the system to run out of memory:</p>
<pre><code>while(1)
{
Script s = new Script("test.py");
s.Run();
s.Dispose();
}
</code></pre>
<p>I added the section to not optimize the compilation based on what I found in <a href="http://lists.ironpython.com/pipermail/users-ironpython.com/2009-January/009396.html" rel="nofollow">this</a> thread, but the memory leak occurs either way. Adding the explicit call to s.Dispose() also makes no difference (as expected). I'm currently using IronPython 2.0, but I've also tried upgrading to IronPython 2.6 RC2 without any success.</p>
<p>How do I get the imported modules in the embedded IronPython script to be garbage collected like normal .NET objects when the scripting engine/runtime goes out of scope?</p>
http://stackoverflow.com/questions/1664587/trouble-executing-selenium-python-unittests-in-c-with-scriptengine-net-3-51trouble executing Selenium python unittests in C# with ScriptEngine (.NET 3.5)kdawg2009-11-03T00:38:56Z2009-11-03T16:50:28Z
<p>Hello all, first time poster.</p>
<p>I'm turning to my first question on stack overflow because I've found little resources in trying to find an answer. I'm looking to execute Selenium python tests from a C# application. I don't want to have to compile the C# Selenium tests each time; I want to take advantage of IronPython scripting for dynamic selenium testing. (note: I have little Python or ScriptEngine, et al experience.)</p>
<p>Selenium outputs unit tests in python in the following form:</p>
<pre><code>from selenium import selenium
import unittest
class TestBlah(unittest.TestCase):
def setUp(self):
self.selenium = selenium(...)
self.selenium.start()
def test_blah(self):
sel = self.selenium
sel.open("http://www.google.com/webhp")
sel.type("q", "hello world")
sel.click("btnG")
sel.wait_for_page_to_load(5000)
self.assertEqual("hello world - Google Search", sel.get_title())
print "done"
def tearDown(self):
self.selenium.stop()
if __name__ == "__main__":
unittest.main()
</code></pre>
<p>I can get this to run, no problem, from the command line using ipy.exe:</p>
<pre><code>ipy test_google.py
</code></pre>
<p>And I can see Selenium Server fire up a firefox browser instance and run the test.</p>
<p>I cannot achieve the same result using the ScriptEngine, et al API in C#, .NET 3.5, and I think it's centered around not being able to execute the main() function I'm guessing the following code is:</p>
<pre><code>if __name__ == "__main__":
unittest.main()
</code></pre>
<p>I've tried engine.ExecuteFile(), engine.CreateScriptSourceFromString()/source.Execute(), and engine.CreateScriptSourceFromFile()/source.Execute(). I tried scope.SetVariable("<code>__name__</code>", "<code>__main__</code>"). I do get some success when I comment out the if <code>__name__</code> part of the py file and call engine.CreateScriptSourceFromString("unittest.main(module=None") after engine.Runtime.ExecuteFile() is called on the py file. I've tried storing the results in python and accessing them via scope.GetVariable(). I've also tried writing a python function I could call from C# to execute the unit tests.</p>
<p>(engine is an instance of ScriptEngine, source an instance of ScriptSource, etc.)</p>
<p>My ignorance of Python, ScriptEngine, or the unittest module could easily be behind my troubles. Has anyone had any luck executing python unittests using the ScriptEngine, etc API in C#? Has anyone successfully executed "main" code from ScriptEngine? </p>
<p>Additionally, I've read that unittest has a test runner that will help in accessing the errors via a TestResult object. I believe the syntax is the following. I haven't gotten here yet, but know I'll need to harvest the results.</p>
<pre><code>unittest.TextTestRunner(verbosity=2).run(unittest.main())
</code></pre>
<p>Thanks in advance. I figured it'd be better to have more details than less. =P</p>