User codeape - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T15:31:50Zhttp://stackoverflow.com/feeds/user/3571http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1802282/what-is-paste-script/1802440#18024401Answer by codeape for What is paste script ?codeape2009-11-26T09:02:40Z2009-11-26T09:24:00Z<p>Paste got several components:</p>
<ul>
<li>Paste Core: various modules to aid in creating wsgi web apps or frameworks (<a href="http://pythonpaste.org/modindex.html" rel="nofollow">module index</a>). Includes stuff like request and response objects. From the web site: "The future of these pieces is to split them into independent packages, and refactor the internal Paste dependencies to rely instead on WebOb". If you're considering using components from paste core, I suggest you look at the spin-offs instead, like <a href="http://pythonpaste.org/webob/" rel="nofollow">WebOb</a>.</li>
<li>Paste Deploy: a system for loading and configuring WSGI applications and servers (<a href="http://pythonpaste.org/deploy/modindex.html" rel="nofollow">module index</a>). Basically some stuff to read a config file and create a WSGI app as specified in the file.</li>
<li><strong>Paste Script</strong>: A framework for defining commands. It comes with a few commands out of the box, like <code>paster serve</code> (loads and serves a WSGI application defined in a Paste Deploy config file) and <code>paster create</code> (creates directory layout for packages etc). The best intro to paste script I found is <a href="http://pythonpaste.org/script/developer.html" rel="nofollow">http://pythonpaste.org/script/developer.html</a></li>
</ul>
<p>Here's the source for the <code>paster serve</code> command: <a href="http://trac.pythonpaste.org/pythonpaste/browser/Paste/Script/trunk/paste/script/serve.py#L33" rel="nofollow">serve.py</a>.</p>
<p>And <code>paster create</code>: <a href="http://trac.pythonpaste.org/pythonpaste/browser/Paste/Script/trunk/paste/script/create%5Fdistro.py#L16" rel="nofollow">create_distro.py</a>.</p>
http://stackoverflow.com/questions/1750480/use-random-functions-python/1750500#17505000Answer by codeape for use random functions (python)codeape2009-11-17T17:36:10Z2009-11-17T17:36:10Z<p>Yes. I don't see why not.</p>
http://stackoverflow.com/questions/1745919/how-can-i-filter-on-the-second-element-in-a-tuple-of-tuples/1745952#17459524Answer by codeape for how can I filter on the second element in a tuple of tuples?codeape2009-11-17T00:58:31Z2009-11-17T00:58:31Z<p>You cannot filter directly by the country name (the <code>choices</code> are only used in the UI, not in the database).</p>
<p>If you get the full name as an input, lookup the code in the <code>COUNTRIES</code> tuple-of-tuples. For example:</p>
<pre><code># ... initialize a lookup dictionary
country_to_id_dict = dict((t[1], t[0]) for t in COUNTRIES)
# ... use the dictionary in the query
i = MyModel.objects.filter(country__exact=country_to_id_dict[query])
</code></pre>
http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time4Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:12:44Z2009-11-12T17:00:39Z
<p>The case:</p>
<ul>
<li>A scheduled task running on Windows.</li>
<li>The program's job is to extract some information from text documents. It uses a lot of regular expressions to do this. The program is therefore <a href="http://en.wikipedia.org/wiki/CPU%5Fbound" rel="nofollow">CPU Bound</a>.</li>
<li>The service takes every document it finds in a folder and converts them one after another.</li>
</ul>
<p>Normally, everything is OK, the service finds a few documents every now and then and converts them.</p>
<p>But on some occasions, due to a misconfiguration on the system that delivers the documents, a few thousand documents has been in queue for conversion at the same time. When this happens, the service process stays at 100% CPU for a long time, causing the server to become unresponsive to other types of requests.</p>
<p>On Linux, I could probably use <code>nice</code> or <code>cpulimit</code> to limit the CPU usage, but all customers run this on Windows.</p>
<p>There are obvious ways I can work around this, for instance I could let the service sleep a bit between every file it handles (but this feels a bit clunky). Or I could let the extraction process sleep a bit between every regexp match (feels even clunkier).</p>
<p>Questions:</p>
<ul>
<li>Why does the application developer (me) even need to worry about this? I thought that assigning resources to processes was the operating system's job? I mean, seriously: Do I really need to make my program slower by design (by introducing some sleep() calls)?</li>
<li>Is there a way I can configure Windows to give my scheduled task some CPU limit?</li>
<li>Is this a general problem with CPU bound programs? (or am I doing something fundamentally wrong)</li>
</ul>
<p><strong>Edit:</strong></p>
<ul>
<li>Some answers and comments suggest that I should check my assumption that my process is CPU bound. And that I/O load might be the problem. I want to check on the I/O load, is there a something simple I can look for in the task manager? Would a quickly increasing I/O Reads/Writes values be an indication?</li>
</ul>
http://stackoverflow.com/questions/1631333/in-django-how-to-write-a-query-that-selects-all-possible-combinations-of-four-in/1631545#16315450Answer by codeape for In django, how to write a query that selects all possible combinations of four integers?codeape2009-10-27T15:20:11Z2009-10-27T15:26:50Z<p>Code:</p>
<pre><code>from itertools import permutations
winning_numbers = "1234"
winning_combinations = map(lambda v: "".join(v), list(permutations(winning_numbers, 4)))
winners = GamesPlayed.objects.filter(numbers__in=winning_combinations)
</code></pre>
<p>Assuming GamesPlayed is the model object for all games played, with a text field numbers containing the four selected numbers in the format <code>NNNN</code>.</p>
<p>If you're on Python 2.5 <code>itertools</code> does not have <code>permutations</code>. The docs have an implementation you can use: <a href="http://docs.python.org/library/itertools.html#itertools.permutations" rel="nofollow">http://docs.python.org/library/itertools.html#itertools.permutations</a></p>
http://stackoverflow.com/questions/1629728/how-to-find-length-of-an-element-in-a-list/1629744#16297442Answer by codeape for How to find length of an element in a list?codeape2009-10-27T09:54:32Z2009-10-27T10:38:14Z<p>To print the lengths of the elements:</p>
<pre><code>elements = ["xxxxxx", "yyy", "z"]
for element in elements:
print len(element)
</code></pre>
<p>I recommend you read some tutorial material, for instance <a href="http://docs.python.org/tutorial/" rel="nofollow">http://docs.python.org/tutorial/</a></p>
http://stackoverflow.com/questions/1629611/python-script-to-match-c-function-signature-in-multiple-lines/1629645#16296451Answer by codeape for python script to match C function signature in multiple linescodeape2009-10-27T09:29:28Z2009-10-27T09:43:48Z<p>I suggest you write a simple parser for the C language.</p>
<p>One of the examples in the <a href="http://www.pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">ANTLR book</a> does something similar to what you're after.</p>
<p><a href="http://pyparsing.wikispaces.com" rel="nofollow">Pyparsing</a> is a very nice Python library for writing parsers.</p>
<p>Here is a parser for ANSI C: <a href="http://code.google.com/p/pycparser/" rel="nofollow">http://code.google.com/p/pycparser/</a> (written using another Python parser library, <a href="http://www.dabeaz.com/ply/" rel="nofollow">Ply</a>).</p>
http://stackoverflow.com/questions/1598733/python-console-website/1599340#15993401Answer by codeape for Python Console Websitecodeape2009-10-21T07:55:12Z2009-10-21T13:04:09Z<p>IronPython (using Silverlight or Moonlight 2): <a href="http://www.trypython.org/" rel="nofollow">http://www.trypython.org/</a></p>
http://stackoverflow.com/questions/1594000/f-list-map-equivalent-in-c/1594047#15940476Answer by codeape for F# List.map equivalent in C#?codeape2009-10-20T11:47:44Z2009-10-20T11:54:32Z<p><code>ConvertAll</code> is the built-in function:</p>
<pre><code>public List<TOutput> ConvertAll<TOutput>(
Converter<T, TOutput> converter
)
</code></pre>
<p>Documentation: <a href="http://msdn.microsoft.com/en-us/library/73fe8cwf.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/73fe8cwf.aspx</a></p>
<p>Available since .NET version 2.0.</p>
http://stackoverflow.com/questions/1593104/problem-with-calling-a-run-file-from-c-application/1593119#15931197Answer by codeape for Problem with calling a run file from c# Applicationcodeape2009-10-20T08:10:28Z2009-10-20T08:10:28Z<p>Set the working directory:</p>
<pre><code>batch.StartInfo.WorkingDirectory = "E:\\newFiles";
</code></pre>
http://stackoverflow.com/questions/1589279/how-do-i-return-a-value-from-a-console-application-to-a-service-in-net/1589285#15892850Answer by codeape for How do I return a value from a console application to a service in .NET?codeape2009-10-19T15:16:24Z2009-10-20T07:47:25Z<p>The console app can set its exit code.</p>
<p>The console app can set its exit code by either:</p>
<ol>
<li>Call <code>System.Environment.Exit(exitcode)</code>, or</li>
<li>Let the <code>main</code> function return an int.</li>
</ol>
<p>The <code>ExitCode</code> property (of the <code>System.Diagnostics.Process</code> class) lets the service process examine the console app's exit code.</p>
http://stackoverflow.com/questions/1574088/plotting-time-in-python-with-matplotlib/1574146#15741461Answer by codeape for plotting time in python with matplotlibcodeape2009-10-15T18:18:26Z2009-10-15T18:18:26Z<p>You must first convert your timestamps to python <code>datetime</code> objects (use <code>datetime.strptime</code>). Then use <code>date2num</code> to convert the dates to matplotlib format.</p>
<p>Plot the dates and values using <code>plot_dates</code>:</p>
<pre><code>dates = matplotlib.dates.date2num(list_of_datetimes)
plot_dates(dates, values)
</code></pre>
http://stackoverflow.com/questions/1521082/what-is-a-good-size-in-bytes-for-a-log-file/1521531#15215311Answer by codeape for What is a good size (in bytes) for a log file?codeape2009-10-05T18:05:59Z2009-10-05T18:05:59Z<p>My default logging setup:</p>
<pre><code>RotatingFileHandler(filename, maxBytes=10*1024*1024, backupCount=5)
</code></pre>
http://stackoverflow.com/questions/1519589/how-do-you-host-your-own-egg-repository/1519692#15196924Answer by codeape for How do you host your own egg repository? codeape2009-10-05T12:07:02Z2009-10-05T12:07:02Z<p>Deploy all your eggs to a directory all devs. can reach (for instance on a webserver).</p>
<p>To install eggs from that directory, type:</p>
<pre><code>$ easy_install -H None -f http://server/vdir TheEggToInstall
</code></pre>
<p>or.</p>
<pre><code>$ easy_install -H None -f /path/to/directory TheEggToInstall
</code></pre>
<p><code>-H None</code> means do not allow egg download from any host (except the one named in <code>-f</code>).</p>
<p>The directory can be reachable over http or can be a directory you mount (NFS, Windows shares etc.). Perhaps even FTP works?</p>
<p>The easy_install <a href="http://peak.telecommunity.com/DevCenter/EasyInstall" rel="nofollow">documentation</a> has information on this.</p>
http://stackoverflow.com/questions/1517428/coming-from-a-visual-studio-background-what-do-you-recommend-i-use-to-start-my-v/1517470#15174702Answer by codeape for Coming from a Visual Studio background, what do you recommend I use to start my VERY FIRST Python project?codeape2009-10-04T21:49:45Z2009-10-04T22:03:48Z<p>I think <a href="http://www.wingware.com/" rel="nofollow">Wing IDE</a> also deserves to be mentioned. I was a VIM user for years, but am currently thinking about changing to Wing. It costs money, but after evaluating for about a week (you can do a 30-day eval), I feel it will be well worth it.</p>
<p>I do not have any experience using the other IDEs (Komodo, Eclipse) mentioned. So they might be even better than Wing. It would be interesting if someone who has experience with all of them could describe some of their differences, strengths and weaknesses.</p>
<p>That being said, I recommend learning Python using a basic approach - use a text editor like Notepad++, VIM or emacs to learn the basics. Learn to use the standard Python debugger, <a href="http://docs.python.org/library/pdb.html" rel="nofollow">pdb</a>, from the command line. And use the interactive shell when learning (use <a href="http://ipython.scipy.org/" rel="nofollow">IPython</a> for interactive work).</p>
<p>Switch to an IDE when you master the basics.</p>
<p>There is also a very basic IDE in the Python distro: <a href="http://docs.python.org/library/idle.html" rel="nofollow">IDLE</a>.</p>
<p>There are a lot of great tutorials and books on Python available. Start with the standard <a href="http://docs.python.org/" rel="nofollow">documentation</a>. A lot of people like <a href="http://diveintopython.org/" rel="nofollow">Dive into Python</a>. I also recommend <a href="http://oreilly.com/catalog/9780596100469" rel="nofollow">Python in a nutshell</a>.</p>
http://stackoverflow.com/questions/1509364/i-want-something-like-github-but-internal-for-my-company-recommendations3I want something like github, but internal for my company. Recommendations?codeape2009-10-02T13:03:42Z2009-10-04T15:48:23Z
<p>I need some sort of web-based source code repository slash issue-tracker.</p>
<p>The point is to have greater visibility of our various internal projects.</p>
<p>Any recommendations? Open source is a requirement. A ready-made virtual appliance would be nice.</p>
<p>Internal github would be perfect, but AFAIK this costs money. Does anyone have experiences with <a href="http://blog.launchpad.net/general/launchpad-is-now-open-source" rel="nofollow">Launchpad</a> (recently open-sourced)? How abt. the stuff that sourceforge is built on?</p>
http://stackoverflow.com/questions/1476313/silverlight-tcp-tunneling-bridging/1476351#14763512Answer by codeape for silverlight tcp tunneling / bridgingcodeape2009-09-25T09:31:38Z2009-09-25T12:17:30Z<p>I believe this is known as <a href="http://en.wikipedia.org/wiki/Port%5Fforwarding" rel="nofollow">port forwarding</a>.</p>
<p>Most routers can do this.</p>
<p>On a Linux box, you can use iptables. On Windows use for instance <a href="http://www.komodia.com/index.php?page=KomodiaRelay.html" rel="nofollow">this</a>.</p>
<p>If I understand the silverlight socket security model correctly, a silverlight application can only connect to the host it was downloaded from, and only to a certain port range (80, 4502-4532 [BTW, does anyone know why that particular port range was selected?]).</p>
<p>So to connect from SL to you legacy app, you would have to...</p>
<p>Either:</p>
<ul>
<li>Have port mapping running on the server that the SL app is served from (probably a web server running IIS, right? That means it's a Windows box so search for 'port mapping windows', <a href="http://www.analogx.com/contents/download/network/pmapper.htm" rel="nofollow">PortMapper</a> seems to be popular.)</li>
<li>Configure the port mapper to forward port 45xx to port 3002 on the server that the legacy app is running on (maybe the same server as the web server?)</li>
</ul>
<p>Or:</p>
<p>if all traffic to the web server must pass through a certain router that you have some sort of control over, you could configure the port mapping there.</p>
http://stackoverflow.com/questions/237104/javascript-array-containsobj/1473742#14737425Answer by codeape for Javascript - array.contains(obj)codeape2009-09-24T19:35:24Z2009-09-24T19:35:24Z<p><a href="http://docs.jquery.com/Utilities/jQuery.inArray" rel="nofollow">jQuery</a> has a utility function for this:</p>
<pre><code>$.inArray(value, array)
</code></pre>
<p>Returns index of value in array. Returns -1 if array does not contain value.</p>
http://stackoverflow.com/questions/1181575/javascript-determine-whether-an-array-contains-a-value/1473737#14737370Answer by codeape for Javascript: Determine whether an array contains a valuecodeape2009-09-24T19:34:44Z2009-09-24T19:34:44Z<p><a href="http://docs.jquery.com/Utilities/jQuery.inArray" rel="nofollow">jQuery</a> has a utility function for this:</p>
<pre><code>$.inArray(value, array)
</code></pre>
<p>Returns index of value in array. Returns -1 if array does not contain value.</p>
http://stackoverflow.com/questions/1458203/reading-a-float-from-string/1459292#14592921Answer by codeape for Reading a float from stringcodeape2009-09-22T10:32:59Z2009-09-22T10:32:59Z<p>Here's an even shinier version of @Simon Edwards' <code>ExactFloat</code>, that counts the number of digits after the period and displays that number of digits when the number is converted to a string.</p>
<pre><code>import re
class ExactFloat(float):
def __init__(self, str_value):
float.__init__(self, str_value)
mo = re.match("^\d+\.(\d+)", str_value)
self.digits_after_period = len(mo.group(1))
def __repr__(self):
return '%.*f' % (self.digits_after_period, self)
def __str__(self):
return self.__repr__()
print ExactFloat("1.000")
print ExactFloat("1.0")
print ExactFloat("23.234500")
</code></pre>
<p>Example:</p>
<pre><code>$ python exactfloat.py
1.000
1.0
23.234500
</code></pre>
http://stackoverflow.com/questions/1459087/looking-for-a-bare-bones-open-source-editor-written-in-python/1459228#14592281Answer by codeape for Looking for a bare-bones open-source editor written in pythoncodeape2009-09-22T10:15:27Z2009-09-22T10:15:27Z<p>How about IDLE? IDLE is included in the standard Python distro. From the <a href="http://docs.python.org/library/idle.html" rel="nofollow">docs</a>:</p>
<p>"</p>
<p>IDLE has the following features:</p>
<ul>
<li>coded in 100% pure Python, using the tkinter GUI toolkit</li>
<li>cross-platform: works on Windows and Unix</li>
<li>multi-window text editor with multiple undo, Python colorizing and many other features, e.g. smart indent and call tips</li>
<li>Python shell window (a.k.a. interactive interpreter)</li>
<li>debugger (not complete, but you can set breakpoints, view and step)</li>
</ul>
<p>"</p>
<p>With some work, you could probably rip out the editor component from IDLE.</p>
<p>Have a look in the <code>idlelib</code> directory of your Python standard library.</p>
http://stackoverflow.com/questions/1459190/which-out-of-python-ruby-f-is-better-for-learning-as-first-programming-langu/1459209#145920917Answer by codeape for Which out of Python, Ruby, F# is better for learning as first programming language with dynamic type system?codeape2009-09-22T10:12:58Z2009-09-22T10:12:58Z<p>I recommend Python. It easily fits all your criteria. Great documentation and tutorials are available on line.</p>
<p>I have little experience with Ruby. I guess a Ruby programmer would recommend Ruby.</p>
<p>F#? Not so sure about that. I have a feeling that you would probably have more concepts to wrap your head around before being productive on F#.</p>
http://stackoverflow.com/questions/1394998/parsing-sql-with-python2Parsing SQL with Pythoncodeape2009-09-08T16:42:03Z2009-09-19T11:34:10Z
<p>I want to create a SQL interface on top of a non-relational data store. Non-relational data store, but it makes sense to access the data in a relational manner.</p>
<p>I am looking into using <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> to produce an AST that represents the SQL as a relational algebra expression. Then return data by evaluating/walking the tree.</p>
<p>I have never implemented a parser before, and I would therefore like some advice on how to best implement a SQL parser and evaluator.</p>
<ul>
<li>Does the approach described above sound about right?</li>
<li>Are there other tools/libraries I should look into? Like <a href="http://www.dabeaz.com/ply/" rel="nofollow">PLY</a> or <a href="http://pyparsing.wikispaces.com/" rel="nofollow">Pyparsing</a>.</li>
<li>Pointers to articles, books or source code that will help me is appreciated.</li>
</ul>
http://stackoverflow.com/questions/1421502/sqlalchemy-session-management-in-long-running-process0SQLAlchemy session management in long-running processcodeape2009-09-14T13:18:43Z2009-09-14T15:42:47Z
<p>Scenario:</p>
<ul>
<li>A .NET-based application server (<a href="http://global.wonderware.com/EN/Pages/WonderwareSystemPlatform.aspx" rel="nofollow">Wonderware IAS/System Platform</a>) hosts automation objects that communicate with various equipment on the factory floor.</li>
<li>CPython is hosted inside this application server (using <a href="http://pythonnet.sourceforge.net" rel="nofollow">Python for .NET</a>).</li>
<li>The automation objects have scripting functionality built-in (using a custom, .NET-based language). These scripts call Python functions.</li>
</ul>
<p>The Python functions are part of a system to track Work-In-Progress on the factory floor. The purpose of the system is to track the produced widgets along the process, ensure that the widgets go through the process in the correct order, and check that certain conditions are met along the process. The widget production history and widget state is stored in a relational database, this is where SQLAlchemy plays its part.</p>
<p>For example, when a widget passes a scanner, the automation software triggers the following script (written in the application server's custom scripting language):</p>
<pre><code>' wiget_id and scanner_id provided by automation object
' ExecFunction() takes care of calling a CPython function
retval = ExecFunction("WidgetScanned", widget_id, scanner_id);
' if the python function raises an Exception, ErrorOccured will be true
' in this case, any errors should cause the production line to stop.
if (retval.ErrorOccured) then
ProductionLine.Running = False;
InformationBoard.DisplayText = "ERROR: " + retval.Exception.Message;
InformationBoard.SoundAlarm = True
end if;
</code></pre>
<p>The script calls the <code>WidgetScanned</code> python function:</p>
<pre><code># pywip/functions.py
from pywip.database import session
from pywip.model import Widget, WidgetHistoryItem
from pywip import validation, StatusMessage
from datetime import datetime
def WidgetScanned(widget_id, scanner_id):
widget = session.query(Widget).get(widget_id)
validation.validate_widget_passed_scanner(widget, scanner) # raises exception on error
widget.history.append(WidgetHistoryItem(timestamp=datetime.now(), action=u"SCANNED", scanner_id=scanner_id))
widget.last_scanner = scanner_id
widget.last_update = datetime.now()
return StatusMessage("OK")
# ... there are a dozen similar functions
</code></pre>
<p>My question is: <strong>How do I best manage SQLAlchemy sessions in this scenario?</strong> The application server is a long-running process, typically running months between restarts. The application server is single-threaded.</p>
<p>Currently, I do it the following way:</p>
<p>I apply a decorator to the functions I make avaliable to the application server:</p>
<pre><code># pywip/iasfunctions.py
from pywip import functions
def ias_session_handling(func):
def _ias_session_handling(*args, **kwargs):
try:
retval = func(*args, **kwargs)
session.commit()
return retval
except:
session.rollback()
raise
return _ias_session_handling
# ... actually I populate this module with decorated versions of all the functions in pywip.functions dynamically
WidgetScanned = ias_session_handling(functions.WidgetScanned)
</code></pre>
<p>Question: <strong>Is the decorator above suitable for handling sessions in a long-running process?</strong> Should I call <code>session.remove()</code>?</p>
<p>The SQLAlchemy session object is a scoped session:</p>
<pre><code># pywip/database.py
from sqlalchemy.orm import scoped_session, sessionmaker
session = scoped_session(sessionmaker())
</code></pre>
<p>I want to keep the session management out of the basic functions. For two reasons:</p>
<ol>
<li>There is another family of functions, sequence functions. The sequence functions call several of the basic functions. One sequence function should equal one database transaction.</li>
<li>I need to be able to use the library from other environments. a) From a TurboGears web application. In that case, session management is done by TurboGears. b) From an IPython shell. In that case, commit/rollback will be explicit.</li>
</ol>
<p>(I am truly sorry for the long question. But I felt I needed to explain the scenario. Perhaps not necessary?)</p>
http://stackoverflow.com/questions/1351323/object-store-for-objects-in-django-between-requests/1352415#13524151Answer by codeape for Object store for objects in Django between requestscodeape2009-08-29T21:24:11Z2009-09-05T18:46:10Z<p>In a production WSGI environment, you would probably have multiple worker processes serving requests at the same time. These worker processes would be recycled from time to time, meaning local memory objects would be lost.</p>
<p>But if you really need this (and make sure you do), I suggest you look into Django's <a href="http://docs.djangoproject.com/en/dev/topics/cache/" rel="nofollow">caching framework</a>, check out local-memory caching. Also, have a look at <a href="http://docs.djangoproject.com/en/dev/topics/http/sessions/" rel="nofollow">sessions</a>.</p>
<p>But even the local-memory caching uses serialization (with <code>pickle</code>). It is easy to implement local-memory cache without serialization by implementing a custom cache back-end (see <a href="http://docs.djangoproject.com/en/dev/topics/cache/#using-a-custom-cache-backend" rel="nofollow">the docs</a>). You could use the code in <code>locmem.py</code> as a starting point to create a cache without serialization.</p>
<p>But I suspect you are doing a bit of premature optimization here?</p>
http://stackoverflow.com/questions/1367453/reading-a-website-with-asyncore/1367941#13679412Answer by codeape for Reading a website with asyncorecodeape2009-09-02T14:09:07Z2009-09-02T14:14:35Z<p>Have you looked at <a href="http://asynchttp.sourceforge.net/" rel="nofollow">http://asynchttp.sourceforge.net/</a>? </p>
<p>"Asynchronous HTTP Client for Python</p>
<p>The 'asynchttp'' module is a logical extension of the Python library 'asynchat' module which is built on the 'asyncore' and 'select' modules. Our goal is to provide the functionality of the excellent 'httplib' module without using blocking sockets."</p>
<p>The project's last commit was 2001-05-29, so it looks dead. But it might be of interest anyway.</p>
<p>Disclaimer: I have not used it myself.</p>
<p>Also, <a href="http://effbot.org/zone/effnews-1.htm" rel="nofollow">this blog post</a> has some information on async HTTP.</p>
http://stackoverflow.com/questions/1356348/sum-of-two-numbers-coming-from-the-command-line/1356373#13563733Answer by codeape for sum of two numbers coming from the command linecodeape2009-08-31T08:12:03Z2009-08-31T08:12:03Z<p>The error <code>list index out of range</code> means that you are trying to access a list item that is outside the bounds of the list.</p>
<p>Example:</p>
<pre><code>>>> mylist = ['hello', 'world']
>>> print mylist[2]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: list index out of range
</code></pre>
<p>In your case, the error comes from either <code>sys.argv[1]</code> or <code>sys.argv[2]</code>.</p>
<p>Make sure you actually pass something to the program from the command line.</p>
http://stackoverflow.com/questions/1022971/what-classes-of-applications-or-problems-do-you-prefer-python-to-strictly-oo-lang/1024405#10244053Answer by codeape for What classes of applications or problems do you prefer Python to strictly OO Languages?codeape2009-06-21T17:49:01Z2009-08-29T22:05:53Z<p>I select Python as often as possible. It is the most useful and productive programming environment that I know of.</p>
<p>If I run into projects where Python cannot be used directly or for the entire project (for instance a .NET-based app. server) my approach is usually to do as much with Python as possible. Depending on the situation that might mean:</p>
<ul>
<li>Embed a python interpreter</li>
<li>Use Jython</li>
<li>Use IronPython</li>
<li>Use some IPC mechanism (usually http or sockets) to call an external python process</li>
<li>Export data - process using python - import data</li>
<li>Generate code using Python</li>
</ul>
<p>From <a href="http://stackoverflow.com/questions/819056/i-know-c-will-i-be-more-productive-with-python/824064#824064">my answer</a> to a previous question: <a href="http://stackoverflow.com/questions/819056/i-know-c-will-i-be-more-productive-with-python">I know C#. Will I be more productive with Python?</a></p>
<p><hr /></p>
<p>In my experience, what makes me more productive in Python vs. C#, is:</p>
<ul>
<li>It is a dynamic language. Using a dynamic language often allows you to remove whole architectural layers from your app. Pythons dynamic nature allows you to create reusable high-level abstractions in more natural and flexible (syntax-wise) way than you can in C#.</li>
<li>Libraries. The standard libraries and a lot of the open-source libraries provided by the community are of high quality. The range of applications that Python is used for means that the range of libraries is wide.</li>
<li>Faster development cycle. No compile step means I can test changes faster. For instance, when developing a web app, the dev server detects changes and reloads the app when the files are saved. Running a unit test from within my editor is just a keystroke away, and executes instantaneously.</li>
<li>'Easy access' to often-used features: lists, list comprehensions, generators, tuples etc.</li>
<li>Less verbose syntax. You can create a WSGI-based Python web framework in fewer lines of code than your typical .NET <code>web.config</code> file :-)</li>
<li>Good documentation. Good books.</li>
</ul>
<p><hr /></p>
http://stackoverflow.com/questions/1352342/should-a-windows-installer-msi-include-the-net-framework/1352354#13523541Answer by codeape for Should a Windows Installer MSI include the .NET framework?codeape2009-08-29T20:58:48Z2009-08-29T21:40:42Z<p>Check for version and point the user to the download URL if necessary.</p>
<p>Or open a (local) web page that the installer supplies. Containing easy to follow instructions and a direct link to the download.</p>
<p>Or create code in the installer to download the file and start the install. I guess this is easy to accomplish with the installer frameworks, it is probably built in to the more advanced ones. Here's <a href="http://nsis.sourceforge.net/How%5Fto%5FAutomatically%5Fdownload%5Fand%5Finstall%5Fa%5Fparticular%5Fversion%5Fof%5F.NET%5Fif%5Fit%5Fis%5Fnot%5Falready%5Finstalled" rel="nofollow">how to do it</a> using <a href="http://nsis.sourceforge.net/Main%5FPage" rel="nofollow">NSIS</a> (Nullsoft Scriptable Install System).</p>
http://stackoverflow.com/questions/1352293/how-do-i-send-a-message-from-a-web-site-to-my-local-machine/1352321#13523210Answer by codeape for How do I send a message from a web site to my local machine?codeape2009-08-29T20:36:20Z2009-08-29T20:51:01Z<p>I suggest you poll the webapp for messages.</p>
<p>For instance, let the webapp have an URL that simply returns the timestamp of the most recent message, at <code>http://thesite.com/messages/MostRecentTimetamp.aspx</code></p>
<p>The page should return the timestamp only, in an format you can parse, for instance:</p>
<p><code>2009-08-29 14:00:00</code></p>
<p>Then, on another URL, <code>http://thesite.com/messages/FromLastHour.aspx</code> display the list of messages for the last N hours (or other suitable time period). This page could return one message per line, with the message timestamp at the start of the line.</p>
<p>For instance:</p>
<pre><code>2009-08-29 13:58:20 A message
2009-08-29 13:59:30 Here's a message
2009-08-29 14:00:00 Another message
</code></pre>
<p>On your local machine, create a program that as often as needed reads and parses <code>http://thesite.com/messages/MostRecentTimetamp.aspx</code>. If the program detects that the timestamp has changed, read <code>http://thesite.com/messages/FromLastHour.aspx</code> and process the new messages.</p>
<p>Adjust the timing according to your needs.</p>
<p>Or even better, have an URL: <code>http://thesite.com/messages/MoreRecentThan.aspx?timestamp=2009-08-29 13:50:00</code>. </p>
<p>That returns messages that are newer than the timestamp passed in. The program on your local machine should then pass the timestamp of the most recent message it has handled.</p>
<p>Of course, your web site has to keep track of outgoing messages in some sort of queue. You could use a database table for this. The web app can delete old messages from this table periodically.</p>
<p>If you want to get fancy, you could implement this as a SOAP web service. Or you could let the URLs return the data formatted as JSON.</p>
http://stackoverflow.com/questions/1747772/integration-testing-for-a-wep-app/1747804#1747804Comment by codeape on Integration Testing for a Wep Appcodeape2009-11-17T10:16:59Z2009-11-17T10:16:59ZSelenium supports several browsers for running tests, see <a href="http://seleniumhq.org/about/platforms.html#browsers" rel="nofollow">seleniumhq.org/about/platforms.html#browsers/…</a> . It is only the recording of tests (using Selenium IDE) that is FF only.http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689695#1689695Comment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:55:59Z2009-11-06T19:55:59ZOK, it seems I need to investigate a bit further. Will try to figure out if it is in fact the I/O that is causing the problems.http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689763#1689763Comment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:54:28Z2009-11-06T19:54:28ZOn 1.: I agree abt. premature optimization. But here it is an actual issue. Customer's systems have become unresponsive.http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689750#1689750Comment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:53:24Z2009-11-06T19:53:24ZThis seems like exactly the problem that I am describing (it's not on medical equipment, luckily...). Most commenters/answers claim that the OS handles a CPU intensive process OK. Your experiences goes against that.http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689748#1689748Comment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:48:39Z2009-11-06T19:48:39ZGreat, thanks. I had forgotten about the arguments to <code>`start.exe</code>`.http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-timeComment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:47:50Z2009-11-06T19:47:50ZI am not sure abt. the processors, will check on the customer systems after the weekend. The program is single threaded.http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689695#1689695Comment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:31:37Z2009-11-06T19:31:37Z@Michael Petrotta: Yes, but the pattern is: 1. read a single file 2. process the file 3. write the output file. 4. goto 1. Time is mostly spent on step 2.http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689717#1689717Comment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:28:52Z2009-11-06T19:28:52ZThanks, I will try that.http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689695#1689695Comment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:27:38Z2009-11-06T19:27:38ZBut then: Is it not a safe assumption that a process that basically only does a lot of regexp matching is CPU bound? If I read @Godeke right: If I am CPU bound, it would not have caused those problems I describe?http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689695#1689695Comment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:24:46Z2009-11-06T19:24:46ZHmm. I will indeed do as @Michael Petrotta suggests. Perhaps my assumptions are wrong.http://stackoverflow.com/questions/1689674/is-it-ok-for-a-process-to-be-cpu-intensive-for-a-prolonged-period-of-time/1689695#1689695Comment by codeape on Is it OK for a process to be CPU intensive for a prolonged period of time?codeape2009-11-06T19:23:24Z2009-11-06T19:23:24ZI am quite confident that there is very little IO load. The program reads the entire file into memory, then does the regexp matching stuff, which builds an in-memory result, then writes the result to disk. There is no way that the single read and single write would cause the CPU to peak.http://stackoverflow.com/questions/1630320/what-is-the-pythonic-way-to-detect-the-last-element-in-a-python-for-loopComment by codeape on What is the pythonic way to detect the last element in a python 'for' loop?codeape2009-10-27T14:27:47Z2009-10-27T14:27:47ZRelated: <a href="http://stackoverflow.com/questions/323750/how-to-access-previous-next-element-while-for-looping/325864#325864" rel="nofollow" title="how to access previous next element while for looping">stackoverflow.com/questions/323750/…</a>http://stackoverflow.com/questions/1605662/django-syncdb-and-an-updated-model/1605673#1605673Comment by codeape on django syncdb and an updated modelcodeape2009-10-22T13:27:34Z2009-10-22T13:27:34Z+1 South works great. Have used it in production.http://stackoverflow.com/questions/1598733/python-console-website/1599340#1599340Comment by codeape on Python Console Websitecodeape2009-10-21T13:03:53Z2009-10-21T13:03:53ZThe site uses Silverlight (or Moonlight 2) to run IronPython in the browserhttp://stackoverflow.com/questions/1024049/is-it-pythonic-to-import-inside-functionsComment by codeape on Is it pythonic to import inside functions?codeape2009-10-20T07:44:43Z2009-10-20T07:44:43Z@becomingGuru: Sure, but comments can get out of sync with reality...