1
vote
0answers
8 views
csv utf-8 writer - compability with python2.4
At the bottom of this manual http://docs.python.org/library/csv.html we have example of UnicodeWriter
But how can i use this example in python 2.4
I got exception about …
0
votes
1answer
19 views
Django: Problems with serving static files with non ascii names
Hi,
I've moved my django application from one server to another, and spotted strange bug with media after it:
Traceback (most recent call last):
File "/usr/lib/python2.5/site-
…
0
votes
1answer
20 views
Unicode filenames on Windows with Python
Why does the following occur:
>>> u'\u0308'.encode('mbcs') #UMLAUT
'\xa8'
>>> u'\u041A'.encode('mbcs') #CYRILLIC CAPITAL LETTER KA
'?'
>>>
I have a Python application …
1
vote
1answer
16 views
Dynamically build and return a Python list in a C Python extension
I'm writing a Python extension in C, and I'm trying to figure out how to dynamically build and return a Python list using my extension. I know how to build a list of predetermined size using …
0
votes
0answers
10 views
Need to add httpd support to this wxPython code.
I need to add httpd support to this sample wxpython code.
It parses the url and display different images.
What's the easiest way to do this?
import wx
a = wx.PySimpleApp()
wximg = …
0
votes
1answer
19 views
facebook app in python showing file list
i am making a facebook app in python with django. now i have successfully resolved the callback url to my localhost account. but the app is not displaying on facebook.
when i navigate to …
1
vote
2answers
14 views
How do I add rows and columns to a NUMPY array?
Hello I have a 1000 data series with 1500 points in each.
They form a (1000x1500) size Numpy array created using np.zeros((1500, 1000)) and then filled with the data.
Now what if I want the array …
0
votes
0answers
5 views
Using style sheets in tab widgets in PyQT
Can you please tell me the syntax for using style sheets?
in sub-controls like
QStyle.SE_TabWidgetTabBar by having
QTabWidget as a reference element
For setting stylesheets for tabs (sub-control) in …
0
votes
1answer
25 views
ISO public Django apps developed Agile / BDD style with Doctest, Unitests and Selenium
I've found several blog posts where TDD/BDD is explained, but the examples are usually really basic. Usually they are just for Models. I want to see how people are really using BDD in Real Life.
I'd …
0
votes
5answers
93 views
Python: List to integers
I have read a file in and converted each line into a list. A sample of the list looks like:
['15', '2', '0'], ['63', '3', '445', '456' '0'], ['23', '4', '0']
i want to retrieve the first number from …
2
votes
2answers
98 views
What is python used for? [closed]
Okay, so i am fairly new at programming (knowing only html, css, and javascript) and i just started diving into python. But what i want to know is, what is it used for? how can i apply python to an …
1
vote
2answers
52 views
C/Python Socket Performance?
Hi, my question simply relates to the difference in performance between a socket in C and in Python. Since my Python build is CPython, I assume it's similar, but I'm curious if someone actually has …
0
votes
1answer
15 views
Combine lxml XSLT pretty_print with strip-space
I'm cleaning up some gross XML, and so I've had pretty_print = True set in the call to etree.tostring() on my lxml output of the XSL transform. However, that left me with a few junk whitespace nodes …
3
votes
5answers
139 views
Is it possible to use functions before declaring their body in python?
Is there any way to make possible to use functions in your file before you actually declare their body?
The following code doesn't seem to work:
abc = myFunction
def myFunction():
print "123"
…
0
votes
1answer
9 views
How does one feed a list of files into an app with appscript and Python?
Get your newb-shields up, I'm about to sprinkle you with some.
I'm trying to get Photoshop CS4 to open a folderful of JPEG images with AppScript+Python, which could be described like so in BASH:
…
