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
20 views

How do I save a Netscape style cookies.txt file using Python 2.7 and Requests?

I am using requests to fetch a webpage and I would like to save the cookies in a Netscape-style cookies.txt file. How can I achieve this? I have tried the following: import requests import ...
0
votes
2answers
105 views

Print doesn't work after import in Python

I'm very new to Python, but want to run script from server. So, I have following structure project -A1 --A1.py --A2.py -B1 --B1.py --B2.py -test.py Also there is __init__.py in each subdirectory ...
0
votes
0answers
4 views

Specifying pattern of tests in nose

Related question nose does not discover unit tests using load_tests I am looking at running only specific patterns of tests in nose. In normal python unit test I would do something like ...
-1
votes
0answers
12 views

Pandas.io write_frame throws UnicodeEncodeError

I am trying to write a frame (imported via pd.ExcelFile.parse()) to MySQL as follows: sql.write_frame(EMCompanies, con=db, name='EMCompanies', if_exists='append', flavor='mysql') Unfortunately, I'm ...
1
vote
4answers
46 views

Function call syntax oddity

I was experimenting with something on the Python console and I noticed that it doesn't matter how many spaces you have between the function name and the (), Python still manages to call the method? ...
0
votes
1answer
24 views

wxPython Dialog freezes after ShowModal

Here the code directly, worth thousand words of explaining it. #!/usr/bin/env python2 import wx class TestDialog(wx.Dialog): def __init__self(*arg, **args): wx.Dialog.__init__(self, ...
0
votes
1answer
66 views

Importing functions bad, classes okay?

Just a style question but I'm working on a project where the style guidelines frown upon from foo import bar when bar is a function but not when bar is a class. I don't understand the rationale ...
1
vote
1answer
25 views

Using LIBSVM on Visual studio 2010

I wanted to use libsvm in visual studio 2010 just for classifying my test sample and nothing more .. I've worked with libsvm using the documentation provided by its official site ... So I used ...
1
vote
1answer
22 views

I can not download a blob from GAE BlobStore

What is wrong with this code? I can not download a blob following the download url sent as response of the UploadHandler. I am getting a 404 response from the server. I have doubts about how to send ...
1
vote
0answers
35 views

How to create custom model for the facebook api

Context: Facebook graph API , Django, Python 2.7 I want to use the facebook graph api in python (that's ok) , and I'am curently learning this language. I want to generate response automaticaly from ...
0
votes
0answers
6 views

adding contrast to an image in python

I am trying to work through a process where I take an astronomical fits file, subtract a masterflat file and then later the contrast on the resultant image. The first part has been done successfully ...
1
vote
1answer
18 views

Why does GASP work properly only when induced in terminal?

I typed the following commands into terminal: br@wind:~$ python Python 2.7.3 (default, Aug 1 2012, 05:16:07) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more ...
0
votes
1answer
13 views

django-tastypie REST update or delete resource with username

Hi there i am using django tastypie and i can update (PUT) a resource if i provide an id like this : http://mysite.com:8000/api/v1/user/1/ But my question is, can i do an update without the id ...
1
vote
3answers
44 views

Python division operator acting strange when operands are negative

I accidentally stumbled upon a strange behavior in python. Typing this peace of code in repl. In [29]: 7 /-3 Out[29]: -3 Can find nowhere any reasonably explanation for this result. What is ...
-1
votes
0answers
11 views

Want to use lxml XPATH intead of this shiity lengthy code

if all.nodeName == 'p:cSld': new2 = all.childNodes for all1 in new2: if all1.nodeName == 'p:spTree': ...
-1
votes
2answers
37 views

How can I find object with Selenium?

Thats my code, I was changing, fixing, trying another modules, but still can not get a respond with my div text extracted. import selenium from selenium import webdriver driver = ...
0
votes
0answers
15 views

Python: parsing files separated by tabs and spaces

I have some files to parse which are poorly formatted. One of the issues I face is that the fields in the file are separated by spaces, tabs or spaces & tabs. Could someone explain how I can ...
0
votes
0answers
13 views

openstack-nova dose not send logs to syslog facility specified

I want to nova to send its logs to rsyslog for later use. I just add some configurations to /etc/nova/nova.conf use_syslog = True syslog_log_facility = LOG_LOCAL1 verbose = False debug = False I ...
0
votes
1answer
45 views

How do I write a compare function?

def compare(a, b): """ Return 1 if a > b, 0 if a equals b, and -1 if a < b >>> compare (5, 7) 1 >>> compare (7, 7) 0 >>> compare (2, 3) ...
0
votes
0answers
17 views

How to open an url on android through pygame

I want to open an url from my application running on android. I am using pygame subset for my application. There is one button on my app which, if clicked, will open an url in an android browser. ...
0
votes
0answers
14 views

How to fill external memory/SD Card of an android device using python

I am trying to fill the external micro SD Card of an android device using python, but no luck. I need options such as passing an argument such as 300mb or 500mb, and memory gets filled upto that ...
-1
votes
2answers
69 views

Can this Python function to test for prime numbers be extended to higher numbers? [closed]

Here's the relevant code, using a Sieve of Erasthones method (the last part of a larger function with argument x): sieve = [num for num in range(2, int(sqrt(x)) + 2)] count = 0 for item in sieve: ...
2
votes
1answer
35 views

threading.Timer()

i have to write a program in network course that is something like selective repeat but a need a timer. after search in google i found that threading.Timer can help me, i wrote a simple program just ...
0
votes
1answer
27 views

How to executes cmd command using Python on Win 7 with admin

in python, i want to executes cmd command: os.system("netsh interface set interface \"Local Area Connection\" disable") to disconnect internet network. But, with my account, it report, interface ...
0
votes
1answer
22 views

Many to one relation not working in fields.selection() in openerp

I need to create a selection field in openerp , it's values should load from a function and also this field needs many2one relation with another table.I have created the selection field and values are ...
0
votes
2answers
31 views

If line not present in the text file - python

I have a list with a set of strings and another dynamic list: arr = ['sample1','sample2','sample3'] applist=[] I am reading a text file line by line, and if a line starts with any of the strings in ...
-3
votes
0answers
56 views

1000th prime using functions in Python that's not working

I made a function to find primes, and I looked at videos and google but just can't quite figure out how to make this filter option work. It works up to 1000, but I'm trying to find the 1000th prime ...
0
votes
0answers
14 views

pygame.error: File is not a Windows BMP file

Running: Mac OSX mountain Lion 10.8.3 Python 2.7 Pygame 1.9.2 I have a simple python pygame program that displays an image on the screen, this works great when I run it in my IDE. The problem comes ...
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
30 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
58 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
119 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
55 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
27 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
19 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
24 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
35 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 ...

1 2 3 4 5 137