Tagged Questions
For issues relating to development in Python, version 2.6.
45
votes
11answers
32k views
MySQL for Python in Windows
I am finding it difficult to use MySQL with Python in my windows system.
I am currently using Python 2.6. I have tried to compile MySQL-python-1.2.3b1 (which is supposed to work for Python 2.6 ?) ...
32
votes
4answers
17k views
Random strings in Python 2.6 (Is this OK?)
I've been trying to find a more pythonic way of generating random string in python that can scale as well. Typically, I see something similar to
''.join(random.choice(string.letters) for i in ...
22
votes
3answers
4k views
Python try…except comma vs 'as' in except
What is the difference between ',' and 'as' in except statements, eg:
try:
pass
except Exception, exception:
pass
and:
try:
pass
except Exception as exception:
pass
Is the second ...
10
votes
5answers
3k views
Why does sys.exit() not exit when called inside a thread in Python?
This could be a stupid question, but I'm testing out some of my assumptions about Python and I'm confused as to why the following code snippet would not exit when called in the thread, but would exit ...
10
votes
3answers
867 views
Why did Python 2.6 add a global next() function?
I noticed that Python2.6 added a next() to it's list of global functions.
next(iterator[, default])ΒΆ
Retrieve the next item from the iterator by calling its next() method.
If default is ...
9
votes
5answers
193 views
How to optimize operations on large (75,000 items) sets of booleans in Python?
There's this script called svnmerge.py that I'm trying to tweak and optimize a bit. I'm completely new to Python though, so it's not easy.
The current problem seems to be related to a class called ...
8
votes
12answers
630 views
Efficient way of having a function only execute once in a loop
Atm, I'm doing stuff like:
run_once = 0
while 1:
if run_once == 0:
myFunction()
run_once = 1:
Which is getting tedious. I'm guessing there is some more accepted way of handling ...
8
votes
4answers
769 views
Can bin() be overloaded like oct() and hex() in Python 2.6?
In Python 2.6 (and earlier) the hex() and oct() built-in functions can be overloaded in a class by defining __hex__ and __oct__ special functions. However there is not a __bin__ special function for ...
8
votes
5answers
3k views
Any gotchas using unicode_literals in Python 2.6?
We've already gotten our code base running under Python 2.6. In order to prepare for Python 3.0, we've started adding:
from __future__ import unicode_literals
into our .py files (as we modify ...
7
votes
6answers
177 views
How can get Python isidentifer() functionality in Python 2.6?
Python 3 has a string method called str.isidentifier
How can I get similar functionality in Python 2.6, short of rewriting my own regex, etc.?
7
votes
2answers
461 views
Most “pythonic” way of organising class attributes, constructor arguments and subclass constructor defaults?
Being relatively new to Python 2, I'm uncertain how best to organise my class files in the most 'pythonic' way. I wouldn't be asking this but for the fact that Python seems to have quite a few ways of ...
6
votes
5answers
2k views
Python - Get a list of all the encodings python can encode to
I am writing a script that will try encoding bytes into many different encodings in python 2.6. This page http://www.python.org/doc/2.6/library/codecs.html?highlight=cp1250#id3 lists all the encodings ...
6
votes
5answers
5k views
Easy Q: UnicodeEncodeError: 'ascii' codec can't encode character
I'm trying to pass big strings of random html through regular expressions and my Python 2.6 script is choking on this:
UnicodeEncodeError: 'ascii' codec can't encode character
I traced it back to a ...
6
votes
4answers
3k views
Python 2.6 multiprocessing.Queue compatible with threads?
I am experimenting with the new multiprocessing module in Python 2.6. I am creating several processes each with its own multiprocessor.JoinableQueue instance. Each process spawns one or more worker ...
5
votes
4answers
118 views
In a Python object, how can I see a list of properties that have been defined with the @property decorator?
I can see first-class member variables using self.__dict__, but I'd like also to see a dictionary of properties, as defined with the @property decorator. How can I do this?
5
votes
6answers
453 views
How to get the current running module path/name
I've searched and this seems to be a simple question without a simple answer.
I have the file a/b/c.py which would be called with python -m a.b.c. I would like to obtain the value a.b.c in the module ...
5
votes
2answers
550 views
How to validate an xml file against an XSD Schema using Amara library in Python?
High bounty for the following Q:
Hello,
Here is what I tried on Ubuntu 9.10 using Python 2.6, Amara2
(by the way, test.xsd was created using xml2xsd tool):
g@spot:~$ cat test.xml; echo ...
5
votes
3answers
982 views
Remove whitespaces in XML string
How can I remove the whitespaces and line breaks in an XML string in Python 2.6? I tried the following packages:
etree: This snippet keeps the original whitespaces:
xmlStr = '''<root>
...
5
votes
2answers
2k views
How to stop Python parse_qs from parsing single values into lists?
In python 2.6, the following code:
import urlparse
qsdata = "test=test&test2=test2&test2=test3"
qs = urlparse.parse_qs(qsdata)
print qs
Gives the following output:
{'test': ['test'], ...
4
votes
1answer
35 views
unix crontab doesn't handle python's subprocess.popen well
i am using crontab to launch a python script that is suppose to launch several procceses by itself using subprocess.popen(). i use this command to launch a procedure that may take 30 minutes - so i ...
4
votes
2answers
249 views
Using Google App Engine SDK with Python 2.7 on Mac OS X 10.6
I need to run Python 2.7 on my Mac Snow Leopard, which has Python 2.6 installed. According to this answer, running the Python 2.7 mpkg installer from Python.org should get me there.
The reason I ...
4
votes
1answer
221 views
Using python multiprocessing pipes
I am trying to write a class that will calculate checksums using multiple processes, thereby taking advantage of multiple cores. I have a quite simple class for this, and it works great when executing ...
4
votes
3answers
1k views
Encoding error while parsing RSS with lxml
I want to parse downloaded RSS with lxml, but I don't know how to handle with UnicodeDecodeError?
request = urllib2.Request('http://wiadomosci.onet.pl/kraj/rss.xml')
response = ...
4
votes
2answers
350 views
IIS 7.5 crashes after a few requests (with Django + PyISAPIe)
I managed to run Django using IIS as webserver (using PyISAPIe) and everything goes well in my test server, mounting Windows 2008 Server R2 64bit.
Then I installed the application on another server ...
4
votes
1answer
1k views
Installing Numpy and Scipy - Can't find system python 2.6
I"m trying to install numpy and scipy for a data analysis class I have this semester. I'm trying to install it from the package on sourceforge.net, but as I follow the wizard I can't select my HD. ...
4
votes
4answers
271 views
Check maxlen of deque in python 2.6
I have had to change from python 2.7 to 2.6.
I've been using a deque with the maxlen property and have been checking what the maxlen is. Apparently you can use maxlen in python 2.6, but in 2.6 deques ...
4
votes
2answers
221 views
Python 2.6 to 2.5 cheat sheet
I've written my code to target Python 2.6.5, but I now need to run it on a cluster that only has 2.5.4, something that wasn't on the horizon when I wrote the code. Backporting the code to 2.5 ...
4
votes
2answers
201 views
Working around Python bug in different versions
I've come across a bug in Python (at least in 2.6.1) for the bytearray.fromhex function. This is what happens if you try the example from the docstring:
>>> bytearray.fromhex('B9 01EF')
...
4
votes
1answer
284 views
Edit .RAR file comments from python
Ok, I need to be able to edit the file comments in .rar files from python.
I can already view the comments using UnRAR. However, I need to embed metadata in the files in a way that is preserved over ...
4
votes
3answers
443 views
inspect.getmembers in order?
inspect.getmembers(object[, predicate])
Return all the members of an object in a list of (name, value) pairs sorted by name.
I want to use this method, but I don't want the members to be ...
4
votes
2answers
1k views
Simple example of how to use ast.NodeVisitor?
Does anyone have a simple example using ast.NodeVisitor to walk the abstract syntax tree in Python 2.6? The difference between visit and generic_visit is unclear to me, and I cannot find any example ...
4
votes
5answers
1k views
XML parsing in Python
I'd like to parse a simple, small XML file using python however work on pyXML seems to have ceased. I'd like to use python 2.6 if possible. Can anyone recommend an XML parser that will work with 2.6?
...
3
votes
3answers
163 views
Wanted Python to create a UTF-8 File, got an ANSI one. Why?
I have the following function:
def storeTaggedCorpus(corpus, filename):
corpusFile = codecs.open(filename, mode = 'w', encoding = 'utf-8')
for token in corpus:
tagged_token = ...
3
votes
2answers
173 views
Check if file descriptor is valid
How do I check to see if a given file descriptor is valid? I want to write to fd=3 if it's available; otherwise, I want to write to stdout. I'm aware that I could wrap every os.write call with ...
3
votes
0answers
300 views
Linux > Python > TTS, STT & voice reconization
Text to Speech
I had been trying to run pyttsx in windows as well as Linux environment...
Linux Environment:
import pyttsx
engine = pyttsx.init()
the python just hangs up after executing the ...
3
votes
3answers
187 views
fabric appears to start apache2 but doesn't
This question could possibly go in serverfault, but I think it is a programming problem.
I'm using fabric to remotely start a micro aws server, install git and a git repository, adjust apache config ...
3
votes
2answers
635 views
Installing MySQLdb for Django on Mac OS X 10.6 Snow Leopard with MAMP
So I know this is not a new topic, but its one that nobody has seemed to be able to solve, at least not for Python 2.6 / Snow Leopard. (The Leopard fixes I've found aren't applicable to Snow ...
3
votes
1answer
207 views
how to use distutils to create executable .zip file?
Python 2.6 and beyond has the ability to directly execute a .zip file if the zip file contains a __main__.py file at the top of the zip archive. I'm wanting to leverage this feature to provide preview ...
3
votes
1answer
187 views
How to get http response code from suds client when using faults
I'm using suds to call a Windows/WCF service like so:
# Setting up my client
client = Client(wsdl, transport = my_transport, location = url, faults = True, headers = my_soap_action_header, cache = ...
3
votes
2answers
427 views
How to iterate over files and replace text
I'm python beginner: how can I iterate over csv files in one directory and replace strings e.g.
ww into vv
.. into --
So, I do not want to replace lines having ww into vv, just those string on ...
3
votes
1answer
519 views
Why doesn't this absolute import work in Python?
I've got two Python 2.6 files, /code/x/X.py:
import imp
print 'running'
logging = imp.load_source('logging', '/code/y/logging.py')
... and /code/y/logging.py:
from __future__ import ...
3
votes
2answers
234 views
Is there a free tool which can help visualize the logic of a stored procedure in SQL Server 2008 R2?
I would like to be able to plot a call graph of a stored procedure. I am not interested in every detail, and I am not concerned with dynamic SQL (although it would be cool to detect it and skip it ...
3
votes
1answer
123 views
How do I access outer functions variables inside a closure(python 2.6)?
From wikipedia
I need to access outer functions variables in a similar manner as using the 'nonlocal' keyword from python 3.x. Is there some way to do that in python 2.6? (Not necessarily using the ...
3
votes
2answers
181 views
Python's getattr gets called twice?
I am using this simple example to understand Python's getattr function:
In [25]: class Foo:
....: def __getattr__(self, name):
....: print name
....:
....:
...
3
votes
3answers
360 views
Python's list comprehensions and other better practices
This relates to a project to convert a 2-way ANOVA program in SAS to Python.
I pretty much started trying to learn the language Thursday, so I know I have a lot of room for improvement. If I'm ...
3
votes
2answers
181 views
Help with cPickle in Python 2.6
I tried the following code I python. This is my first attempt at pickling.
import Tkinter
import cPickle
root = Tkinter.Tk()
root.sclX = Tkinter.Scale(root, from_=0, to=1500, orient='horizontal', ...
3
votes
2answers
2k views
How to install python2.6-devel package under CentOs 5
I need to install mysql-python under python2.6.
mysql-python package needs python2.6-devel package that depends on the libpython2.6.so.1.0(64bit)
I found on the net some python2.6-devel packages, but ...
3
votes
5answers
670 views
There is no spawnl function in python 2.6?
I just noticed that my old codes written in python 2.5 does not work now. I am in python 2.6 btw.
>>> os.spawnl(os.P_NOWAIT,"setup.exe")
Traceback (most recent call last):
File ...
3
votes
5answers
631 views
Python deprecated functions
I have a Django app written in Python 2.5 and I plan to upgrade it to be compatible with Python 2.6. It contains hundreds of .py files. Is there a simple way to find all deprecated functions in those ...
3
votes
1answer
2k views
Easy Python Q: UnicodeEncodeError: 'ascii' codec can't encode character?
I'm trying to pass big strings of random html through regular expressions and my Python 2.6 script is choking on this:
UnicodeEncodeError: 'ascii' codec can't encode character
I traced it back to a ...