active questions tagged python+-subjective - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:54:08Zhttp://stackoverflow.com/feeds/tag/python+-subjectivehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1951012/python-things-i-shouldnt-be-doing0Python - Things I shouldn't be doing?cornjuliox2009-12-23T06:31:03Z2009-12-23T06:50:05Z
<p>I've got a few questions about best practices in Python. Not too long ago I would do something like this with my code:</p>
<pre><code>...
junk_block = "".join(open("foo.txt","rb").read().split())
...
</code></pre>
<p>I don't do this anymore because I can see that it makes code harder to read, but would the code run slower if I split the statements up like so:</p>
<pre><code>f_obj = open("foo.txt", "rb")
f_data = f_obj.read()
f_data_list = f_data.split()
junk_block = "".join(f_data_list)
</code></pre>
<p>I also noticed that there's nothing keeping you from doing an 'import' within a function block, is there any reason why I should do that? </p>
http://stackoverflow.com/questions/1773763/mingw-python-eagerly-translating-path0mingw + python eagerly translating pathSteve Folly2009-11-20T23:04:04Z2009-12-23T06:44:51Z
<p>I am using:</p>
<ul>
<li>Windows XP</li>
<li>Python 2.6.2 (standard install from python.org)</li>
<li>git version 1.6.5.1-preview20091022 (installed from <a href="http://code.google.com/p/msysgit/" rel="nofollow">http://code.google.com/p/msysgit/</a>)</li>
</ul>
<p>I have an environment variable looking like an absolute path (<code>/path/to/dir</code>) but I'm using it to construct a git URL. At some point, it's getting translated to <code>C:/Program Files/Git/path/to/dir</code>. It seems like Python is at fault:</p>
<p>In a git bash shell:</p>
<pre><code>$ export VAR=/path/to/dir
$ echo $VAR
/path/to/dir
$ python
>>> import os
>>> os.environ['VAR']
'C:/Program Files/Git/path/to/dir'
</code></pre>
<p>git bash is not translating the path, but Python is?</p>
<p>In a Windows Command Prompt, Python gets it right:</p>
<pre><code>C:\>set VAR=/path/to/dir
C:\>echo %VAR%
/path/to/dir
C:\>python
>>> import os
>>> os.environ['VAR']
'/path/to/dir'
</code></pre>
<p>Can anyone explain what's going on here? And how can I prevent the translation in a bash shell?</p>
<p>EDIT: I should add that my python script runs on OS X and Windows, so if anyone does have a solution it would be good if worked on both platforms.</p>
http://stackoverflow.com/questions/1950062/python-intercept-a-class-loading-action1Python: intercept a class loading actionAnthony Kong2009-12-23T00:29:55Z2009-12-23T06:19:48Z
<p>Summary: when a certain python module is imported, I want to be able to intercept this action, and instead of loading the required class, I want to load another class of my choice.</p>
<p>Reason: I am working on some legacy code. I need to write some unit test code before I start some enhancement/refactoring. The code imports a certain module which will fail in a unit test setting, however. (Because of database server dependency)</p>
<p>Pseduo Code:</p>
<pre><code>from LeagcyDataLoader import load_me_data
...
def do_something():
data = load_me_data()
</code></pre>
<p>So, ideally, when python excutes the import line above in a unit test, an alternative class, says MockDataLoader, is loaded instead. </p>
<p>I am still using 2.4.3. I suppose there is an import hook I can manipulate</p>
http://stackoverflow.com/questions/1950781/sendkeys-failing-after-2-runs-in-thread1SendKeys failing after 2 runs in threadfreakazo2009-12-23T04:58:58Z2009-12-23T06:18:59Z
<h1>Python and SendKeys</h1>
<pre><code>import SendKeys, threading, pyHook, pythoncom
class Auto(threading.Thread):
def run(self):
SendKeys.SendKeys("{ENTER}",pause=0.1);
print('Sent');
exit();
def OnKeyboardEvent(event):
if event.Ascii == 22:
Auto().start();
return True
hm = pyHook.HookManager()
hm.KeyDown = OnKeyboardEvent
hm.HookKeyboard()
pythoncom.PumpMessages()
</code></pre>
<p>For some reason this program fails after running it exactly two times, I have no idea what the cause for this is. When you comment out the SendKeys part the program runs fine, so it has to be a problem with send keys.</p>
<p>[edit] Also, to clarify, running SendKeys.SendKeys(...) in a for i in range(0,100) works, so I assume it's something to do with the thread. I've never programmed threads before. Also this is just a mockup example to replicate the problem.</p>
<p>I'm running on windows 7, python2.6</p>
<p>[edit]Also, the program doesn't 'fail' it simply freezes (the function isn't run at all, it just sits there)</p>
http://stackoverflow.com/questions/1950218/distributing-python-programs2Distributing Python programsJohnWong2009-12-23T01:28:56Z2009-12-23T06:09:22Z
<p>How do I let my friends use my Python programs? They don't have python installed, but they can use command line programs. I don't have the skill to write GUI.</p>
<p>Let, say I am writing some calculus calculator, with a lot of custom modules and files. How do I share it?</p>
http://stackoverflow.com/questions/1594436/making-django-admin-display-the-primary-key-rather-than-each-objects-object-type0Making Django admin display the Primary Key rather than each object's Object type.nailer2009-10-20T12:58:26Z2009-12-23T06:07:08Z
<p>Hi all,</p>
<p>In Django 1.1 admin, when I go to add or change an object, my objects are displayed as:</p>
<pre><code>Select host to change
* Add host
Host object
Host object
Host object
Host object
Host object
</code></pre>
<p>This happens for all models in my site, not just Hosts.</p>
<p>Rather than display the same name for each object, I would like Django to display the primary key. </p>
<pre><code>Select host to change
* Add host
machine1
machine2
</code></pre>
<p>Here is my code:</p>
<pre><code>from django.db import models
# Create your models here.
class Host(models.Model):
host = models.CharField(max_length=100,primary_key=True)
class Admin:
list_display = ('host')
class Test(models.Model):
testname = models.CharField(max_length=100,primary_key=True)
class Admin:
list_display = ('testname')
class Result(models.Model):
host = models.ForeignKey(Host)
TESTRESULT_CHOICES = (
('P', 'Pass'),
('F', 'Fail'),
)
testresult = models.CharField(max_length=1, choices=TESTRESULT_CHOICES)
reason = models.CharField(max_length=100)
time = models.DateTimeField()
testname = models.OneToOneField(Test, primary_key=True)
class Admin:
list_display = ('host','testname','time','testresult','reason')
</code></pre>
<p>Reading <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/" rel="nofollow">http://docs.djangoproject.com/en/dev/ref/contrib/admin/</a>:</p>
<p>"ModelAdmin.list_display</p>
<p>Set list_display to control which fields are displayed on the change list page of the admin."</p>
<p>However this simply does not seem to work. Am I doing something wrong?</p>
http://stackoverflow.com/questions/1867070/insights-on-systemerror-combackpatch-offset-too-large0Insights on SystemError: com_backpatch: offset too largeHarun Prasad2009-12-08T13:44:29Z2009-12-23T06:01:50Z
<p>"SystemError: com_backpatch: offset too large" thrown when executing the code generated by the following code.</p>
<pre><code>f = open("test.py", "w")
f.write("def fn():\n a =1000\n")
for a in xrange(3000):
if a == 0:
f.write(" if a == "+str(a)+": \n print "+str(a)+"\n")
else:
f.write(" elif a == "+str(a)+": \n print "+str(a)+"\n")
f.close()
import test
</code></pre>
<p>Its clear that, if the lenght statement goes beyond certain length, it throughs this error.</p>
<p>Can some one give more insights to it in detail?</p>
http://stackoverflow.com/questions/1950414/what-does-classmethod-has-done-who-can-give-me-a-simple-code-example-thanks0what does classmethod has done,who can give me a simple code example,thankszjm11262009-12-23T02:39:39Z2009-12-23T05:59:07Z
<p>in django.utils.tree.py </p>
<pre><code>def _new_instance(cls, children=None, connector=None, negated=False):
obj = Node(children, connector, negated)
obj.__class__ = cls
return obj
_new_instance = classmethod(_new_instance)
</code></pre>
<p>i don't know what classmethod does</p>
<p>Please try to use the code, rather than text, because my English is not very good, thank you</p>
http://stackoverflow.com/questions/1950539/python-lottery-suggestion0python lottery suggestionJohnWong2009-12-23T03:30:22Z2009-12-23T05:52:43Z
<p>I know python offers random module to do some simple lottery. Let say random.shuffle() is a good one.</p>
<p>However, I want to build my own simple one. What should I look into? Is there any specific mathematical philosophies behind lottery?</p>
<p>Let say, the simplest situation. 100 names and generate 20 names randomly.</p>
<p>I don't want to use shuffle, since I want to learn to build one myself.</p>
<p>I need some advise to start. Thanks.</p>
http://stackoverflow.com/questions/1950672/python-split-list-into-list-of-dicts1Python: Split list into list of dicts?CarpeNoctem2009-12-23T04:21:19Z2009-12-23T05:00:54Z
<p>Just beginning with python and know enough to know I know nothing. I would like to find alternative ways of splitting a list into a list of dicts. Example list:</p>
<pre><code>data = ['ID:0:0:0',
'Status:Ok',
'Name:PhysicalDisk0:0:0',
'State:Online',
'FailurePredicted:No',
'ID:0:0:1',
'Status:Ok',
'Name:PhysicalDisk0:0:1',
'State:Online',
'FailurePredicted:No']
</code></pre>
<p>Finished list of dicts:</p>
<pre><code>[{'Status': 'Ok',
'State': 'Online',
'ID': '0:0:0',
'FailurePredicted': 'No',
'Name': 'PhysicalDisk0:0:0'},
{'Status': 'Ok',
'State': 'Online',
'ID': '0:0:1',
'Name': 'PhysicalDisk0:0:1',
'FailurePredicted': 'No'}]
</code></pre>
<p>The list has repeating elements that require multiple dicts and the list varies in length. My code seems like it could be simplified, if only I knew Python better. My current code:</p>
<p><em>DELETED CODE</em> It didn't work. :(</p>
<pre><code>----------- File output as requested -------------------
# omreport storage pdisk controller=0
List of Physical Disks on Controller PERC 5/i Integrated (Embedded)
Controller PERC 5/i Integrated (Embedded)
ID : 0:0:0
Status : Ok
Name : Physical Disk 0:0:0
State : Online
Failure Predicted : No
Progress : Not Applicable
Type : SAS
Capacity : 136.13 GB (146163105792 bytes)
Used RAID Disk Space : 136.13 GB (146163105792 bytes)
Available RAID Disk Space : 0.00 GB (0 bytes)
Hot Spare : No
Vendor ID : DELL
Product ID : ST3146755SS
Revision : T107
Serial No. : 3LN1EF0G
Negotiated Speed : Not Available
Capable Speed : Not Available
Manufacture Day : 07
Manufacture Week : 24
Manufacture Year : 2005
SAS Address : 5000C50004731C35
ID : 0:0:1
Status : Ok
Name : Physical Disk 0:0:1
State : Online
Failure Predicted : No
Progress : Not Applicable
Type : SAS
Capacity : 136.13 GB (146163105792 bytes)
Used RAID Disk Space : 136.13 GB (146163105792 bytes)
Available RAID Disk Space : 0.00 GB (0 bytes)
Hot Spare : No
Vendor ID : DELL
Product ID : ST3146755SS
Revision : T107
Serial No. : 3LN1EF88
Negotiated Speed : Not Available
Capable Speed : Not Available
Manufacture Day : 07
Manufacture Week : 24
Manufacture Year : 2005
SAS Address : 5000C500047320B9
</code></pre>
http://stackoverflow.com/questions/1950098/does-python-have-any-for-loop-equivalent-not-foreach5Does Python have any for loop equivalent (not foreach)Evgeny2009-12-23T00:41:31Z2009-12-23T04:40:09Z
<p>Python's iterators are great and all, but sometimes I really do want a C-style for loop - not a foreach loop. For example, I have a start date and an end date and I want to do something for every day in that range. I can do this with a while loop, of course:</p>
<pre><code> current = start
while current <= finish:
do_stuff(current)
current += timedelta(1)
</code></pre>
<p>This works, but it's 3 lines instead of 1 (in C or C-based languages) and I often find myself forgetting to write the incrementing line, especially if the loop body is quite complex. Is there a more elegant and less error-prone way of doing this in Python?</p>
http://stackoverflow.com/questions/1950386/is-it-pythonic-to-check-function-argument-types6Is it Pythonic to check function argument types?Brad Zeis2009-12-23T02:31:03Z2009-12-23T04:11:38Z
<p>I know, type checking function arguments is generally frowned upon in Python, but I think I've come up with a situation where it makes sense to do so. </p>
<p>In my project I have an Abstract Base Class <code>Coord</code>, with a subclass <code>Vector</code>, which has more features like rotation, changing magnitude, etc. Lists and tuples of numbers will also return True for <code>isinstance(x, Coord).</code> I also have many functions and methods that accept these Coord types as arguments. I've set up decorators to check the arguments of these methods. Here is a simplified version:</p>
<pre><code>class accepts(object):
def __init__(self, *types):
self.types = types
def __call__(self, func):
def wrapper(*args):
for i in len(args):
if not isinstance(args[i], self.types[i]):
raise TypeError
return func(*args)
return wrapper
</code></pre>
<p>This version is very simple, it still has some bugs. It's just there to illustrate the point. And it would be used like:</p>
<pre><code>@accepts(numbers.Number, numbers.Number)
def add(x, y):
return x + y
</code></pre>
<p>Note: I'm only checking argument types against Abstract Base Classes.</p>
<p>Is this a good idea? Is there a better way to do it without having to repeat similar code in every method?</p>
<p><strong>Edit:</strong></p>
<p>What if I were to do the same thing, but instead of checking the types beforehand in the decorator, I catch the exceptions in the decorator:</p>
<pre><code>class accepts(object):
def __init__(self, *types):
self.types = types
def __call__(self, func):
def wrapper(*args):
try:
return func(*args)
except TypeError:
raise TypeError, message
except AttributeError:
raise AttributeError, message
return wrapper
</code></pre>
<p>Is that any better?</p>
http://stackoverflow.com/questions/1950563/what-is-deepcopys-second-parameter-does0what is deepcopy's second parameter does,zjm11262009-12-23T03:37:56Z2009-12-23T03:58:39Z
<pre><code>from copy import*
a=[1,2,3,4]
c={'a':'aaa'}
print c
#{'a': 'aaa'}
b=deepcopy(a,c)
print b
print c
# print {'a': 'aaa', 10310992: 3, 10310980: 4, 10311016: 1, 11588784: [1, 2, 3, 4, [1, 2, 3, 4]], 11566456: [1, 2, 3, 4], 10311004: 2}
</code></pre>
<p>why c print that</p>
<p>Please try to use the code, rather than text, because my English is not very good, thank you</p>
<p>in django.utils.tree.py</p>
<pre><code>def __deepcopy__(self, memodict):
"""
Utility method used by copy.deepcopy().
"""
obj = Node(connector=self.connector, negated=self.negated)
obj.__class__ = self.__class__
obj.children = deepcopy(self.children, memodict)
obj.subtree_parents = deepcopy(self.subtree_parents, memodict)
return obj
</code></pre>
http://stackoverflow.com/questions/1950578/library-for-programming-abstract-syntax-trees-in-python1Library for programming Abstract Syntax Trees in Python.Paul Biggar2009-12-23T03:40:22Z2009-12-23T03:44:58Z
<p>I'm creating a tree to represent a simple language. I'm very familiar with Abstract Syntax Trees, and have worked on frameworks for building and using them in C++. Is there a standard python library for specifying or manipulating arbitrary ASTs? Failing that, is there a tree library which is useful for the same purpose?</p>
<p>Note, I am not manipulating <em>Python ASTs</em>, so I think the AST module isn't suitable.</p>
http://stackoverflow.com/questions/1950454/wxpython-file-dialog-error-missing-in-the-wildcard-string0wxPython file dialog error: missing "|" in the wildcard string!Paul2009-12-23T02:56:55Z2009-12-23T03:01:45Z
<p>I am on Windows7, using Python 2.6 and wxPython 2.8.10.1. I am trying to get this Open File dialog to work but am running into a weird error. This looks like a valid wildcard string to me, but whenever I choose a file and click 'Ok' on the File Dialog, I get this:</p>
<pre><code>Traceback (most recent call last):
File "D:\Projects\python\wxTest.py", line 92, in OnOpen
self.__DoOpen()
File "D:\Projects\python\wxTest.py", line 101, in __DoOpen
if open_dlg.ShowModal() == wx.ID_OK:
File "C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_windows.py", line 711, in ShowModal
return _windows_.Dialog_ShowModal(*args, **kwargs)
wx._core.PyAssertionError: C++ assertion "wxAssertFailure" failed at
..\..\src\common\filefn.cpp(1746) in wxParseCommonDialogsFilter():
missing '|' in the wildcard string!
</code></pre>
<p>When the dialog is open everything looks fine. Any ideas?</p>
<p>EDIT: typing too fast, forgot to include the wildcard string in question! sorry...</p>
<pre><code>wcd = "All files(*.*)|*.*|Text files (*.txt)|*.txt|"
open_dlg = wx.FileDialog(self, message='Choose a file', defaultDir=directory, defaultFile='', style=wx.OPEN | wx.CHANGE_DIR)
open_dlg.SetWildcard(wcd)
if open_dlg.ShowModal() == wx.ID_OK:
path = open_dlg.GetPath()
...
</code></pre>
http://stackoverflow.com/questions/1301887/why-is-standard-input-is-not-displayed-as-i-type-in-os-x-terminal-app0Why is Standard Input is not displayed as I type in os X Terminal app?BryanWheelock2009-08-19T18:44:56Z2009-12-23T03:00:02Z
<p>I'm confused by some behavior of my os X Terminal and my Django manage.py shell and pdb</p>
<p>When I start a new terminal, the Standard Input is displayed as I type. However, if there is an error, suddenly Standard Input does not appear on the screen. This error continues until I shut down that terminal window.</p>
<p>The Input is still being captured as I can see the Standard Output.</p>
<p>e.g. in pdb.set_trace()
I can 'l' to display where I'm at in the code. However, the 'l' will not be displayed, just an empty prompt.</p>
<p>This makes it hard to debug because I can't determine what I'm typing in.</p>
<p>What could be going wrong and what can I do to fix it?</p>
http://stackoverflow.com/questions/1940710/syntax-quirks-or-why-is-that-valid-python1Syntax quirks or why is that valid pythonbgbg2009-12-21T15:23:16Z2009-12-23T02:44:12Z
<p>In python 2.6, why is the following line valid?</p>
<pre><code>my_line = 'foo' 'bar'
</code></pre>
<p>and if that is valid, why isn't the following:</p>
<pre><code>my_list = 1 2
</code></pre>
<p>The first example is string concatenation, however, the following isn't valid either (thanks god):</p>
<pre><code>foo = 'foo'
bar = 'bar'
foo_bar = foo bar
</code></pre>
http://stackoverflow.com/questions/1950306/pyyaml-dumping-without-tags0pyyaml: dumping without tagsPaul Tarjan2009-12-23T02:03:11Z2009-12-23T02:34:41Z
<p>I have</p>
<pre><code>>>> import yaml
>>> yaml.dump(u'abc')
"!!python/unicode 'abc'\n"
</code></pre>
<p>But I want</p>
<pre><code>>>> import yaml
>>> yaml.dump(u'abc', magic='something')
'abc\n'
</code></pre>
<p>What magic param forces no tagging?</p>
http://stackoverflow.com/questions/963394/recommend-me-an-embedded-rdbms-to-use-with-python0Recommend me an Embedded RDBMS to use with PythonVinegar2009-06-08T04:13:36Z2009-12-23T02:28:08Z
<p><strong>Actual Question:</strong></p>
<p>As the title implies, I am having confusion in choosing a better embedded RDBMS for a simple website, only few pages need some server side scripting language otherwise all HTML. I have already chosen Python for that, now could you folks recommend me which embedded database system I should use. </p>
<p>The requirement goes like, I need to query a table or two - not sure at the moment - which will, possibly, be having columns like date, content, title, etc. That table/s are meant to provide the data of news and news archive. </p>
<p>I am more inclined towards <strong>ThinkSQL</strong> or <strong>aSQL</strong>. But I am open to any other better, in terms of <code><you define></code>. I am more concerned about performance, ease of use, capability to make sub-queries and joins if needed, date datatype support etc.</p>
<p><strong>Not very much relevant information:</strong></p>
<p>I am an expereinced Java programmer, but don't think Java would be the most suitable language here. After adequate research I found that most of the hosting services are providing Python, and PHP support. And I am not familiar with either. Being Python biased I chose Python over PHP. There are few other reasons as well but that might sound stupid because I am not an experience developer in any of these.</p>
<p>I hope it will give you enough insight to make a recommendation.</p>
http://stackoverflow.com/questions/1950069/suspicious-operation-django0Suspicious Operation DjangoTitus2009-12-23T00:32:32Z2009-12-23T02:25:33Z
<p>Hello, </p>
<p>I've been running into a problem while trying to delete uploaded images.</p>
<p>The error is along these lines:</p>
<pre><code>SuspiciousOperation: Attempted access to '/media/artists/12-stones/154339.jpg' denied.
</code></pre>
<p>After reading around it looks like the error is due to the fact that it's looking for the image in the wrong place (notice first slash, /media/ doesn't exist on the filesystem)</p>
<p>My MEDIA_ROOT and MEDIA_URL are: </p>
<pre><code>MEDIA_ROOT = '/home/tsoporan/site/media/'
MEDIA_URL = "/media/
</code></pre>
<p>My models upload_to parameter is passed this function:</p>
<pre><code>def get_artist_path(instance, filename):
return os.path.join('artists', slugify(instance.name), filename)
</code></pre>
<p>My questions are:</p>
<p>1) How can I fix this problem for future uploads?</p>
<p>2) Is it possible to fix my current images' paths without having to reupload?</p>
<p>Regards,
Titus</p>
http://stackoverflow.com/questions/1950299/is-it-worth-learning-python-over-ruby-and-php-for-web-development0Is it worth learning Python over Ruby and PHP for Web Development? [closed]Imran2009-12-23T02:00:52Z2009-12-23T02:19:35Z
<p>Is it worth learning Python over Ruby and PHP for Web Development? If so why? </p>
<p>Thank you in advance.</p>
<p>EDIT: Related on StackOverflow:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python"><strong>Should I learn Ruby or Python?</strong></a></li>
<li><a href="http://stackoverflow.com/questions/732476/django-or-ror">Django or RoR</a></li>
<li><a href="http://stackoverflow.com/questions/91846/rails-or-django-or-something-else">Rails or Django? (or something else?)</a></li>
<li><a href="http://stackoverflow.com/questions/638150/ruby-on-rails-versus-python">Ruby on Rails versus Python</a></li>
<li><a href="http://stackoverflow.com/questions/234721/what-are-the-biggest-differences-between-python-and-ruby-from-a-philsophical-pers">What are the biggest differences between Python and Ruby from a philosophical perspective</a></li>
<li><a href="http://stackoverflow.com/questions/556874/ruby-python-or-perl-closed">Ruby, Python or Perl?</a></li>
<li><a href="http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming">Python Vs. Ruby for Metaprogramming</a></li>
<li><a href="http://stackoverflow.com/questions/84340/why-learn-perl-python-ruby-if-the-company-is-using-c-c-or-java-as-the-appli">Why learn Perl, Python, Ruby if the company is using C++, C# or Java as the application language?</a></li>
<li><a href="http://stackoverflow.com/questions/143586/which-scripting-language-should-i-learn-after-perl">Which scripting language should I learn after Perl?</a></li>
<li><a href="http://stackoverflow.com/questions/410183/interested-in-collective-programming-for-the-web-ruby-or-python-or-php">Interested in Collective Programming for the web — Ruby or Python or PHP?</a></li>
<li><a href="http://stackoverflow.com/questions/328041/scripting-language-choice-for-initial-performance">Scripting language choice for initial performance</a></li>
</ul>
<p>The list above is taken from an answer provided by <a href="http://stackoverflow.com/users/16417/paolo-bergantino">Paolo Bergantino</a> to <a href="http://stackoverflow.com/questions/739538/best-scripting-language-for-web-development">Best Scripting Language for Web Development</a></p>
http://stackoverflow.com/questions/1950055/tornado-transferring-a-file-to-cdn-without-blocking0tornado - transferring a file to cdn without blockingmatt2009-12-23T00:24:59Z2009-12-23T02:13:04Z
<p>I have the nginx upload module handling site uploads, but still need to transfer files (let's say 3-20mb each) to our cdn, and would rather not delegate that to a background job.</p>
<p>What is the best way to do this with tornado without blocking other requests? Can i do this in an async callback? </p>
http://stackoverflow.com/questions/1949516/mako-templates-use-old-version-until-i-manually-update-template-files0Mako templates use old version until I manually update template filesDave Aaron Smith2009-12-22T22:08:24Z2009-12-23T01:44:29Z
<p>I periodically get this problem where all of a sudden mako is using old versions of templates, and it's not until I manually go and update the template files that they'll use the current version. I'm using</p>
<pre><code>./manage.py runserver
</code></pre>
<p>I think it's usually after I update using source control, but it's intermittent, and I can't reliably reproduce the problem.</p>
http://stackoverflow.com/questions/1950112/matplotlib-pyqt-widget-plot-resets-autoscale0Matplotlib PyQt-Widget plot() resets autoscaletillsten2009-12-23T00:46:02Z2009-12-23T01:03:18Z
<p>Hello,
i am using a Matplotlib figure as widget, in a PyQt4 programm. Everything works, except "set_autoscale_on(False)".
Everytime i call a figure axes to plot something, it forgets its autoscale status. Here some code, with axs a subplot of a figure: </p>
<pre><code> print axs.get_autoscale_on()
print axs.get_autoscaley_on()
print axs.get_autoscalex_on()
axs.plot(range(100)
print axs.get_autoscale_on()
print axs.get_autoscaley_on()
print axs.get_autoscalex_on()
</code></pre>
<p>returns</p>
<pre><code>False
False
False
True
True
True
</code></pre>
<p>any help?</p>
http://stackoverflow.com/questions/1948862/is-the-python-3-x-signal-library-for-windows-incomplete2Is the Python 3.x signal library for Windows incomplete?jottos2009-12-22T20:19:14Z2009-12-23T00:59:39Z
<p>I went to write a system script using 3.0 and found the SIGALRM signal and signal.alarm() call missing amongst many others on the Windows deployment. Does anyone know why these are missing? Below is a dir() of the 2.5 vs 3.0 signal packages on windows. I haven't found any 3.0 docs yet mentioning that this was moved</p>
<p>EDIT: signals <strong>do</strong> work in python25 on windows, they were removed in 3.0. I should reword my request as 'where did they go or get turned into' or is the windows 3.0 release just not complete yet? </p>
<pre><code>python25> python
Python 2.5.1 (r251:54863, May 18 2007, 16:56:43)
[GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import signal
>>> dir(signal)
['NSIG', 'SIGABRT', 'SIGALRM', 'SIGBUS', 'SIGCHLD', 'SIGCLD',
'SIGCONT', 'SIGEMT', 'SIGFPE', 'SIGHUP', 'SIGILL', 'SIGINT ', 'SIGIO',
'SIGKILL', 'SIGPIPE', 'SIGPOLL', 'SIGPROF', 'SIGQUIT', 'SIGRTMAX',
'SIGRTMIN', 'SIGSEGV', 'SIGSTOP', 'SIGSYS ', 'SIGTERM', 'SIGTRAP',
'SIGTSTP', 'SIGTTIN', 'SIGTTOU', 'SIGURG', 'SIGUSR1', 'SIGUSR2',
'SIGVTALRM', 'SIGWINCH', 'SIGX CPU', 'SIGXFSZ', 'SIG_DFL', 'SIG_IGN',
'__doc__', '__name__', 'alarm', 'default_int_handler', 'getsignal',
'pause', 'sig nal']
>>> exit()
python25> cd ../python31
python31> python
Python 3.1.1 (r311:74483, Aug 17 2009, 17:02:12) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import signal
>>> dir(signal)
['NSIG', 'SIGABRT', 'SIGBREAK', 'SIGFPE', 'SIGILL', 'SIGINT',
'SIGSEGV', 'SIGTERM', 'SIG_DFL', 'SIG_IGN', '__doc__', '__ name__',
'__package__', 'default_int_handler', 'getsignal', 'set_wakeup_fd',
'signal']
>>>
</code></pre>
http://stackoverflow.com/questions/1945634/which-is-a-more-functional-programming-language-haskell-or-python1Which is a more functional programming language, Haskell or Python?Mayuresh2009-12-22T10:57:23Z2009-12-23T00:46:48Z
<p>Had learned Haskell during a Functional Programming course in school. Had found Haskell a bit difficult to work with. Have now worked a lot on Python. Python is quite easy to work with.</p>
<p>Python does support some functional programming constructs.</p>
<p>Was thinking of revisiting Functional Programming. What would be a better language to code? Haskell or Python? Why?</p>
http://stackoverflow.com/questions/564469/what-is-a-good-free-game-engine4What is a good & free game engine?bLee2009-02-19T09:05:39Z2009-12-23T00:01:38Z
<p>For C++, Java, or Python, what are some good game + free game engines that are easy to pick up?</p>
<p>Any type of game engine is okay. I just want to get started somewhere by looking into different game engines and their capabilities.</p>
http://stackoverflow.com/questions/1949549/parsing-an-html-file-and-adding-found-images-to-a-zip-file1Parsing an html file and adding found images to a zip fileJason Christa2009-12-22T22:16:59Z2009-12-22T23:53:29Z
<p>I am trying to parse an html for all its img tags, download all the images pointed to by src, and then add those files to a zip file. I would prefer to do all this in memory since I can guarantee there won't be that many images.</p>
<p>Assume the images variable is already populated from parsing the html. What I need help with is getting the images into the zipfile.</p>
<pre><code>from zipfile import ZipFile
from StringIO import StringIO
from urllib2 import urlopen
s = StringIO()
zip_file = ZipFile(s, 'w')
try:
for image in images:
internet_image = urlopen(image)
zip_file.writestr('some-image.jpg', internet_image.fp.read())
# it is not obvious why I have to use writestr() instead of write()
finally:
zip_file.close()
</code></pre>
http://stackoverflow.com/questions/38601/using-django-time-date-widgets-in-custom-form18Using Django time/date widgets in custom formjoshhunt2008-09-01T23:22:55Z2009-12-22T23:31:09Z
<p>How can I use the nifty JavaScript date and time widgets that the default admin uses with my custom view?</p>
<p>I have looked through <a href="http://www.djangoproject.com/documentation/forms/" rel="nofollow">http://www.djangoproject.com/documentation/forms/</a>, and it brefly mentions django.contrib.admin.widgets, but I don't know how to use it?</p>
<p>Here is my template that I want it applied on.</p>
<pre><code> <form action="." method="POST">
<table>
{% for f in form %}
<tr> <td> {{ f.name }}</td> <td>{{ f }}</td> </tr>
{% endfor %}
</table>
<input type="submit" name="submit" value="Add Product">
</form>
</code></pre>
<p>Also, I think it should be noted that I haven't really written a view up myself for this form, I am using a generic view. Here is the entry from the url.py:</p>
<pre><code> (r'^admin/products/add/$', create_object, {'model': Product, 'post_save_redirect': ''}),
</code></pre>
<p>And I am relevantly new to the whole Django/MVC/MTV thing, so please go easy...</p>
http://stackoverflow.com/questions/70528/why-are-pythons-private-methods-not-actually-private19Why are Python's 'private' methods not actually private?wbowers2008-09-16T08:59:32Z2009-12-22T23:25:42Z
<p>Python gives us the ability to create 'private' methods and variables within a class by prepending double underscores to the name, like so: *__myPrivateMethod()*. How, then, can one explain this</p>
<pre><code>>>> class MyClass:
... def myPublicMethod(self):
... print 'public method'
... def __myPrivateMethod(self):
... print 'this is private!!'
...
>>> obj = MyClass()
>>> obj.myPublicMethod()
public method
>>> obj.__myPrivateMethod()
Traceback (most recent call last):
File "", line 1, in
AttributeError: MyClass instance has no attribute '__myPrivateMethod'
>>> dir(obj)
['_MyClass__myPrivateMethod', '__doc__', '__module__', 'myPublicMethod']
>>> obj._MyClass__myPrivateMethod()
this is private!!
</code></pre>
<p>What's the deal?!</p>
<p>I'll explain this a little for those who didn't quite get that.</p>
<pre><code>>>> class MyClass:
... def myPublicMethod(self):
... print 'public method'
... def __myPrivateMethod(self):
... print 'this is private!!'
...
>>> obj = MyClass()
</code></pre>
<p>What I did there is create a class with a public method and a private method and instantiate it.</p>
<p>Next, I call its public method.</p>
<pre><code>>>> obj.myPublicMethod()
public method
</code></pre>
<p>Next, I try and call its private method.</p>
<pre><code>>>> obj.__myPrivateMethod()
Traceback (most recent call last):
File "", line 1, in
AttributeError: MyClass instance has no attribute '__myPrivateMethod'
</code></pre>
<p>Everything looks good here; we're unable to call it. It is, in fact, 'private'. Well, actually it isn't. Running <em>dir()</em> on the object reveals a new magical method that python creates magically for all of your 'private' methods.</p>
<pre><code>>>> dir(obj)
['_MyClass__myPrivateMethod', '__doc__', '__module__', 'myPublicMethod']
</code></pre>
<p>This new method's name is always an underscore, followed by the class name, followed by the method name.</p>
<pre><code>>>> obj._MyClass__myPrivateMethod()
this is private!!
</code></pre>
<p>So much for encapsulation, eh?</p>
<p>In any case, I'd always heard Python doesn't support encapsulation, so why even try? What gives?</p>