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.

learn more… | top users | synonyms (2) | python jobs

10
votes
0answers
447 views

MVVM pattern with PySide

I've been trying to find a way to implement MVVM with PySide but haven't been able to. I think that there should be a way to create Views from ViewModels with QItemEditorFactory, and to do data ...
7
votes
0answers
102 views

Parallel application in python becomes much slower when using mpi rather than multiprocessing module

Lately I've observed a weird effect when I measured performance of my parallel application using the multiprocessing module and mpi4py as communication tools. The application performs evolutionary ...
7
votes
0answers
269 views

PyQt4 & Windows 7 Thumbnail Toolbar

How can I add some thumbnail toolbar buttons to a QMainWindow with PyQt4, without using native code (ctypes and similar are fine, but not creating a DLL from another language)? I'd prefer a solution ...
7
votes
0answers
347 views

django-mutant creating models in django-admin

I started experimenting with django-mutant 0.0.2 (on django 1.4.2), but due to the lack of documentation I got almost nowhere. The way I understood by the project description I could use it to create ...
6
votes
0answers
246 views

Can't set value with tkinter/python script when using cxfreeze

I have written a program in Python with a tkinter GUI front-end. When this is run from the script there are no issues. I packaged it using cx_freeze to an exe file and running it from there works for ...
6
votes
0answers
904 views

Python TK with MVC pattern

I need a basic example where MVC pattern is used with Python TK. I have made a Python TK code , however I would like to transform it into an MVC pattern.
5
votes
0answers
71 views

Periodogram in Octave/Matlab vs Scipy

I am porting some matlab code to python using scipy and got stuck with the following line: Matlab/Octave code [Pxx, f] = periodogram(x, [], 512, 5) Python code f, Pxx = signal.periodogram(x, 5, ...
5
votes
0answers
63 views

Cassandra 1.2 inserting/updating a blob column type using Python and the cql library

Intro I have a blob column on a Cassandra 1.2 column family, the table is defined as follows: CREATE TABLE objects ( id text, obj blob, PRIMARY KEY (id) ); The problem: The ...
5
votes
0answers
108 views

Render a mayavi scene with a large pipeline faster

I am using mayavi.mlab to display 3D data extracted from images. The data is as follows: (1) 3D camera parameters as 3 lines in the x,y,x direction around the camera center, usually for about 20 ...
5
votes
0answers
101 views

numpy distutils — Try to compile something and set flags if you fail

One common way to build source code on *NIX platforms is to use a configure script. Under the hood, configure tries to build a bunch of test programs to determine which libraries you have accessible. ...
5
votes
0answers
179 views

Using the buffer API in Cython

I'm working in with a C library that repeatedly calls a user supplied function pointer to get more data. I'd like to write a Cython wrapper in such a way that the Python implementation of that ...
5
votes
0answers
234 views

dev-server HTTP Error 403: Forbidden

After updating from 1.7.5 (where everything worked fine) I'm getting a HTTP Error 403: Forbidden when trying to open any sites via localhost. Strange thing is I have pretty much the same setup at home ...
5
votes
0answers
870 views

Android's MonkeyRunner occasionally throws exceptions

I am running an automated test using an Android emulator driving an app with a Monkey script written in Python. The script is copying files onto the emulator, clicks buttons in the app and reacts ...
5
votes
0answers
377 views

Google App Engine: Error in bulkloader.yaml

I am currently trying to download and exports tables from a Google App that I inherited. I am using their Python Framework. Here are the relevant lines in the bulkloader.yaml file: - kind: KindName ...
4
votes
0answers
32 views

assertion error with np.load following numpy.savez

I have 5 numpy arrays a,b,c,d and e all defined as: array([1, 2, 3, 4, 5, 6, 7, 8, 9]) I am saving these arrays like so: np.savez_compressed('tmp/test',a=a,b=b,c=c,d=d,e=e) This results in a ...
4
votes
0answers
18 views

MITMProxy poor performance

Seeing very poor performance while using MITMProxy in Python. We are custom forwarding requests using the requests Python library. Our program uses the script mode on MITMProxy to create a custom ...
4
votes
0answers
27 views

How to properly forward requests through proxies with MITMProxy?

Trying to use MITMProxy to do custom forwarding to requests made from the Firefox browser, so that they go through one of several proxies selected at runtime. It is performing too slow for our ...
4
votes
0answers
39 views

Is there a CLI to tail logs from AWS Elastic Beanstalk

Is there a CLI utility for tailing logs from Elastic Beanstalk applications. Specifically a python flask application. You can use their eb CLI to get a snap shot ... eb logs But I would like to ...
4
votes
0answers
40 views

Python - cql - Cassandra 1.2 - rpc timeouts when reading

I have a Python application using a Cassandra 1.2 cluster. The cluster has 7 physical nodes using virtual nodes, and a replication factor of 3 for 1 of the keyspaces and replication factor of 1 for ...
4
votes
0answers
75 views

Custom Authentication for Google Cloud Endpoints (instead of OAuth2)

We are super excited about App Engine's support for Google Cloud Endpoints. That said we don't use OAuth2 yet and usually authenticate users with username/password so we can support customers that ...
4
votes
0answers
34 views

Python + Cassandra 1.2 automatic table creation

Intro I'm writing an application in Python using a Cassandra 1.2 cluster (7 nodes, replication factor 3) and I'm accessing Cassandra from Python using the cql library (CQL 3.0). The problem The ...
4
votes
0answers
154 views

CREATE TRIGGER sys_exec and python

my python on /usr/esercizi/ is: #!/usr/bin/python import datetime now = datetime.datetime.now() aa = now.strftime("%Y-%d-%m %H:%M | %S") out_file = open("/usr/esercizi/test.txt","w") ...
4
votes
0answers
75 views

QApplication is not running in main thread when building PySide app bundle with py2app

I am having problems building my PySide Python app using py2app (for OS X). It appears that something funny happens with threads on the app bundle. Here is the minimal example from PySide.QtCore ...
4
votes
0answers
102 views

Tweepy 2.0 hanging on ssl do_handshake()

I have a long running Twitter scraping script that occasionally hangs with stack traces ending in "/usr/lib/python2.7/ssl.py", line 305: self._sslobj.do_handshake() My question is "why?" and "what ...
4
votes
0answers
147 views

How to get the created filename when a user uploads a file to Google Cloud Storage?

When a user uploads an image to Google Cloud Storage, I need to get the filename (hashed name in the Cloud, not user's filename) to be able to delete the file after. I've read the issue: ...
4
votes
0answers
89 views

Does Mayavi “Font Size” text property work?

Is there a bug in the Mayavi font rendering that prevents changing the font size? I am using the Mayavi2 GUI to change the font size of the axis labels on a volumetric plot. To get there I go to: ...
4
votes
0answers
285 views

Imgur API not changing description of existing image

I'm using requests in Python 2.7 to try to change the description of a previously uploaded image using the API. In accordance with Imgur's API manual I used this: r = ...
4
votes
0answers
265 views

Python selenium webdriver tests causing “serious error” when run in large batches on windows XP

We run a bunch of Python test scripts on a group of test stations. The test scripts interface with hardware units on these test stations, so we're stuck running one test script at a time per station ...
4
votes
0answers
143 views

Python does not detect soundtouch elements (bpmdetect and pitch) in gst-plugins-bad

I have installed gstreamer, gst-plugins-bad and its python bindings. The following code selects a song from a given directory and plays it. import pygst pygst.require("0.10") import gst import ...
4
votes
0answers
860 views

Python PyAudio installation problems (with PortAudio)

I'm trying to write a program to record information from my computers microphone an save it to a file. PyAudio seems like one of the better packages for doing this, and they even have a binary for ...
4
votes
0answers
703 views

WebRTC via Websockets on python

I'm trying to port this app to python gevent-websocket server without node.js server. class WebSocketApp(object): def __call__(self, environ, start_response): ws = environ['wsgi.websocket'] ...
4
votes
0answers
518 views

Using FieldList and FormField with wtforms

We have the following forms and we are trying to create list of GroupRoleForms for each group. class FullNameMixIn(): full_name = TextField( 'Full name', [ ...
4
votes
0answers
690 views

What setup is need to compile rpy2 on Windows?

I've been able to install rpy2 v2.0.8 from the .msi from source forge, but I'd like to use the latest version that includes the packages code, i.e. v2.1.9. I'm attempting to compile rpy2 in windows ...
4
votes
0answers
93 views

GLXBad Drawable error

When i run a python script ...... I get this error after installing all dependencies.... "The program 'python2' received an X Window System error." What are the possibilities? Link to the python ...
3
votes
0answers
36 views

Using Python's multiprocessing module together with the cvxopt package

I just came across an issue with the cvxopt package for convex optimization, which I didn't find mentioned in the documentation. I wonder if anybody knows what causes it and how to best work around ...
3
votes
0answers
38 views
+50

Can't delete row from SQLAlchemy due to wrong session

I am trying to delete an entry from my table. This is my code for the delete function. @app.route("/delete_link/<link_id>", methods=['GET', 'POST']) def delete_link(link_id): link = ...
3
votes
0answers
54 views

Pandas and Google Analytics

I have been using Pandas for accessing and analysing my Google analytics data for several months however yesterday my code failed and I'm not sure why. Even using the most basic example (as given in ...
3
votes
0answers
73 views

Python and Numba for vectorized functions

Good day, I'm writing a Python module for some numeric work. Since there's a lot of stuff going on, I've been spending the last few days optimizing code to improve calculations times. However, I have ...
3
votes
0answers
28 views

Scipy.optimization finding unknown parameters between two sets of data describing the same rotation

I have two sets, R1 and R2, of data which both represent the same rotations in different coordinate systems. They are not equally sampled, so I have alot more samples in R1 than R2 for the same time ...
3
votes
0answers
25 views

Using Temporary files in Django Celery Results

I'm using a celery task to generate PDF and Excel exports for user data. These tasks build the temporary files. Here's the problem. I'm using NamedTemporaryFile objects, which automatically delete ...
3
votes
0answers
54 views

Performance difference between IDLE and command line. Where IDLE is performing better

I have an odd problem. According to posts like this one I would expect IDLE to be slower than running my code on command line. However, I see the complete opposite. The program compares two files ...
3
votes
0answers
52 views

Python's IDLE behavior while defining fractional default values to function parameters

I've defined a function that receives an optional parameter, using a fractional default value: def foo(x=0.1): pass Now when typing foo( in the IDLE shell, the tool-tip that pops out to help me ...
3
votes
0answers
57 views

ZeroDivisionError when using scipy.interpolate.griddata

I'm getting a ZeroDivisionError from the following code: #stacking the array into a complex array allows np.unique to choose #truely unique points. We also keep a handle on the unique indices #to ...
3
votes
0answers
95 views

How to solve the IOError[errno 17] file exists when opening a file?

I try to open a file for writing using the following: fh = open("testfile", "w") But, I get an exception: IOError: [Errno 17] File exists! I have write permissions and there is no race ...
3
votes
0answers
27 views

Detect python package installation path from within setup.py

After installation, I would like to make soft-links to some of the configuration & data files created by installation. How can I determine the location of a new package's installed from within ...
3
votes
0answers
85 views

Numpy: apparent memory error

Using Python/Numpy, I'm trying to import a file; however, the script returns an error that I believe is a memory error: In [1]: import numpy as np In [2]: npzfile = np.load('cuda400x400x2000.npz') ...
3
votes
0answers
86 views

Multidimensional Scaling Fitting in Numpy, Pandas and Sklearn (ValueError)

I'm trying out multidimensional scaling with sklean, pandas and numpy. The data file Im using has 10 numerical columns and no missing values. I am trying to take this ten dimensional data and ...
3
votes
0answers
60 views

Is there any documentation of numpy numerical stability?

I looked around for some documentation of how numpy/scipy functions behave in terms of numerical stability, e.g. are any means taken to improve numerical stability or are there alternative stable ...
3
votes
0answers
81 views

“AttributeError: 'NoneType' object has no attribute 'write'” when dividing two arrays element-wise

I want to divide two one-dimensional arrays element-wise. There will be divisions by zero, but I still want to do the division. The result of div/0 is irrelevant, I'll handle that later. Why does ...
3
votes
0answers
99 views

How to parallelise scipy sparse matrix multiplication

I have a large sparse matrix X in scipy.sparse.csr_matrix format and I would like to multiply this by a numpy array W making use of parallelism. After some research I discovered I need to use Array in ...

1 2 3 4 5 529