In the Python in the 2.x series Python 2.7 is the latest, and last, major release.

learn more… | top users | synonyms

0
votes
1answer
27 views

python recursive function error RuntimeError: maximum recursion depth exceeded

I have this script: def number_of_occurences(c, message): position = message.find(c) if position == -1: return 0 else: if len(message[position:]) == 0: return position else: ...
0
votes
1answer
13 views

Error installing Mezzanine cms on Windows 7

I am trying to install mezzanine on windows 7 64 bit. I have installed pil for python 2.7 64 bit from here. I recreated my virtualenv, but i still get this error i know that error is caused by pil ...
0
votes
2answers
31 views

How to get a viewer's IP address with python?

Just doing a basic forum with a python file allowing the user to login and/or create an account. Thought I would do a little bit more and have each user logged in with their IP address and then be ...
-1
votes
1answer
59 views

I am having troubles with Python functions, can someone help me?

Goal: I am trying to create a program that can take in 10 numbers then spit out the 10 largest numbers. I need all integers able to be inserted, then for the program to find the odds and see which of ...
3
votes
2answers
122 views

Why doesn't my heapsort work?

i have this python Heapsort-Code made from a pseudocode from the net. But it gives the wrong result. def heapSortUp(a): heapifyUp(a, len(a)) end = len(a)-1 while end > 0: ...
0
votes
0answers
5 views

How to install PyGSL? (Windows 7, 64 bit, Python 2.7, GSL 1.15)

I'm trying to install PyGSL on my computer (64 bit Windows 7), with Python 2.7 and GSL 1.15 installed. I'm pretty much stuck and I would love for some extra help. GSL installed fine, but its the ...
0
votes
1answer
29 views

BeautifulSoup and div value from site using Firefox

After some changes I got thi: import urllib2 from bs4 import BeautifulSoup soup = BeautifulSoup(urllib2.urlopen("http://example.com")) soup.find("div", {"id": "botloc"}) elem = soup.find('div') ...
0
votes
0answers
11 views

python pip config file - custom scripts and library installation paths

I am trying to get pip to respect some configurations, such as location of the scripts and library location. So, every time I install using pip at the moment, I do something like: pip install ...
-1
votes
3answers
57 views

unicode dictionary key issues with python

I have a dictionary with unicode keys and I cannot seem to manipulate the elements inside state_sentiment = {u'WA': [0.0], u'DC': [-2.0, 0.0], u'WI': [0.0, 0.0, 0.0], u'WV': [0.0], u'FL': [2.0, 0.0, ...
1
vote
1answer
41 views

Why is the output different for code ported from MATLAB to Python? [closed]

EDIT: After some more testing and a response form the scipy mailing list, the issue appears to be with fspecial(). To get the same output I need to generate the same kind of kernel in Python as the ...
0
votes
1answer
24 views

How to “listen” to a multiprocessing queue in Python

I will start with the code, I hope it is simple enough: import Queue import multiprocessing class RobotProxy(multiprocessing.Process): def __init__(self, commands_q): ...
0
votes
1answer
17 views

pygame 1.9 doesn't seem to load png

I am toying around with pygame and WX for some self study projects i am doing to improve my skills. i am trying to send a png over a socket server in python 2.7.3 and load the png into pygame. I have ...
-5
votes
1answer
47 views

How can i get text from website and refresh that check every second? [closed]

what should i use to get the text from Website... exactly from the small area 20x20 pix example: Get text from area, value of that text put in to event with action like click when the text is ASD I ...
0
votes
3answers
40 views

Regular expression for matching diffrent name format in python

I need a regular expression in python that will be able to match different name formats like I have 4 different names format for same person.like R. K. Goyal Raj K. Goyal Raj Kumar Goyal R. Goyal ...
0
votes
1answer
28 views

How to refresh the data without reloading the page using data-bind

I am using knockout.js in my django project and having problem in post method in javascript. I tried to rebind or re-initialized the list but it didn't work. Eg: I am showing table data with 10 ...
0
votes
2answers
20 views

When and how to use Python's RLock

Reading through the Python docs I came across RLock. Can someone explain to me (with example) a scenario in which RLock would be preferred to Lock? With particular reference to: RLock's “recursion ...
1
vote
1answer
25 views

Node size dependent on the node degree on NetworkX

I imported my Facebook data onto my computer in the form of a .json file. The data is in the format: {"nodes":[{"name":"Alan"},{"name":"Bob"}],"links":[{"source":0,"target:1"}]} Then, I use this ...
0
votes
0answers
19 views

Flask app works on localhost but produces 404 in production

I've got a simple site which is being served by Flask. My routes work on localhost, however, when deployed to the production server (apache2 on Webfaction), the index renders fine with all static ...
0
votes
1answer
36 views

Url decode UTF-8 in Python

I have spent plenty of time as far as I am newbie in Python. How could I ever decode such a URL: ...
0
votes
0answers
22 views

Issue with cookies during webpage parsing using Python

I am trying to parse a webpage using Python. Problem: This page requires me to enter zipcode in the prompt window before loading. If I don't enter zipcode (parse the webpage directly) then webpage ...
0
votes
1answer
34 views

Routing in webapp2

I am playing around with Google Course Builder. It's built using Google App Engine and the webapp2 framework. I am not very familiar with webapp2 and routing in general and I think that's the reason ...
-2
votes
0answers
86 views

What is the easiest way to convert a spreadsheet model to Python? [closed]

What is the easiest way to convert a spreadsheet model to Python? What are the tools / libs which can be used to do this conversion perhaps using expressiona like JEXL. I am trying to port a ...
0
votes
1answer
28 views

python win32com : Change Excel formula witout inputing value yourself

Is there a way to change a formula without inputing the new value yourself? Example: Données!$EX$68:$IN$68 should become Données!$EY$68:$IN$68 I don't want to calculate myself EY comes after ...
0
votes
1answer
56 views

Creating a list from user input using a for loop

I am trying to make loop in python where the user input an array 5 times and store them for each i from 1 to 5 in a[i],but my code didn't work.Here is my code : import numpy from numpy import linalg ...
1
vote
3answers
38 views

using entry from a class in another classes function

the variable function is given via the class functionframe. When trying to use it in add_function i get this error. AttributeError: class FunctionFrame has no attribute 'function' class ...
1
vote
4answers
33 views

Removing only alpha duplicates

In Python, I would like to remove duplicate letters from a string, but not numbers or spaces. I came up with: result = [] seen = set() for char in string: if char not in seen: ...
-1
votes
2answers
47 views

How to pass a variable to a mysql query?

This one has no errors cursor.execute ("update `1` set `2`='aaa' where `1`='5'") This one has errors. cursor.execute ("update `1` set `2`=aaa where `1`='5'") The difference is, I am trying to ...
0
votes
1answer
30 views

How to delete an entity from the search index in gae?

I want to delete an entity from an index but it is not found: query = 'articleID = '+str(article.key().id()) logging.info('query: ' + str(query)) query_options = ...
1
vote
1answer
30 views

GAE Python Testing

First I'm quite new to GAE/Python, please bear with me. Here's the situation Have a test_all.py which tests all the test suites in my package. The TestCase's setUp current look like; import ...
0
votes
2answers
14 views

Python urllib2 accesses page without sending authentication details

I was reading urllib2 tutorial wherein it mentions that in order to access a page that requires authentication (e.g. valid username and password), the server first sends an HTTP header with error code ...
-2
votes
1answer
43 views

Python can't open myscript.py

I am trying to run my python program from cmd, but I have run into a problem. When I type myscript.py it gives my the error message: python: can't open file myscript.py:[Errno 2] No such file or ...
1
vote
1answer
10 views

Float HTML like PyGTK Container

I'm making an application using Python and PyGTK. The application consists basically in a disc catalog where the covers are shown. My question is: Is there any container that supports a behaviour like ...
0
votes
0answers
39 views

Login to google using Python

I have been trying for some time now to login to my google account and download a file from it without using any external libraries. I am specifically talking about Google Finance ...
1
vote
1answer
48 views

Python 2.7 - Pygame - intersecting two moving sprites

I've got 2 sprites (well... 3). One sprite is traveling in a straight line at a steady speed at a random angle (in radians). The other sprite is shooting at the moving sprite. Currently the projectile ...
0
votes
3answers
71 views

delete items from a set while iterating over it

I have a set myset, and I have a function which iterates over it to perform some operation on its items and this operation ultimately deletes the item from the set. Obviously, I cannot do it while ...
0
votes
1answer
25 views

Deployment issues of Psycopg2 Python App

I have created an application in Python that is tested and runs perfectly on my computer (Mac OSX 10.8.3 Python2.7.3 Postgresql9.2.4 Psycopg2-2.5). The app is compiled using py2app, and I can see that ...
0
votes
3answers
87 views

Python Float rounding errors [duplicate]

When using list comprehension expression: [x * 0.1 for x in range(0, 5)] I expect to get a list like this: [0.0, 0.1, 0.2, 0.3, 0.4] However I instead I get this: [0.0, 0.1, 0.2, ...
0
votes
1answer
15 views

import httplib2 works in mac terminal but not IDLE shell

I'm having great problems with getting the python site package httplib2 to work properly in IDLE. I'm using a mac with OSX 10.8.3 and python 2.7. I used the following installation steps to install ...
0
votes
0answers
19 views

Is the latest version of xattr (0.6.4) compatible with the latest stable version of Python (2.7.5)?

I'm asking this question because I'm having problems installing Little Snitch 3.1 on Mac OS X Mountain Lion 10.8.3. Indeed, I'm getting the following error: Error removing quarantine on ...: python ...
2
votes
3answers
56 views

Printing X-type pattern in Python 2.7

I'm trying to print this pattern in Python: *............* .**........** ..***....*** ...******** ...******** ..***....*** .**........** *............* And came up ...
0
votes
0answers
7 views

PyQt Adding menus that are defined in other modules

I am trying to develop a modular (plugin) PyQt Application. I am talking here about a plugin that may have been written by another developer and that extends my application. At application start up ...
-1
votes
0answers
26 views

Django Comparison Shopping Site: How to Keep Prices Up to Date? [closed]

I'm creating a web app (as in application as a whole, not referring to a Django app) that has a comparison shopping component. After researching this, it appears that I'll be creating a database and ...
0
votes
0answers
15 views

line 34 in db.query(q) — AttributeError: Database instance has no attribute 'query'

I am practicing database in python and using Phpadmin database, and made my table but, In line 34 in db.query(q), error is : AttributeError: Database instance has no attribute 'query' #!/user/env ...
0
votes
3answers
66 views

Calling function with two different types of arguments in python

I am new to Python. I came across a weird case and am not able to figure out what the issue is. I have 2 versions of a function written in Python :- v1 - def fileLookUp(fixedPath, version): if ...
2
votes
3answers
59 views

How to get numbers from filenames?

I have many files in directory according to the key: pic001.jpg pic002.jpg pic012.jpg [...] ico001.jpg ico002.jpg ico012.jpg [...] and I want to list this files and create structure like this: for ...
0
votes
1answer
14 views

how to trigger a zone file save from dnspython after an update

I am using dnspython to perform dynamic DNS updates using a syntax similar to: import dns.update, dns.query update = dns.update.Update('zone', keyring=keyring) update.add('source', 60, 'CNAME', ...
2
votes
1answer
62 views

How to open Tkinter programs nicely?

When I opened a Tkinter program, 3 things are opening: My program IDLE (shell) Black screen (python command line) How can I block second and third ones for a clean view? Thanks.
0
votes
1answer
38 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
0answers
105 views

Pything tkinter: plot function with canvas, HOMEWORK

An assignment for uni asks me to use tkinter to create a GUI program that takes a function, color, start point, end point and how many steps to take between (line drawn between each step). I have had ...
0
votes
0answers
29 views

dealing with contours and bounding rectangle in opencv 2.4 - python 2.7

I am working with openCv and python and I am dealing with Structural Analysis and Shape Descriptors. I have found this blog: http://opencvpython.blogspot.it/2012/06/contours-2-brotherhood.html that's ...

1 2 3 4 5 137