In the Python in the 2.x series Python 2.7 is the latest, and last, major release.
2
votes
2answers
58 views
splitting line in python
I have data of the below mentioned form:
<a> <b> <c> <This is a string>
<World Bank> <provides> <loans for> <"a Country's Welfare">
<Facebook> ...
0
votes
2answers
64 views
indexing list with len(list) vs len(list) - 1
#!/usr/bin/python
list2 = ['Bangalore','Cochin','Trivandrum','Auckland','Seoul','Los Angeles']
list2[5] = 'Hamilton'
list2.append('Sydney')
list2.append('San Jose')
list2.append('Amsterdam')
...
0
votes
1answer
52 views
Modify file using python
I have files that contains the following lines:
info face="asd" size=49 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0
common lineHeight=52 base=43 ...
-3
votes
3answers
45 views
from python 2.7 to 3 [closed]
Can the below code be converted into Python 3?
password_str = raw_input('Please enter password to test: ')
if len(password_str) < 6:
print 'Password:', password_str, 'too short! It must be ...
3
votes
2answers
41 views
Split a string of a specific pattern into three parts
I am given a string which is of this pattern:
[blah blah blah] [more blah] some text
I want to split the string into three parts: blah blah blah, more blah and some text.
A crude way to do it is ...
2
votes
2answers
26 views
get how much time python subprocess spends
I'd like to time how long does the subprocess take.
I tried to use
start = time.time()
subprocess.call('....')
elapsed = (time.time() - start)
However it's not very accurate (not sure related to ...
1
vote
0answers
7 views
Using Scrapy DjangoItem with Django best way
I am am new to Django / Scrapy and well to programming in general. I am trying to make a Django site to help me learn.
What I want to do is Scrape product information from different sites and store ...
4
votes
2answers
76 views
How to parse DST date in Python?
I have a date field in my dictionary Mon Apr 25 13:32:00 PDT 2013 I want to order my list of items by date field.
dictionarylist.sort(key=operator(fieldposition) is not working. Any help?
I want to ...
0
votes
0answers
17 views
In pyQt how do I get the contents of a ComboBox within a tablewidget that is within a cell?
So I know you can put a qtablewidget within the cell of a qtablewidget, but how do I get the data from combo boxes and text boxes within that second tablewidget?
cell = self.ui.tableWidget.item(y, 6)
...
0
votes
0answers
31 views
google app engine: Error: HTTPError
I am trying "Hello world" with python
import webapp2
class MainHandler(webapp2.RequestHandler):
def get(self):
self.response.write('Hello world!')
app = webapp2.WSGIApplication([
...
1
vote
1answer
44 views
Django “Table already exists” on testing
I've tried to solve the following issue:
I'm running python manage.py test to test my application.
After creating a new test_app database, I'm getting
DatabaseError: (1050, "Table 'auth_group' ...
0
votes
1answer
17 views
Google App Engine import NLTK error
I am trying to import NLTK library in Google App Engine it gives error, I created another module "testx.py" and this module works without error but I dont know why NLTK does not work.
My code
...
0
votes
2answers
45 views
python, UnicodeEncodeError, converting unicode to ascii
Firstly, I am pretty new to python, so forgive me for all the n00b stuff.
So the application logic in Python goes like this:
I am sending and SQL Select to database and it returns an array of data.
...
4
votes
4answers
81 views
Wrap calls to methods of a Python class
I would like to wrap a number of class methods in Python with the same wrapper.
Conceptually it would look something like this in the simplest scenario:
x = 0 # some arbitrary context
class ...
0
votes
2answers
56 views
Declaring variables in a list, but defining them in a loop?
Is there any way to declare a bunch of variables in a list, and then define them in a for loop like so?
myList = [a,b,c,d]
for var in myList:
var = 1
So that a, b, c, and d would all end up as 1? ...
0
votes
0answers
26 views
How to solve “Empty static prefix not permitted” error in Django?
I installed Django 1.5.1 with MySQL and mod_wsgi on ubuntu. After I imported my project from local machine to the server, I get this error by visiting all URLs:
**ImproperlyConfigured at /**
Empty ...
1
vote
0answers
18 views
python encoding for turkish characters
I have to read pdf books that are turkish stories. I found a library which is called pyPdf. My test function whichis the below doesn't encode correctly. I think, I need to have turkish codec packet. ...
0
votes
2answers
18 views
Can't seem to find success with datetime python2.7
I have an application the does what I want with
date_time= "4/23/2013"
new_entry.set_value('lastdate', str(date_time))
But instead of hard coding the value I want to use the python 2.7 function ...
1
vote
1answer
34 views
Python: Can a Decorator access argument from foo1() and supply it to foo2()?
More precisely
@string_supply #This should supply **string** from foo1 into foo2
def foo2(x):
#Cannot use global string. string changes
return list(itertools.compress(string, x)) # **string** ...
0
votes
1answer
31 views
Building an interface to search a .txt file depending on the user input, then print the results next to it
I've been playing around with this quite a bit and I feel like I'm making a mess of it.
I need an interface where if someone enters a word in the text field, it'll print any lines within a .txt file ...
-2
votes
2answers
56 views
Read a number in a word from a file in python
I have a file called guidefs.h where it has the information about the versions of the project code.
It has #define VERSION_MAJOR 2 & #define VERSION_MINOR 1 in between the lines and I want to ...
-3
votes
0answers
23 views
Set the lags in `brian.correlogram` [closed]
I am using the brian.correlogram function, and all I want is to have on the x-axis the values to be from -30 to 30 mseconds.
On the description of correlogram(T1,T2,width=20*ms,bin=1*ms,T=None) it ...
-4
votes
1answer
57 views
creating a python script from text file [closed]
i am trying to create a python script by reading text file(using a python script).
The content of the text file looks like below
there could be many such function in text file, the number of ...
0
votes
3answers
22 views
List of list to string
I have a list of list for example :
sample = [['a'],['b']]
I want this list to be converted to a string list like
sample = ['a','b']
I have used lists before but this seems to be bothering me!!
...
0
votes
0answers
9 views
Python TimedRotatingFileHandler rotates the logfile only sometimes at midnight
I created a simple and straight script which checks every 3 minutes the process list. I use the TimedRotating logger:
import logging
logger=logging.getLogger('sample_logger')
...
1
vote
1answer
30 views
How to pass python object from one file module to another file module?
I am trying to implement page object model in python and selenium. For that matter, I have two modules:
LoginPage.py
class LoginPage:
def __init__(self, driver):
self.driver = driver
...
0
votes
2answers
12 views
PIL and Python27 - Save a screengrab?
Here is the code
from PIL import ImageGrab
scrgrb = ImageGrab.grabclipboard()
scrgrbnum = 0
def saveimg():
scrgrb.save("screengrab.jpeg + str(scrgrbnum + 1)", "JPEG")
scrgrbnum = scrgrbnum + ...
-4
votes
0answers
28 views
pp function is not working in my python
In the above program i am getting error as pp is not defined.do we need to import any packages to run this program in 2.7.3
x = T.dscalar('x')
y = x ** 2
gy = T.grad(y, x)
theano.pp(gy) # print out ...
0
votes
2answers
44 views
How to write Default dictionary values to a file with new line?
I have the following defaultdictionary. I am trying to write values of dictionary to a file. But it is writing in one single line. I want to add new line character after each item. Help ?
...
-2
votes
1answer
41 views
need help in python printing
http://deeplearning.net/software/theano/tutorial/printing_drawing.html
i just done logistic regression based on the above link.It shows me some error mentioned below.could anybody help to rectify the ...
2
votes
2answers
49 views
Function returns tuple instead of string
I have a function in python similar to the following:
def checkargs(*args):
if len(args) == 1:
x = args
y = something
elif len(args) == 2:
x, y = args
return x, y
...
-1
votes
0answers
28 views
Human Language Translation with Python using WebServiceX? [closed]
I'm developing a script in Python to translate a given text. To make this, I've found that I can use WebServiceX.net as a provider of a free online translator. I'm using requests, a python module, to ...
0
votes
1answer
38 views
How to serialize the result of a query in python?
I'm having trouble to serialize the result array from a query where one of its projection is of datetime property.
My model class looks as follows:
class ActivitySummaries(ndb.Model):
...
0
votes
1answer
17 views
Uploading Newline-delimited JSON From a File to BigQuery
I recently wrote a Python script that uploads local, newline-delimited JSON files to a BigQuery table. It's very similar to the example provided in the official documentation here. The problem I'm ...
0
votes
2answers
51 views
Python function not accessing class variable
I am trying to access a class variable in an outside function, however I get the AttributeError, "Class has no attribute" My codes looks something like this:
class example():
def __init__():
...
0
votes
1answer
11 views
Python NLTK snowball stemmer UnicodeDecodeError in terminal but not Eclipse PyDev
I'm using the snowball stemmer to stem words in documents as shown in below code snippet.
stemmer = EnglishStemmer()
# Stem, lowercase, substitute all punctuations, remove stopwords.
...
1
vote
1answer
52 views
Python memory error for a large data set
I want to generate a 'bag of words' matrix containing documents with the corresponding counts for the words in the document. In order to do this I run below code for initialising the bag of words ...
1
vote
1answer
17 views
conversion of namespace to nodename in lxml - python
I am using lxml library... I have a tag in an xml file called
<a:rPr lang="en-US" dirty="0" smtClean="0"/>
and the prefix a refers to namespace
...
0
votes
3answers
55 views
How to order by date defaultdict(list) value?
defaultdict(<type 'list'>, {'003': [('Biology', 'A', '04/18/2013'), ('Irdu', 'A'
, '04/17/2013')], '002': [('Biology', 'A', '03/01/2013'), ('Math', 'C', '01/10/2
013'), ('Math', 'C', ...
0
votes
1answer
7 views
Error generating .exe with py2exe
I'm genetating a .exe with python and when i try to run it, a .log is generated with the following lines:
Traceback (most recent call last):
File "cuasimodo.py", line 1077, in
IOError: [Errno 2] No ...
0
votes
0answers
14 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
1answer
29 views
multiprocessing map raises exception [duplicate]
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, ...
1
vote
1answer
33 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
49 views
Separate lists stored in a variable using Python
How can I transform
list = [[68.0], [79.0], [6.0], ... [176.0], [120.0], [182.0]]
into
result = [68.0, 79.0, 6.0, 8.0, ... 176.0, 120.0, 182.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 ...
-1
votes
1answer
32 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
8 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 ...
0
votes
2answers
40 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:
...
1
vote
4answers
83 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
0answers
16 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() ...

