In the Python in the 2.x series Python 2.7 is the latest, and last, major release.
0
votes
1answer
21 views
How to use cursors for search in gae?
When I RTFM, I can't understand how to specify paginated searches using the technique described in the manual. Here's my code:
def find_documents(query_string, limit, cursor):
try:
...
0
votes
0answers
3 views
Pygame works in IDLE, but not in CMD\PowerShell [2.7.3][Win7]
I have installed Python 2.7.3 and installed the Pygame module appropriate for 2.7.3 on my computer.
I have been able to successfully run pygame and scripts importing pygame in IDLE. The problem comes ...
0
votes
0answers
5 views
multiprocessing map raises exception
I have this simple example of map using multiprocessing. But even this I can't make run correctly.
import multiprocessing
p = multiprocessing.Pool()
rere = range(50)
print p.map(lambda x: x+1, ...
0
votes
0answers
14 views
python metaclasses of classes created by type
Code is better than words here:
class MetaA(type):
def __new__(cls, name, bases, attrs):
print "MetaA"
return super(MetaA, cls).__new__(cls, name, bases, attrs)
class A(object):
...
0
votes
5answers
28 views
Separate lists stored in a variable using Python
I have following variable holding individual lists and its part of a for loop. Please suggest how to extract it into separate individual lists.
list = [[68.0], [79.0], [6.0], [8.0], [61.0], [88.0], ...
0
votes
0answers
10 views
Avoid deadlock using Popen without using sleep (Python 2.7)
I have a problem with deadlock using this Python script that parses the output produced
piping two programs and stores the result in a directory x.
import subprocess as sp
from time import sleep
p1 ...
0
votes
0answers
15 views
Avoid passing all local variables with scipy.weave.inline
Can someone explain this:
Using scipy.weave.inline, I supply a list of variables to make available to the C code I'm calling. But in addition to this, scipy.weave.inline also passes both globals() ...
0
votes
0answers
30 views
How to create store with string values using Selenium in Python
Hello stackoverflow users, I am not to experienced with python, but i am trying to create my own program.
The main idea of my program is to control the object on website using the x and y coordinates ...
-1
votes
1answer
29 views
How to perform arithmetic operation on a date in Python?
I have a date column in csv file say Date having dates in this format 04/21/2013 and I have one more column Next_Day. In Next_Day column I want to populate the date which comes immediately after the ...
0
votes
0answers
4 views
gevent not installed correctly on ubuntu 9
I have installed grequests
along with that gevent also installed successfully
But when tried to import grequests throws error
>>> import grequests
Traceback (most recent call last):
File ...
2
votes
1answer
143 views
UTF-8 STDIN+STDOUT with Python ArgParse on “OS X”
The argparse documentation shows an approach to file arguments defaulting to stdin/stdout, with the text encoding defaulting to utf-8
>>> parser = argparse.ArgumentParser()
>>> ...
1
vote
1answer
20 views
Allowing a specific value for an Argparse argument
Is it possible to require that an argparse argument be one of a few preset values?
My current approach is would be to examine the argument manually and if it's not one of the allowed values call ...
1
vote
4answers
75 views
Python (learn python the hard way exercise 35)
I'm currently working on Zed Shaw's Learn Python the Hard Way.
In exercise 35, one finds a program which includes these lines:
def bear_room():
print "There is a bear here."
print "The ...
0
votes
1answer
16 views
QFrame is not drawn
I am having a problem diplaying a QFrame in PyQt4 Python2.7.
When I display the QLineEdit, the Qframe self.videoframeRemote is not drawn.
If I remove the QlineEdit, it is drawn.
I cannot find whats ...
0
votes
12answers
73 views
create dict from two lists python without zip()?
I'm creating a dict using zip(), how would I do it without zipping or numpy?
def listtodict(list1, list2):
d={}
return dict(zip(list1, list2))
print listtodict([1,2,3,4,5],['a','b','c','d','e'])
0
votes
2answers
36 views
Are “”" syntactic sugar for raw strings?
From a tutorial:
print """ Usage: thingy [OPTIONS]
-h Display this usage message
-H hostname Hostname to connect to """
produces the following output:
...
0
votes
0answers
24 views
GAE, searching multiple indexed fields
I have a GAE entity in python 2.7 with 4 string fields. I need to search all 4 string fields for partial matches for my search operation. In terms of GAE efficiency and cost overheads, what would be ...
0
votes
1answer
61 views
how to detect multiple USB ports and read data from USB using python
I have been able to detect whenever a flash drive is inserted. However, (silly as it sounds) having trouble to detect if multiple USB be inserted.
Also, i am having difficulty in writing the code to ...
0
votes
0answers
13 views
SIP Simple Client SDK - Segmentation Fault
I am trying to use the SIP Simple Client SDK example client sip-register under Linux Mint 13 / Ubuntu 12.04.
But I get a segmentation fault.
I compiled pjsip without video and audio support and ...
0
votes
0answers
32 views
Inserting multiple columns into sqlite database from python list
When inserting values from a list into an sqlite database, columns are overwritten. The second insert from 'sorted_patienttwo' replaces values from the first insert. Either the second insert should be ...
0
votes
2answers
70 views
Python: How can I create a Python project compatible to Python 2 and Python 3?
I want to create a package which should be compatible to Python 2.7 and Python 3.3.
The logic should exist only once.
How do you normally represent the programming logic - in Python 2.7 or Python ...
0
votes
1answer
41 views
+50
imaplib2 : imap.gmail.com handler BYE response: System error
I'm renovating a python script that checks IMAP for new emails and sends a push notification if there's a new email. The problem is that every few hours I'm getting a crash. At first I couldn't really ...
-1
votes
4answers
60 views
Method to find substring
I know that in python there is a in operator which can used to check whether any sub-string or char is present in a string or not. I want to do this by checking each string (of length substring). Is ...
0
votes
1answer
33 views
what is the difference between “/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/” and “/Library/Python/2.7/”
I am working on a mac, a quick question, could someone told me the difference of these two directories?
/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/
...
-2
votes
1answer
29 views
Using Python scripts create dynamic html file
Using the below Python scripts i can able to create html file by already set the variables(a,b,c,d) as global.I want to run the script dynamically, even also i don't set some variables as globally ...
1
vote
2answers
46 views
Python regular expressions for simple questions
I wish to let the user ask a simple question, so I can extract a few standard elements from the string entered.
Examples of strings to be entered:
Who is the director of The Dark Knight?
What is ...
-1
votes
1answer
39 views
why do i get this— > importError: No module named backend.libusb10
my code is to get all details about the device inserted in USB port.
However, when i run the program i get the following error:
ImportError: No module named backend.libusb10
Can someone please ...
0
votes
2answers
26 views
Python 2.7 Method Resolution Order overrride
I am having some problem using multiple inheritance in Python and can't understand what I am doing wrong.
I have three classes A,B,C defined as follows it does not work.
class A(object):
def ...
0
votes
3answers
46 views
Convert List of strings to ints without removing 0
So I have a list of strings that I want to convert into a list of ints
['030', '031', '031', '031', '030', '031', '031', '032', '031', '032']
How should I go about this so that the new list does not ...
0
votes
0answers
15 views
how to do Live streaming in Python card using IP based camera
Can anyone help me out how to get the live video streaming in pythoncard using a IP based Camera.
1
vote
2answers
555 views
ImportError: cannot import name MAXREPEAT with cx_Freeze
I'm running into an issue with cx_Freeze when running a frozen application (works fine unfrozen).
When running the program it results in the following traceback:
Traceback (most recent call last):
...
-2
votes
2answers
42 views
IndexError: list assignment index out of range (in __init__) [duplicate]
Due to my recent interest in Information Security and network programming, I've decided to learn Python through the Internet. I'm trying to write a piece of code which would allow the user to store ...
0
votes
1answer
13 views
How to include multiple models in openerp report section
I have created a new module in openerp.Now want to create report .I have done everything for reporting.My module concept is User can create a consumption chart, it contain chart name ,date and ...
-5
votes
0answers
62 views
what is the explanation of this statement? [closed]
x = T.dvector('x')
y = x ** 2
J, updates = theano.scan(lambda i, y,x : T.grad(y[i], x), sequences=T.arange(y.shape[0]), non_sequences=[y,x])
f = function([x], J, updates=updates)
could anybody ...
0
votes
1answer
13 views
Multiprocessing in Python with large numbers of processes but limit numbers of cpus
I have a large number of data files needed to be processed through a function A. Let say 1000 files, each process for each file takes less than 15 min with 6GB memory. My computer has 32GB and 8 cpus, ...
1
vote
1answer
26 views
Google Endpoints API + Chrome Extension returns None for endpoints.get_current_user().user_id()
I am developing Google App Engine application written in Python and using Endpoints API. In conjunction, I am writing a Chrome Extension to interact with the Endpoints API. I've been running into lots ...
1
vote
1answer
28 views
How to fetch yesterday's entities
Please correct me if I'm wrong, but I've concluded that the following gets yesterday's data:
....filter('modified >', datetime.datetime.now() - timedelta(days=2)).filter('modified <', ...
0
votes
1answer
117 views
Flow control in a simple Python script
I am trying to make a simple game.
The logic is like this: "There are five doors, each numbered 1 to 5. Users will be asked to input any one number. For example, if they enter "1", the GoldRoom will ...
2
votes
1answer
51 views
Twisted / perform asynchronous http requests
I have a twisted reactor listening for incoming data. I have a second reactor performing http requests in certain time intervals sending the results to the first reactor. Both run fine.
Now I would ...
2
votes
2answers
40 views
Multiprocessing - Process owns my computer
I was just having a go with how to use the multiprocessing.Lock()
Working from the examples on:
http://docs.python.org/2/library/multiprocessing.html
This example in fact:
from multiprocessing ...
0
votes
1answer
60 views
possible to set variable with multiple if statments?
I can do this:
x ='dog'
testvar = 1 if x == 'dog' else 0
My x in this case can be one of three things. 'dog', 'cat, or '' (empty)
I would like to set testvar equal to 1 if x == 'dog', equal to ...
0
votes
0answers
11 views
Installing DOLFIN/FENICS Modules on EPD-UFC Error need SWIG 2.0
I've been trying to manually install FEniCS/DOLFIN on EPD. The reference I have been using is: How can I get FEniCS working in Ubuntu 12.04 with EPD python?
When I get to step 3 of this solution, UFC ...
1
vote
1answer
25 views
Unable to unwrap image in OpenCV
I am trying to convert an image from cartesian to polar so that I can unravel the image, but I am getting a runtime error. If you are curious how this looks visually, see this example.
Code:
import ...
0
votes
1answer
30 views
trying to understand a Python Unicode exception
I have a string object of unspecified type. It will match types.StringTypes, but could be a type.StringType or type.UnicodeType - I'm not sure what I'll receive. I can't necessarily control what ...
-1
votes
0answers
9 views
pyQT lineEdit text being input into a list
I have looked and have not found a pyQT tutorial online.
I am looking to have a lineEdit box widget, pushbutton widget and a listbox widget and having it set up so the user inputs data into the ...
0
votes
1answer
14 views
Wrong import of waxeye parser
So I tried to use parses generator waxeye, but as I try to use tutorial example of program in python using generated parser I get error:
AttributeError: 'module' object has no attribute 'Parser'
...
0
votes
2answers
48 views
How to add columns in between others in CSV file?
I do have a CSV file row as follow
22727176549389059,1917,6544,91999926,266392261,53972147,2131,Sun
Apr 28 21:00:44 PDT 2013
I want to add a column in between 4th and 5th column. How can I ...
1
vote
2answers
33 views
Python Wave Library String to Bytes
So basically I am trying to read in the information of a wave file so that I can take the byte information and create an array of time->amplitude points.
import wave
class WaveFile:
# ...
0
votes
1answer
44 views
Using python regular expressions to sub between two files
Basically I'm trying to read text from a text file, use a regular expression to sub it into something else and then write it to a html file.
here's a snippet of what i have:
from re import sub
def ...
1
vote
1answer
62 views
How to split a file into smaller pieces before sending
How do I get the following code to break up large files into smaller parts and send those parts, instead of sending the whole file? It fails to send large files (Tested with an ubuntu iso around ...






