active questions tagged python - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T22:45:51Zhttp://stackoverflow.com/feeds/tag/pythonhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805830/where-how-should-i-do-validation-and-transformations-on-entities-in-google-app-en0Where/How should I do validation and transformations on entities in Google App Engine?Stephen Cagle2009-11-26T21:51:46Z2009-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-app0django template url function not matching in appBen Collins2009-11-26T01:55:51Z2009-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><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>{% block title %}My amazing site{% endblock %}</title>
</head>
<body>
<div id="header">
{% if lip %}
Welcome {{ lip.pretty_openid }}
<a href="{% url openidgae.views.LogoutSubmit %}">logout</a>
{% else %}
<form id="login-form" action="{% url openidgae.views.OpenIDStartSubmit %}?continue={{continueUrl}}" method="post">
<input type="text" name="openid_identifier" id="openid_identifier" />
<input type="submit" value="Verify" />
</form>
<!-- BEGIN ID SELECTOR -->
<script type="text/javascript" id="__openidselector" src="https://www.idselector.com/selector/46b0e6d0c8ba5c8617f6f5b970865604c9f87da5" charset="utf-8"></script>
<!-- END ID SELECTOR -->
{% endif %}
</div>
{% block content %}{% endblock %}
</body>
</html>
</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-them0Suppose I have 2 vectors. What algorithms can I use to compare them?alex2009-11-26T22:39:54Z2009-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-generators0Python asynchronous callbacks and generatorsspinlock2009-11-26T22:32:10Z2009-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-python0How would you represent a MineSweeper grid in Python?BobTheBuilder2009-11-26T20:17:31Z2009-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-70How can I use SQLITE with DJANGO on WIndows 7REA_ANDREW2009-11-26T21:57:31Z2009-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-interpreted7Why is (python|ruby) interpreted?TG1032009-11-26T18:47:29Z2009-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-problem1Python nested lists and recursion problemMichael2009-11-24T03:24:00Z2009-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 ['&', ['|', 'a', 'b'], ['|', 'c', 'd']] </p>
<p>turns into </p>
<p>['|' ['&', ['&', 'a', 'c'], ['&', 'b', 'c']], ['&', ['&', 'a', 'd'], ['&', 'b', 'd']]]</p>
<p>where | is 'or' and & 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 '&'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] == '&':
if form[1][0] == '|':
form = ['|', ['&', form[2], form[1][1]], ['&', form[2], form[1][2]]]
elif form[2][0] == '|':
form = ['|', ['&', form[1], form[2][1]], ['&', 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] == '&':
print "found &"
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-action0Django Admin "Edit Selection" Action?magneticMonster2009-11-25T21:17:15Z2009-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-cont1How to write the grammar for this in pyparsing: match a set of words but not containing a given patternM K Saravanan2009-11-26T19:26:19Z2009-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-python0How to write a simple spider in Python?Zeynel2009-11-26T19:07:55Z2009-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('(?<=(JD,\s))(.*?)(\d+)'</code></p>
<p><code> [u'JD, ', u'University of Florida Levin College of Law, <em>magna cum laude</em>
, 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-app0What is the performance cost of named keys or "pre-generated" keys in Google App Engine?Stephen Cagle2009-11-26T20:38:41Z2009-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-error0Scrapy spider index errorZeynel2009-11-26T18:16:20Z2009-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('(?<=(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>>>> 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']
>>>
</code></pre>
<p>But when I run the code I get </p>
<pre><code>[wc2] ERROR: Error processing FirmItem(school=[]) -
[Failure instance: Traceback: <type 'exceptions.IndexError'>: 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-error0python : list index out of range error atv2009-11-25T17:57:54Z2009-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 < len(l)</code>. Then why I am getting such error? </p>
http://stackoverflow.com/questions/1798091/artificial-inteligence-library-in-python3Artificial Inteligence library in pythonJoão Portela2009-11-25T16:19:27Z2009-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-error1Django / Python / PIL / sorl-thumbnail generation in bulk - memory errorHoff2009-11-26T19:13:35Z2009-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-random0How to fix value produced by Random?unknown (google)2009-11-26T19:15:22Z2009-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-user4Activate a virtualenv via fabric as deploy userrizumu2009-07-24T22:03:57Z2009-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 + '&&' + 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-working0Python JSON parse_float=decimal.Decimal not workingvictor2009-11-26T18:21:08Z2009-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-defined1Pythonic way to select first variable that is definedRichard2009-11-26T12:03:49Z2009-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-python0Lpr -module in PythonMasi2009-11-26T11:14:26Z2009-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-asyncore0Reading socket buffer using asyncorepHk2009-11-26T17:56:48Z2009-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-spider0Scrapy domain_name for spiderZeynel2009-11-26T16:38:28Z2009-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-defined0NameError: name 'self' is not definedchriss2009-11-26T10:47:54Z2009-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-python0How to save double to file in python?hahahaha2009-11-26T14:40:24Z2009-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-server0Writing crawler that stay logged in with any serverVadi2009-11-26T15:18:31Z2009-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-order0Appengine reference ordermaciag.artur..pl2009-11-26T16:16:21Z2009-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-xserver0Fast Graphics with XServer Palani2009-11-26T12:40:42Z2009-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-python0Playing MP3 files with Python.cornjuliox2009-11-26T15:35:30Z2009-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-tkinter0How to intercept WM_DELETE_WINDOW on OSX using Tkinterlotharsmash2009-11-25T22:45:04Z2009-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>