Tagged Questions
Python is a dynamically and strongly typed programming language whose design philosophy emphasizes code readability. Two significantly different versions of Python (2 and 3) are in use. Please mention the version that you are using when asking a question about Python.
0
votes
0answers
7 views
Python 2.7 - statsmodels - formatting and writing summary output
I'm doing logistic regression using pandas 0.11.0(data handling) and statsmodels 0.4.3 to do the actual regression, on Mac OSX Lion.
I'm going to be running ~2,900 different logistic regression ...
0
votes
1answer
11 views
Python: Iterate alphabetically over OrderedDict
In a script I have an OrderedDict groups that gets fed key/value pairs alphabetically.
In another part of the script, I'm checking against files that have the same same as key like so:
for (key, ...
0
votes
1answer
4 views
Error trying to insert data into postgres using flask python on heroku
Here is my python code hosted on heroku
import os
from flask import Flask
from flask.ext.sqlalchemy import SQLAlchemy
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = ...
4
votes
4answers
39 views
How can I import a string file into a list of lists?
Basically I have a text file:
-1 2 0
0 0 0
0 2 -1
-1 -2 0
0 -2 2
0 1 0
Which I want to be put into a list of lists so it looks like:
...
0
votes
0answers
6 views
matplotlib forcing pan/zoom to constrain to x-axes
Matplotlib has a feature where if you hold down the "x" or "y" keys it constrains panning or zooming to the corresponding axis.
Is there a way to cause this to be the default? For some reason my CPU ...
0
votes
1answer
23 views
MapReduce solution in python to identify asymetric pairs
I am attempting to write a Mapper and Reducer in Python, a language I am new to, that will print asymmetric key value pairs. For example:
Input
A,B
B,A
C,B
B,C
D,E
E,F
F,E
D,B
Output
D,E
D,B
0
votes
1answer
10 views
How to watch a file for modifications OS X and Python
I'm working on a small game with a physical interface that requires me to write a character to the serial port with python every time a particular file in a directory is modified. The file in question ...
0
votes
0answers
6 views
Object scope with Pygame Surfaces
I am familiar with variable scope. For example, with this code, variable 'a' is not returned from the function, and thus the variable 'a' is not affected in the main function.
def double(number):
...
0
votes
1answer
26 views
Fastest way to convert a dict's keys & values from `str` to `unicode`?
I'm working with a counter from collections import Counter
and I want to print it's values using matplotlib.pylot
when I try to do it using
plt.bar(range(len(cnt)), cnt.values(), align='center')
...
0
votes
0answers
23 views
Python sub-classes
I have this class which works with fractions (e.g. (1,2), (3,4) etc):
class Fraction(object):
def __init__(self, num=0, denom=1):
''' Creates a new Fraction with numberator num and ...
0
votes
2answers
40 views
Pulling text out from a String Python
I am trying to make something that will read a web page and then from there get the contents and search for something inside the web page and just copy that only. I don't know how to make it only copy ...
0
votes
0answers
4 views
stale content types while syncdb in Django
While I'm trying to syncdb for my django project, I'm seeing following complains:
The following content types are stale and need to be deleted:
reviews |
Any objects related to these content types ...
0
votes
0answers
7 views
Reversing the axis range in 3D graph in python
I am new to python , so help me to overcome this problem.
I have plotted a 3D graph using some random points.
After plotting i got a graph
But to get the desired graph , i need to reverse the Y axis.
...
0
votes
0answers
7 views
Unable to run the default python app after installing Google App Engine
I see the following error in the log file:
Exception in thread Thread-1:
Traceback (most recent call last):
File "threading.pyc", line 486, in __bootstrap_inner
File "launcher\taskthread.pyc", ...
0
votes
0answers
8 views
error importing Dajaxice 'no module named “Dajaxice”'
I have followed this tutorial several times and double and triple-checked that I did it correctly:
http://django-dajaxice.readthedocs.org/en/latest/installation.html
I am using Windows and have ...
2
votes
0answers
15 views
Python: Check mp3 file is not corrupted
I wrote a small python script that's monitor user music library and add new files info (mp3, aac, flac) to sqllite db.
If user download music from torrents, how can i check that it is fully ...
0
votes
0answers
7 views
How to upload the django-1.5 application in google app engine?
I have uploaded the my sample CRUD application in google app engine. But it riased error as shown below,
Traceback (most recent call last):
File ...
2
votes
1answer
7 views
Shelve module in python not working: “db type cannot be determined”
I am trying to make a simple password-storing program in Python, and it seems pretty simple so I am wondering if I am using shelve wrong.
I have the main .py file:
import shelve
passwords = ...
0
votes
1answer
13 views
How to convert a vector to a set of points?
I'm experimenting with Python and OpenCV detecting objects. I got a vector from cv2.CascadeClassifier.detectMultiScale(image), and now I want to draw that rectangle to my image, how do I convert that ...
1
vote
5answers
68 views
Operating on members of a list
I have a list of numbers.
L1=[12,32,21,......]
I need to execute the following test on each member,tolerating upto 2 failures-no more.
NOTE : The function is ILLUSTRATIVE( not actual )- the ...
0
votes
1answer
12 views
Python Pandas - Removing Rows From A DataFrame Based on a Previously Obtained Subset
I'm running Python 2.7 with the Pandas 0.11.0 library installed.
I've been looking around a haven't found an answer to this question, so I'm hoping somebody more experienced than I has a solution.
...
0
votes
1answer
17 views
How Do You Pass New URLs to a Scrapy Crawler
I would like to keep a scrapy crawler constantly running inside a celery task worker probably using something like this. Or as suggested in the docs
The idea would be to use the crawler for querying ...
0
votes
0answers
41 views
Algorithm required for implementing Python Code
I have multiple lists of variables. Every list contains the variables corresponding to a single/unique entity.
listVar_Entity1 = [var1, var2, var3, var4]
listVar_Entity2 = [var5, var6, var7]
...
0
votes
0answers
15 views
how to get index in numpy using ufunc
numpy is great,and ufunc and use to calculate on every item.
I want to calculate some data on the item,the calculate based on the neighbor of the item,so I want to get the item value and the ...
0
votes
0answers
24 views
asynchronous call in python
I am trying to call a function from my ui thread which fetches data from database. This takes a lot of time and I am trying to keep the ui responsive during this time.
I am using the following code:
...
0
votes
1answer
10 views
Performing Euclidean Distance Measure on Documents (i.e., text) Using Sci-Kit
I'm new to machine learning. After a lot of research, I've decided to use Sci-Kit Learn as much as possible in my efforts. But I'm still at square one.
What I would like to do is perform a ...
-5
votes
0answers
18 views
Define a function that calculates the value of Euler's number as a sum of first 10 terms of the infinite series [closed]
Define a function that calculates the value of Euler's number as a sum of first 10 terms of the infinite series. You may define additional functions as needed.
def e_number():
e = (1 + 1 / 10)**10
...
0
votes
0answers
6 views
White gridlines over image using JES (python)
How can I write a program using JES to draw “White” gridlines on an image where the horizontal
gridlines are separated by 10 pixels and the vertical gridlines are separated
by 20 pixels?
0
votes
1answer
13 views
Random tk window opens when trying to use a save dialogue from tk in pygame
Whenever I click the save button on my app, it opens a save dialogue that works correctly and a tkinter window that crashes as soon as I try to close it. Here is my code that somehow makes the random ...
0
votes
0answers
7 views
cx_Freeze throws Missing Modules error
I'm aware that these aren't always crucial. However, in my case, when I try to run the program it fails. The error is:
Missing modules:
? ElementC14N imported from xml.etree.ElementTree
? OpenSSL ...
1
vote
0answers
19 views
Formatting a 2d list, read in from file
Using python 2.7, I can read multiple csv's in from list of file names with this...
empty = []
for i in items:
with open(i) as file:
reader = csv.reader(file, dialect='excel')
for ...
0
votes
0answers
10 views
how to update a listbox in one window in one class using a different class python
what i have is a window that opens up and it has a list box. this is created using one class. when i click the search button and results are found using a different class, i want the list box to ...
0
votes
0answers
20 views
Python Find IP and upload to FTP
I've been trying to write a simple script to grab my ip and upload it to an ftp server. I can do it if i use just use a simple string but im struggling at uploading the IP address. Im thinking ...
0
votes
0answers
8 views
Python & Ctypes populate an array of structures
I have the following code:
lib.h
struct Node {
int index;
char name[10];
};
void getAllNodes(Node array[]);
libtest.py
from ctypes import *
class Node(Structure):
_fields_ = ...
4
votes
5answers
57 views
Store reference to primitive type in Python?
Code:
>>> a = 1
>>> b = 2
>>> l = [a, b]
>>> l[1] = 4
>>> l
[1, 4]
>>> l[1]
4
>>> b
2
What I want to instead see happen is that when I ...
0
votes
1answer
17 views
Calling a superclass method from a subclass in python
I was wondering if a subclass could call its parent static method, and tested it : it works like I hoped!
class A(object):
@classmethod
def static(cls):
print('act on '+cls.__name__)
...
-8
votes
1answer
37 views
Define a function that takes a dictionary as an argument,prints names of all students whose grade is at least 15% above the average of the class [closed]
Would someone write this script in python 3.x ASAP.
Define a function good_students(roster) that takes a dictionary of students in the following format: {name: grade[, name: grade]} as an argument ...
-3
votes
0answers
44 views
Regular Expressions, how to do the MATCH ONLY ONE [closed]
There are three group-references files.
You need to make a regular expression that will match every line in group-references-1 and no lines in group-references-2 or group-references-3.
Can we do it ...
2
votes
1answer
22 views
How to tell if a key has been released in tkinter
I am using this code to test whether a key has been pressed, but I also need a binding that is called when a key is released. If no such binding exists, I would settle for a bit of code that ...
0
votes
0answers
18 views
uWSGI error: "Error opening file for reading: Permission denied'
I am experiencing the exact same error described here:
http://s8700.socode.us/question/508147944f1eba38a44e650f
uWSGI keeps throwing me "Error opening file for reading: Permission denied" in the ...
1
vote
0answers
15 views
Where are the python-native objects for SQL-Alchemy?
In an ORM I would expect to be able to do this:
session.add(Lake("hello",Polygon([(0,0),(1,0),(1,1)])))
lake = session.get(Lake).first()
assert isinstance(lake.geometry, Polygon)
assert ...
1
vote
1answer
15 views
Numpy - Dot Product of a Vector of Matrices with a Vector of Scalars
I have a 3 dimensional data set that I am trying to manipulate in the following way.
data.shape = (643, 2890, 10)
vector.shape = (643,)
I would like numpy to see data as a 643 length 1-D array of ...
4
votes
1answer
21 views
How can I set the mouse position in a tkinter window
I have a 3d rendering program that rotates the world around an observer based on the position the mouse is on the screen. The amount in radians that the world is rotated is defined by this line
...
0
votes
0answers
14 views
Django & Heroku: Import error on installed app only when DEBUG=False & on heroku
I recently installed django-notification-1, see code here if necessary. When I run my app on my local development server with DEBUG=True or DEBUG=False everything works fine. On heroku with ...
1
vote
1answer
16 views
Proxy connection with Python
I have been attempting to connect to URLs from python. I have tried:
urllib2, urlib3, and requests. It is the same issue that i run up against in all cases. Once I get the answer I imagine all ...
1
vote
2answers
24 views
urllib2 works where request doesn't
EDIT: Solved! See below.
I'm a recent convert to using the requests library for python. However, I'm encountering a situation where urllib2 works and requests doesn't.
import requests, urllib2
url = ...
1
vote
1answer
30 views
Repeated measures transform in Pandas
Let's say I have data set from a repeated measures study, which looks like this:
control dose_high dose_low gender participant
0 4 6 4 m 1
1 3 ...
0
votes
1answer
13 views
Split PDF into pages with PHP exec() using Python stapler tool
A PHP-based website I'm working on requires splitting PDF documents into single pages.
Having searched far and wide I have finally settled on using Stapler (https://github.com/hellerbarde/stapler), a ...
0
votes
1answer
19 views
Multiple moving shapes in pygame?
I am a very very beginner programmer, and I am trying to make my first game in pygame. I want to have enemies that spawn every so often and move around randomly. When the hero (controlled by the ...
0
votes
1answer
8 views
How can I make Scrapy issue a callback properly?
I'm currently trying to work with the Scrapy framework to simply collect a bunch of URLs that I can store and sort later. However, I can't seem to get URLs to print or be stored in a file on callback, ...

