active questions tagged python - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T22:45:51Z http://stackoverflow.com/feeds/tag/python http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1805830/where-how-should-i-do-validation-and-transformations-on-entities-in-google-app-en 0 Where/How should I do validation and transformations on entities in Google App Engine? Stephen Cagle 2009-11-26T21:51:46Z 2009-11-26T22:45:41Z <p>In Ruby on Rails, each model entity has a "validate_on_*something*" hook method, that will be called before the entity is actually persisted to the database. I would like similar functionality in Google App Engine. I am aware that you can do validation on individual Properties by passing arguments to them in their declarations. However, if I wish to do more validation than that, is there some place within the model class declaration within which I can do that?</p> <p>Also, along the same lines, sometimes a entity needs modification before it is actually persisted to the database. I might need to modify (transform) the entity right before it is actually written to the database. Is there some place in the entity class declaration that would allow me to do so?</p> <p>I am aware that I can put these transformations/validations outside of the class. Bu this hardly seems like good OO design. It really seems like there should be hook methods that would automatically be called in a model for these sort of needs.</p> <p>So my question is, what is the most appropriate way to handle the validation and transformation of entities before they are persisted?</p> http://stackoverflow.com/questions/1801165/django-template-url-function-not-matching-in-app 0 django template url function not matching in app Ben Collins 2009-11-26T01:55:51Z 2009-11-26T22:45:34Z <p>I have a django project set up with an app called pub. I'm trying to set it up so that I can include urls.py from each app (there will be more as I go) in the top-level urls.py. I've also got a template that uses the 'url' function to resolve a url on a view, defined in the openidgae module. The problem is that after the httprequest is routed to pub.views.index (like it's supposed to), I try to respond by rendering a template that uses the template 'url' function. The code I'm showing below is also here: <a href="http://gist.github.com/243158" rel="nofollow">http://gist.github.com/243158</a></p> <p>Here's my top-level urls.py:</p> <pre><code>from django.conf.urls.defaults import * urlpatterns = patterns('', (r'', include('openidgae.urls')), (r'^pub', include('pub.urls')), ) </code></pre> <p>and pub/urls.py:</p> <pre><code>from django.conf.urls.defaults import * urlpatterns = patterns('', (r'', 'pub.views.index'), (r'^/$', 'pub.views.index'), ) </code></pre> <p>and templates/base.html:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"&gt; &lt;title&gt;{% block title %}My amazing site{% endblock %}&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="header"&gt; {% if lip %} Welcome {{ lip.pretty_openid }} &lt;a href="{% url openidgae.views.LogoutSubmit %}"&gt;logout&lt;/a&gt; {% else %} &lt;form id="login-form" action="{% url openidgae.views.OpenIDStartSubmit %}?continue={{continueUrl}}" method="post"&gt; &lt;input type="text" name="openid_identifier" id="openid_identifier" /&gt; &lt;input type="submit" value="Verify" /&gt; &lt;/form&gt; &lt;!-- BEGIN ID SELECTOR --&gt; &lt;script type="text/javascript" id="__openidselector" src="https://www.idselector.com/selector/46b0e6d0c8ba5c8617f6f5b970865604c9f87da5" charset="utf-8"&gt;&lt;/script&gt; &lt;!-- END ID SELECTOR --&gt; {% endif %} &lt;/div&gt; {% block content %}{% endblock %} &lt;/body&gt; &lt;/html&gt; </code></pre> <p>and templates/pub/index.html:</p> <pre><code>{% extends "base.html" %} {% block title %}blahblah!{% endblock %} {% block content %} blahblahblah {% endblock %} </code></pre> <p>and finally, pub/views.py:</p> <pre><code>from django.shortcuts import render_to_response from django.http import HttpResponse from django import forms import openidgae def index(request): lip = openidgae.get_current_person(request, HttpResponse()) resp = render_to_response('pub/index.html', {'lip': lip}) return resp </code></pre> <p>Now, if i set the second pattern in my top-level urls.py to point directly to 'pub.views.index', all works like it should, but not if I use the include function.</p> <p>Any ideas? I'm sure the problem has something to do with the urlpattern that would map the views I'm trying to resolve to urls not being available to the template rendering functions when the HttpRequest is handled by the pub app rather than by the top-level, but I don't understand why or how to fix it. </p> http://stackoverflow.com/questions/1805987/suppose-i-have-2-vectors-what-algorithms-can-i-use-to-compare-them 0 Suppose I have 2 vectors. What algorithms can I use to compare them? alex 2009-11-26T22:39:54Z 2009-11-26T22:44:21Z <p>Company 1 has this vector:</p> <pre><code>['books','video','photography','food','toothpaste','burgers'] ... ... </code></pre> <p>Company 2 has this vector:</p> <pre><code>['video','processor','photography','LCD','power supply', 'books'] ... ... </code></pre> <p>Suppose this is a frequency distribution (I could make it a tuple but too much to type).<br> As you can see...these vectors have things that overlap. "video" and "photography" seem to be "similar" between two vectors due to the fact that they are in similar positions. And..."books" is obviously a strong point for company 1. Ordering and positioning does matter, as this is a frequency distribution.</p> <p>What algorithms could you use to play around with this? What algorithms could you use that could provide valuable data for these companies, using these vectors?</p> <p>I am new to text-mining and information-retrieval. Could someone guide me about those topics in relation to this question?</p> http://stackoverflow.com/questions/1805958/python-asynchronous-callbacks-and-generators 0 Python asynchronous callbacks and generators spinlock 2009-11-26T22:32:10Z 2009-11-26T22:32:10Z <p>Hello,</p> <p>I'm trying to convert a synchronous library to use an internal asynchronous IO framework. I have several methods that look like this:</p> <pre><code>def foo: .... sync_call_1() # synchronous blocking call .... sync_call_2() # synchronous blocking call .... return bar </code></pre> <p>For each of the synchronous functions (<code>sync_call_*</code>), I have written a corresponding async function that takes a a callback. E.g.</p> <pre><code>def async_call_1(callback=none): # do the I/O callback() </code></pre> <p>Now for the python newbie question -- whats the easiest way to translate the existing methods to use these new async methods instead? That is, the method <code>foo()</code> above needs to now be:</p> <pre><code>def async_foo(callback): # Do the foo() stuff using async_call_* callback() </code></pre> <p>One obvious choice is to pass a callback into each async method which effectively "resumes" the calling "foo" function, and then call the callback global at the very end of the method. However, that makes the code brittle, ugly and I would need to add a new callback for every call to an <code>async_call_*</code> method.</p> <p>Is there an easy way to do that using a python idiom, such as a generator or coroutine?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1805480/how-would-you-represent-a-minesweeper-grid-in-python 0 How would you represent a MineSweeper grid in Python? BobTheBuilder 2009-11-26T20:17:31Z 2009-11-26T22:25:53Z <p>What datastructure would you use in Python to represent the internal state of a MineSweeper grid?</p> <p>Each x,y position will hold a numerical value which represents its current cell state (unexplored, mine, flag, ?).</p> <p>Should I use nested lists? This seems like the closest thing to a 2D array and it is what I would probably use in any other language (2d array that is).</p> <p>I'm not that experienced with Python so could someone give me a suggestion?</p> http://stackoverflow.com/questions/1805852/how-can-i-use-sqlite-with-django-on-windows-7 0 How can I use SQLITE with DJANGO on WIndows 7 REA_ANDREW 2009-11-26T21:57:31Z 2009-11-26T22:17:36Z <p>I am following the tutorial on the DJango site, which I previsouly did using Windows XP and everything went fine, but on Windows 7 I get the following error:</p> <pre><code>sqlite3.OperationalError: unable to open database file </code></pre> <p>I use the following:</p> <pre><code>python manage.py sql Blog </code></pre> <p>Does any one have any ideas what might be wrong. The database file is located in <code>C:\Software\Sqlite\Databases\Blog.db</code></p> <p>And the relative settings.py or section of is simply:</p> <pre><code>DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. DATABASE_NAME = 'C:\Software\Sqlite\databases\blog.db' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. DATABASE_PORT = '' # Set to empty string for default. Not used with </code></pre> <p>I have also for testing purposes added everyone with full permissions.</p> <p>But as I say I get the following error:</p> <pre><code>sqlite3.OperationalError: unable to open database file </code></pre> <p>Any help is appreciated,</p> <p>Andrew</p> http://stackoverflow.com/questions/1805148/why-is-pythonruby-interpreted 7 Why is (python|ruby) interpreted? TG103 2009-11-26T18:47:29Z 2009-11-26T22:16:13Z <p>What are the technical reasons why languages like Python and Ruby interpreted (out of the box) instead of compiled? It seems to me like it should not be too hard for people knowledgeable in this domain to make these languages not be interpreted like they are today, and we would see significant performance gains. So certainly I am missing something. </p> http://stackoverflow.com/questions/1787576/python-nested-lists-and-recursion-problem 1 Python nested lists and recursion problem Michael 2009-11-24T03:24:00Z 2009-11-26T21:50:46Z <p>Hi guys,</p> <p>I'm trying to process a first order logic formula represented as nested lists and strings in python so that that its in disjunctive normal form, </p> <p>i.e ['&amp;', ['|', 'a', 'b'], ['|', 'c', 'd']] </p> <p>turns into </p> <p>['|' ['&amp;', ['&amp;', 'a', 'c'], ['&amp;', 'b', 'c']], ['&amp;', ['&amp;', 'a', 'd'], ['&amp;', 'b', 'd']]]</p> <p>where | is 'or' and &amp; is 'and'.</p> <p>currently im using a recursive implementation which does several passes over a formula until it can't find any nested 'or' symbols inside a list argument for 'ands'.</p> <p>This is my implementation, performDNF(form) is the entry point. Right now it performs a single pass over the formula but then the while loop checking function finds no '|'s inside of '&amp;'s and terminates, help anyone this is driving me mad.</p> <pre><code>def dnfDistributivity(self, form): if isinstance(form, type([])): if len(form) == 3: if form[0] == '&amp;': if form[1][0] == '|': form = ['|', ['&amp;', form[2], form[1][1]], ['&amp;', form[2], form[1][2]]] elif form[2][0] == '|': form = ['|', ['&amp;', form[1], form[2][1]], ['&amp;', form[1], form[2][2]]] form[1] = self.dnfDistributivity(form[1]) form[2] = self.dnfDistributivity(form[2]) elif len(form) == 2: form[1] = self.dnfDistributivity(form[1]) return form def checkDistributivity(self, form, result = 0): if isinstance(form, type([])): if len(form) == 3: if form[0] == '&amp;': print "found &amp;" if isinstance(form[1], type([])): if form[1][0] == '|': return 1 elif isinstance(form[2], type([])): if form[2][0] == '|': return 1 else: result = self.checkDistributivity(form[1], result) print result if result != 1: result = self.checkDistributivity(form[2], result) print result elif len(form) == 2: result = self.checkDistributivity(form[1], result) print result return result def performDNF(self, form): while self.checkDistributivity(form): form = self.dnfDistributivity(self.dnfDistributivity(form)) return form </code></pre> http://stackoverflow.com/questions/1800008/django-admin-edit-selection-action 0 Django Admin "Edit Selection" Action? magneticMonster 2009-11-25T21:17:15Z 2009-11-26T21:44:40Z <p>I'd like to write a django-admin action (for use when the user selects zero or more rows) that will allow them to edit the selected items as a group. I only need to edit one of the items in the model (the "room") at a time, but I don't want to have to go through all 480 of my objects and manually edit them one-by-one.</p> <p>Is there a way to throw up an interstitial page that allows the user to edit the items as a group?</p> http://stackoverflow.com/questions/1805309/how-to-write-the-grammar-for-this-in-pyparsing-match-a-set-of-words-but-not-cont 1 How to write the grammar for this in pyparsing: match a set of words but not containing a given pattern M K Saravanan 2009-11-26T19:26:19Z 2009-11-26T21:43:25Z <p>I am new to Python and pyparsing. I need to accomplish the following.</p> <p>My sample line of text is like this:</p> <pre><code>12 items - Ironing Service 11 Mar 2009 to 10 Apr 2009 Washing service (3 Shirt) 23 Mar 2009 </code></pre> <p>I need to extract the item description, period</p> <pre><code>tok_date_in_ddmmmyyyy = Combine(Word(nums,min=1,max=2)+ " " + Word(alphas, exact=3) + " " + Word(nums,exact=4)) tok_period = Combine((tok_date_in_ddmmmyyyy + " to " + tok_date_in_ddmmmyyyy)|tok_date_in_ddmmmyyyy) tok_desc = Word(alphanums+"-()") but stop before tok_period </code></pre> <p>How to do this?</p> http://stackoverflow.com/questions/1805231/how-to-write-a-simple-spider-in-python 0 How to write a simple spider in Python? Zeynel 2009-11-26T19:07:55Z 2009-11-26T21:39:34Z <p>Hello,</p> <p>I've been trying to write this spider for weeks but without success. What is the best way for me to code this in Python:</p> <p>1) Initial url: <code>http://www.whitecase.com/Attorneys/List.aspx?LastName=A</code></p> <p>2) from initial url pick up these urls with this regex:</p> <p><code>hxs.select('//td[@class="altRow"][1]/a/@href').re('/.a\w+')</code></p> <pre><code>[u'/cabel', u'/jacevedo', u'/jacuna', u'/aadler', u'/zahmedani', u'/tairisto', u /zalbert', u'/salberts', u'/aaleksandrova', u'/malhadeff', u'/nalivojvodic', u' .... </code></pre> <p>3) Go to each of these urls and scrape the school info with this regex</p> <p><code>hxs.select('//td[@class="mainColumnTDa"]').re('(?&lt;=(JD,\s))(.*?)(\d+)'</code></p> <p><code> [u'JD, ', u'University of Florida Levin College of Law, &lt;em&gt;magna cum laude&lt;/em&gt; , Order of the Coif, Symposium Editor, Florida Law Review, Awards for highest grades in Comparative Constitutional History, Legal Drafting, Real Property and Sales, ', u'2007']</code></p> <p>4) Write the scraped school info into schools.csv file</p> <p>Can you help me write this spider in Python? I've been trying to write it in Scrapy but without success. See my previous <a href="http://stackoverflow.com/questions/1805050/scrapy-spider-index-error">question</a>.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1805555/what-is-the-performance-cost-of-named-keys-or-pre-generated-keys-in-google-app 0 What is the performance cost of named keys or "pre-generated" keys in Google App Engine? Stephen Cagle 2009-11-26T20:38:41Z 2009-11-26T21:37:34Z <p>If you used named keys in Google App Engine, does this incur any additional cost? Put another way, is it any more expensive to create a new entity with a named key rather than a randomly generated id?</p> <p>In a similar line of reasoning, I note that you can ask Google App Engine to give you a set of keys that will not be used by Google App Engine as auto generated keys? Would generating a large number of these keys result in reduced performance?</p> <p>These questions both bother me for the following reason. Let us say Google App Engine was attempting to persist entity A, and as such it is creating a key for A. It would seem intuitively, that when a new key is randomly generated, Google App Engine would need to first check if the key was already in existence. If the key already existed, then Google App Engine might need to generate another randomly generated new key. It would continue to do this until it succeeded in generating a unique new key. It would then assign this key to entity A. Alright, that is fine and good.</p> <p>My problem with this is it seems to imply that keys cause some sort of application level lock? This would be neccesary when Google App Engine is checking if the randomly generated key already exist. This can't be right, as it isn't scalable at all? What is wrong about my reasoning?</p> <p>So, since this was long, I will re-iterate my 3 questions:</p> <ol> <li>Does Google App Engine create an application level lock when generating new keys?</li> <li>Do named keys incur any additional cost over automatically generated keys? If so, what cost (constant, linear, exponential,...)?</li> <li>Does asking app engine for keys that app engine promises not to use cause a degradation in key creation performance? If so, what would the cost for this be?</li> </ol> http://stackoverflow.com/questions/1805050/scrapy-spider-index-error 0 Scrapy spider index error Zeynel 2009-11-26T18:16:20Z 2009-11-26T21:15:23Z <p>This is the code for Spyder1 that I've been trying to write within Scrapy framework:</p> <pre><code>from scrapy.contrib.spiders import CrawlSpider, Rule from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor from scrapy.selector import HtmlXPathSelector from scrapy.item import Item from firm.items import FirmItem class Spider1(CrawlSpider): domain_name = 'wc2' start_urls = ['http://www.whitecase.com/Attorneys/List.aspx?LastName=A'] rules = ( Rule(SgmlLinkExtractor(allow=["hxs.select( '//td[@class='altRow'][1]/a/@href').re('/.a\w+')"]), callback='parse'), ) def parse(self, response): hxs = HtmlXPathSelector(response) JD = FirmItem() JD['school'] = hxs.select( '//td[@class="mainColumnTDa"]').re('(?&lt;=(JD,\s))(.*?)(\d+)' ) return JD SPIDER = Spider1() </code></pre> <p>The regex in the <code>rules</code> successfully pulls all the bio urls that I want from the start url:</p> <pre><code>&gt;&gt;&gt; hxs.select( ... '//td[@class="altRow"][1]/a/@href').re('/.a\w+') [u'/cabel', u'/jacevedo', u'/jacuna', u'/aadler', u'/zahmedani', u'/tairisto', u '/zalbert', u'/salberts', u'/aaleksandrova', u'/malhadeff', u'/nalivojvodic', u' /kallchurch', u'/jalleyne', u'/lalonzo', u'/malthoff', u'/valvarez', u'/camon', u'/randerson', u'/eandreeva', u'/pangeli', u'/jangland', u'/mantczak', u'/darany i', u'/carhold', u'/marora', u'/garrington', u'/jartzinger', u'/sasayama', u'/ma sschenfeldt', u'/dattanasio', u'/watterbury', u'/jaudrlicka', u'/caverch', u'/fa yanruoh', u'/razar'] &gt;&gt;&gt; </code></pre> <p>But when I run the code I get </p> <pre><code>[wc2] ERROR: Error processing FirmItem(school=[]) - [Failure instance: Traceback: &lt;type 'exceptions.IndexError'&gt;: list index out of range </code></pre> <p>This is the FirmItem in Items.py</p> <pre><code>from scrapy.item import Item, Field class FirmItem(Item): school = Field() pass </code></pre> <p>Can you help me understand where the index error occurs?</p> <p>It seems to me that it has something to do with <a href="http://doc.scrapy.org/topics/link-extractors.html#sgmllinkextractor" rel="nofollow">SgmLinkExtractor</a>. </p> <p>I've been trying to make this spider work for weeks with Scrapy. They have an excellent tutorial but I am new to python and web programming so I don't understand how for instance <code>SgmlLinkExtractor</code> works behind the scene.</p> <p>Would it be easier for me to try to write a spider with the same simple functionality with Python libraries? I would appreciate any comments and help.</p> <p>Thanks</p> http://stackoverflow.com/questions/1798796/python-list-index-out-of-range-error 0 python : list index out of range error atv 2009-11-25T17:57:54Z 2009-11-26T21:05:34Z <p>I have written a simple python program </p> <pre><code>l=[1,2,3,0,0,1] for i in range(0,len(l)): if l[i]==0: l.pop(i) </code></pre> <p>This gives me error 'list index out of range' on line <code>if l[i]==0:</code></p> <p>After debugging I could figure out that <code>i</code> is getting incremented and list is getting reduced.<br> However, I have loop termination condition <code>i &lt; len(l)</code>. Then why I am getting such error? </p> http://stackoverflow.com/questions/1798091/artificial-inteligence-library-in-python 3 Artificial Inteligence library in python João Portela 2009-11-25T16:19:27Z 2009-11-26T20:29:27Z <p>I was wondering if there are any python AI libraries similar to <a href="http://code.google.com/p/aima-python/" rel="nofollow">aima-python</a> <s>but for a more recent version of python...</s> and how they are in comparison to aima-python.<br> I was particularly interested in search algorithms such as hill-climbing, simulated annealing, tabu search and genetic algorithms.</p> <p><strong>edit</strong>: made the question more clear.</p> http://stackoverflow.com/questions/1805256/django-python-pil-sorl-thumbnail-generation-in-bulk-memory-error 1 Django / Python / PIL / sorl-thumbnail generation in bulk - memory error Hoff 2009-11-26T19:13:35Z 2009-11-26T20:03:26Z <p>hi folks!</p> <p>I'm trying to bulk generate 4 thumnails for each of around 40k images with <a href="http://code.google.com/p/sorl-thumbnail/" rel="nofollow">sorl-thumbnail</a> for my django app. I iterate through all django objects with an ImageWithThumbnailsFieldFile, and then call its generate_thumbnails() function.</p> <p>This works fine, except that after a few hundred iterations, I run out of memory and my loop crashes with 'memory error'. Since sorl-thumbnail uses PIL to generate thumbs, it seems to be that PIL doesn't return all of the memory it used when generated a thumb.</p> <p>Does anybody how to avoid this problem, e.g. by forcing PIL to return the memory it no longer needs?</p> <p>my code simply looks like this:</p> <pre><code>all = Picture.objects.all() for i in all: i.image.generate_thumbnails() </code></pre> <p>The function generate-thumbnail starts <a href="http://code.google.com/p/sorl-thumbnail/source/browse/sorl/thumbnail/fields.py" rel="nofollow">here</a>, line 129. </p> <p>Thanks in advance for any advice!</p> <p>Martin</p> http://stackoverflow.com/questions/1805265/how-to-fix-value-produced-by-random 0 How to fix value produced by Random? unknown (google) 2009-11-26T19:15:22Z 2009-11-26T19:53:44Z <p>Hi all, I got an issue which is, in my code,anyone can help will be great. this is the example code.</p> <pre><code>from random import * from numpy import * r=array([uniform(-R,R),uniform(-R,R),uniform(-R,R)]) def Ft(r): for i in range(3): do something here, call r return something </code></pre> <p>however I found that in python shell, every time I run function Ft, it gives me different result.....seems like within the function, in each iterate of the for loop,call r once, it gives random numbers once... but not fix the initial random number when I call the function....how can I fix it? how about use b=copy(r) then call b in the Ft function? Thanks</p> http://stackoverflow.com/questions/1180411/activate-a-virtualenv-via-fabric-as-deploy-user 4 Activate a virtualenv via fabric as deploy user rizumu 2009-07-24T22:03:57Z 2009-11-26T19:01:30Z <p>I want to run my fabric script locally, which will in turn, log into my server, switch user to deploy, activate the projects .virtualenv, which will change dir to the project and issue a git pull.</p> <pre><code>def git_pull(): sudo('su deploy') # here i need to switch to the virtualenv run('git pull') </code></pre> <p>I typically use the workon command from virtualenvwrapper which sources the activate file and the postactivate file will put me in the project folder. In this case, it seems that because fabric runs from within shell, control is give over to fabric, so I can't use bash's source built-in to '$source ~/.virtualenv/myvenv/bin/activate'</p> <p>Anybody have an example and explanation of how they have done this?</p> <h1># # # response # # #</h1> <p>Thanks bitprophet, that led down the right track. Using fabric 1.0 we ended up going with the following fabfile recipe which includes a call to pip requirements file:</p> <pre><code>def production(): env.hosts = ['servername'] env.directory = '/path/to/virtualenvs/project' env.activate = 'source /home/deploy/.virtualenvs/project/bin/activate' env.deploy_user = 'deploy' def virtualenv(command): with cd(env.directory): sudo(env.activate + '&amp;&amp;' + command, user=env.deploy_user) def git_pull(): 'Updates the repository.' with cd(env.directory): sudo('git pull', user=env.deploy_user) def pip_install_req(): virtualenv('pip install -U -r ../../../requirements/external_apps.txt') def reload(): sudo('/etc/init.d/apache2 reload') def deploy_pip(): local('git push') git_pull() pip_install_req() reload() </code></pre> http://stackoverflow.com/questions/1805072/python-json-parsefloatdecimal-decimal-not-working 0 Python JSON parse_float=decimal.Decimal not working victor 2009-11-26T18:21:08Z 2009-11-26T18:33:29Z <p>Hi,</p> <p>I have a string with a floating point number in it, but I can't get JSON to load it as a decimal.</p> <pre><code>x = u'{"14": [4.5899999999999999, "susan"]}' json.loads(x, parse_float = decimal.Decimal) </code></pre> <p>This returns:</p> <pre><code>{u'14': [Decimal('4.5899999999999999'), u'susan']} </code></pre> <p>Any idea how I can make it into the actual "4.59"? </p> http://stackoverflow.com/questions/1803302/pythonic-way-to-select-first-variable-that-is-defined 1 Pythonic way to select first variable that is defined Richard 2009-11-26T12:03:49Z 2009-11-26T18:28:43Z <p>I have some variables and I want to select the first one that is defined, or else return a default value.</p> <p>For instance I have <code>a</code>, <code>b</code>, and <code>c</code>. My existing code:</p> <pre><code>result = a if a else (b if b else (c if c else default)) </code></pre> <p>Another approach I was considering:</p> <pre><code>result = ([v for v in (a, b, c) if v] + [default])[0] </code></pre> <p>But they both feel messy, so is there a more Pythonic way?</p> http://stackoverflow.com/questions/1804365/lpr-module-in-python 0 Lpr -module in Python Masi 2009-11-26T11:14:26Z 2009-11-26T18:26:49Z <p><strong>How can you call lpr in Python?</strong></p> <p>It is not in the sys -module which is surprising.</p> <p>I aim to use the lpr as follows shown by pseudo-code</p> <pre><code>10*i for i in range(77): lpr --pages(i,i+1) file.pdf </code></pre> http://stackoverflow.com/questions/1804980/reading-socket-buffer-using-asyncore 0 Reading socket buffer using asyncore pHk 2009-11-26T17:56:48Z 2009-11-26T18:16:25Z <p>I'm new to Python (I have been programming in Java for multiple years now though), and I am working on a simple socket-based networking application (just for fun). The idea is that my code connects to a remote TCP end-point and then listens for any data being pushed from the server to the client, and perform some parsing on this.</p> <p>The data being pushed from server -> client is UTF-8 encoded text, and each line is delimited by <code>CRLF</code> (<code>\x0D\x0A</code>). You probably guessed: the idea is that the client connects to the server (until cancelled by the user), and then reads and parses the lines as they come in.</p> <p>I've managed to get this to work, however, I'm not sure that I'm doing this quite the right way. So hence my actual questions (code to follow):</p> <ol> <li>Is this the right way to do it in Python (ie. is it really this simple)?</li> <li>Any tips/tricks/useful resources (apart from the reference documentation) regarding buffers/<code>asyncore</code>?</li> </ol> <p>Currently, the data is being read and buffered as follows:</p> <pre><code>def handle_read(self): self.ibuffer = b"" while True: self.ibuffer += self.recv(self.buffer_size) if ByteUtils.ends_with_crlf(self.ibuffer): self.logger.debug("Got full line including CRLF") break else: self.logger.debug("Buffer not full yet (%s)", self.ibuffer) self.logger.debug("Filled up the buffer with line") print(str(self.ibuffer, encoding="UTF-8")) </code></pre> <p>The <code>ByteUtils.ends_with_crlf</code> function simply checks the last two bytes of the buffer for <code>\x0D\x0A</code>. The first question is the main one (answer is based on this), but any other ideas/tips are appreciated. Thanks.</p> http://stackoverflow.com/questions/1804694/scrapy-domainname-for-spider 0 Scrapy domain_name for spider Zeynel 2009-11-26T16:38:28Z 2009-11-26T17:40:22Z <p>From the Scrapy tutorial:</p> <blockquote> <p>domain_name: identifies the Spider. It must be unique, that is, you can’t set the same domain name for different Spiders.</p> </blockquote> <p>Does this mean that <code>domain_name</code> must be a valid domain name, like </p> <blockquote> <p>domain_name = 'example.com'</p> </blockquote> <p>Or can I name </p> <pre><code>domain_name = 'ex1' </code></pre> <p>The problem is I had a spider that worked with domain name </p> <pre><code>domain_name = 'whitecase.com' </code></pre> <p>Now I created a new spider as an instance of CrawlSpider and named it </p> <pre><code>domain_name = 'wc2' </code></pre> <p>but I am getting the error <code>"could not find spider for domain "wc2""</code></p> http://stackoverflow.com/questions/1802971/nameerror-name-self-is-not-defined 0 NameError: name 'self' is not defined chriss 2009-11-26T10:47:54Z 2009-11-26T17:28:10Z <p>Why such structure</p> <pre><code>class A: def __init__(self, a): self.a = a def p(self, b=self.a): print b </code></pre> <p>gives an error <code>NameError: name 'self' is not defined</code>?</p> http://stackoverflow.com/questions/1804049/how-to-save-double-to-file-in-python 0 How to save double to file in python? hahahaha 2009-11-26T14:40:24Z 2009-11-26T16:49:20Z <p>Let's say I need to save a matrix(each line corresponds one row) that could be loaded from fortran later. What method should I prefer? Is converting everything to string is the only one approach?</p> http://stackoverflow.com/questions/1804258/writing-crawler-that-stay-logged-in-with-any-server 0 Writing crawler that stay logged in with any server Vadi 2009-11-26T15:18:31Z 2009-11-26T16:48:12Z <p>I am writing a crawler. Once after the crawler logs into a website I want to make the crawler to "stay-always-logged-in". How can I do that? Is a client (like browser, crawler etc.,) make a server to obey this rule? This scenario could occur when the server allows limited logins in day. </p> http://stackoverflow.com/questions/1804573/appengine-reference-order 0 Appengine reference order maciag.artur..pl 2009-11-26T16:16:21Z 2009-11-26T16:25:24Z <p>I have declared models in AppEngine's models.py:</p> <pre><code>class Post(db.Model): topic = db.ReferenceProperty(Topic, collection_name='posts', verbose_name=_('Topic')) (..) class Topic(db.Model): (..) last_post = db.ReferenceProperty(Post, collection_name='last_topic_post') </code></pre> <p>Problem is ReferenceProperty must have Model class but Topic class is undeclared when declaring Post. The same will happen with Post class after switch. How to solve this?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1803458/fast-graphics-with-xserver 0 Fast Graphics with XServer Palani 2009-11-26T12:40:42Z 2009-11-26T16:25:20Z <p>I am working on <strong>embedded linux platform with limited system resources</strong>.</p> <p><strong>I want to do fullscreen slideshow with simple transistions (like slide in-out, fade in-out )</strong>.</p> <p>I tried PyGtk+GTK+Cairo but its very slow, when I animate GTK image controls I get just two or three frames per second. But smplayer is playing video at good speed!</p> <p>I did some little research and came to know about <a href="http://www.directfb.org/" rel="nofollow">directfb</a>, <a href="http://www.ggi-project.org/" rel="nofollow">libggi</a>, <a href="http://www.svgalib.org/" rel="nofollow">svgalib</a> etc. and I don't know what library should be used.</p> <p>Which library is the best for this kind of application? I would prefer to do this without stopping X.</p> http://stackoverflow.com/questions/1804366/playing-mp3-files-with-python 0 Playing MP3 files with Python. cornjuliox 2009-11-26T15:35:30Z 2009-11-26T15:55:59Z <p>I'm trying to write my own media player (like Foobar), and I'm having trouble tracking down a Python library that'll play MP3s. I know Pymedia does mp3s, but it looks outdated - the latest installer is for Python version 2.4, and I'm using 2.6. I've never had much success with Pygame, and Pyglet doesn't look like it has too much in the way of documentation. Are there any other alternatives?</p> http://stackoverflow.com/questions/1800452/how-to-intercept-wmdeletewindow-on-osx-using-tkinter 0 How to intercept WM_DELETE_WINDOW on OSX using Tkinter lotharsmash 2009-11-25T22:45:04Z 2009-11-26T15:20:17Z <p>I'm trying to keep a Toplevel window from being closed in OSX by intercepting window manager WM_DELETE_WINDOW event. </p> <pre><code>#!/usr/bin/env python from Tkinter import * def speak(): print "woof" root = Tk() root.title("root") win = Toplevel() win.title("win") win.protocol('WM_DELETE_WINDOW', speak) root.mainloop() </code></pre> <p>When I run this I get two pop up windows titled "root" and "win". If I click on the red "x" close button on "win" to close the window, prints "woof" and then closes. However, if I run this same code on windows "win" stays open and keeps printing "woof" every time I click the red "x" close button. </p> <p>How can I keep the Toplevel window from closing on OSX when I click the red "x" close button?</p>