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.
9
votes
0answers
122 views
Distributing Cython based extensions using LAPACK
I am writing a Python module that includes Cython extensions and uses LAPACK (and BLAS). I am open to using either clapack or lapacke, or some kind of f2c or f2py solution if necessary. What is ...
6
votes
0answers
155 views
+100
How to get instance of socketio namespace
I'm running a gevent-socketio Django application.
I have something similar to this class
@namespace('/connect')
class ConnectNamespace(BaseNamespace):
def on_send(self, data):
# ...
...
5
votes
0answers
83 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
55 views
couldn't remove origin point in matplotlib polycollection
I have tried an example with PolyCollection from matplotlib tutorials and noticed one strange thing. I couldn't remove this points from axes origin see fig. How do I manage this?
from ...
5
votes
0answers
46 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
201 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 ...
5
votes
0answers
232 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 ...
5
votes
0answers
281 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 ...
5
votes
0answers
397 views
Can't delete cache for specific entry in Django
I'm trying to purge cache for one specific Entry when it is saved using signals.
I'm using decorators (signals and render_to) from django-annoying
@signals.post_save(sender=Artigo)
def ...
5
votes
0answers
811 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 ...
4
votes
0answers
38 views
Implementing the Waterman-Eggert algorithm
I am trying to implement the Waterman-Eggert algorithm for finding sub-optimal local sequence alignments, but am struggling to understand how to "declump" separate groups of alignments. I have the ...
4
votes
0answers
54 views
How to run multiple Selenium Firefox browsers concurrently?
Trying to run multiple processes concurrently on the same machine, which use Selenium. What would happen is something like this:
python my_selenium_process1.py &
python my_selenium_process2.py ...
4
votes
0answers
78 views
Saving a stream while playing it using LibVLC
Using LibVLC, I'm trying to save a stream while playing it. This is the python code:
import os
import sys
import vlc
if __name__ == '__main__':
filepath = <either-some-url-or-local-path>
...
4
votes
0answers
36 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
65 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
115 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 ...
4
votes
0answers
172 views
Both multiprocessing.map and joblib use only 1 cpu after upgrade from Ubuntu 10.10 to 12.04
I had some perfectly working python code which used multiprocessing module and loaded all 8 CPUs on my machine at 100%.
After I upgraded from Ubuntu 10.10 to 12.04 (the most evident thing, maybe I ...
4
votes
0answers
243 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
124 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
505 views
Python Exchange ActiveSync Library
Is anyone familiar with an Exchange ActiveSync library or open source client for python? I've done preliminary searching with little to no success. I've seen some examples for C#, but I figured I'd ...
4
votes
0answers
709 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
100 views
How to use cProfile with nosetest --with-profile?
nosetest --with-profile --profile-stats-file output
The output can't read by runsnake, because nosetest uses hotshot, if I want to generate a file that can be read with runsnake, I need to ...
4
votes
0answers
346 views
Using sparse matrices/online learning in Naive Bayes (Python, scikit)
I'm trying to do Naive Bayes on a dataset that has over 6,000,000 entries and each entry 150k features. I've tried to implement the code from the following link:
Implementing Bag-of-Words Naive-Bayes ...
4
votes
0answers
125 views
Writing OAuth provider in Python: guide + libraries?
I am looking to implement a OAuth v1 provider in Python (yes, independent of GAE and Django). The best thing I could come up with was to use this library:
https://github.com/simplegeo/python-oauth2
...
4
votes
0answers
476 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
493 views
POST-then-redirect and MethodViews
Say I have a MethodView looking like this:
from flask import jsonify, request, redirect, flash, views, url_for
from models import Provider
class ProviderAPI(views.MethodView):
def get(self, ...
4
votes
0answers
389 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 ...
4
votes
0answers
342 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
635 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
22 views
Python cql library not able to update a boolean column using query substitution
Intro
I'm using the python cql library library to access a Cassandra 1.2 database (CQL 3.0). My table contains a boolean column as follows:
CREATE TABLE test (
id text,
value ...
3
votes
0answers
39 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("test.txt","w")
out_file.write("La data di ...
3
votes
0answers
106 views
+50
How can I train a Genetic Programming algorithm onto a variable sequence of descriptors?
I am currently trying to design a Genetic Programming algorithm that analyses a sequence of characters and assigns a value to those characters. Below I have made up an example set. Every line ...
3
votes
0answers
67 views
Precise definition of float string formatting?
Is the following behavior defined in Python's documentation (Python 2.7)?
>>> '{:20}'.format(1e10)
' 10000000000.0'
>>> ...
3
votes
0answers
25 views
Serialize a Python dict into a Cassandra 1.2 column
The problem
I'm trying to save a serialized object (using cPickle) into a Cassandra 1.2 column, I'm using the python cql library. I've already tried defining the column as text (utf8 string) and ...
3
votes
0answers
33 views
Python barcode library Error
I have installed pybarcode0.6 lib in Windows 7. After installing it, I had written the following code to generate the barcode for my module:
import barcode
from barcode.writer import ImageWriter
...
3
votes
0answers
34 views
how to bundle .py files launched with execfile() on py2exe?
I'm developing a small tool on python which basically launches a set of scripts on a folder. I need to package this on a stand alone binary and I'm using py2exe for it.
My current code use ...
3
votes
0answers
57 views
Working around a big memory leak in GTK when redrawing a label
I'm using the latest release of the PyGTK All-in-One installer (2.24.2) for Python 2.7 which includes Cairo 1.10.8, Pango 1.29.4, PyGTK 2.24.0, and PyGobject 2.28.3 (I think).
The following code ...
3
votes
0answers
46 views
Local dev server crash and delete entity during a query
While querying a ndb entity with the following code
return cls.query(cls.name == name, cls.deleted == False).get()
The dev server crashes, and the entity I was querying for suddenly disappears from ...
3
votes
0answers
64 views
Canonical way in Python to add or retrieve meta information to/from docstrings?
I'd like to add some meta information to my Python modules' docstrings, such as author, email, version. Is there a canonical way to do that? I searched quite a while, but couldn't find anything with ...
3
votes
0answers
33 views
how to fix https openid error
I am using local https protocol and fake certificate .
When using django-openid-auth give me this error
OpenID failed
OpenID discovery error: Error fetching XRDS document: (60, 'server certificate ...
3
votes
0answers
90 views
Print dom when selenium misses an element I see
How to find what selenium see in a dom where it misses an image I see on screen?
Context: I have a Selenium python test
browser.wait_to_find_visible_element(By.ID, 'image')
that sometimes can't ...
3
votes
0answers
51 views
Django non-rel failing to sync db with mongo 2.4.2
I have been using Django 1.3 non-rel with django-mongodb_engine 0.4. Mongodb version being used was 1.8.2 and things were working fine. Recently i tried to upgrade to mongodb 2.4.2(latest stable) ...
3
votes
0answers
90 views
Implement zeromq publisher in django with celery (Broker redis)
i need to implement zmq publisher in django and celery with redis as a broker. But my client doesn't receive anything.
tasks.py
from celery import task
import zmq
try:
context = ...
3
votes
0answers
96 views
Optimising boost::python::object instances
I recently started using Boost's Python library to wrap parts of a rather large C++ library.
Quite by chance, I discovered that every Python object created by Boost Python, is at least bigger than ...
3
votes
0answers
125 views
Python Popen on Windows with multithreading - can't delete stdout/stderr logs
Using python 2.7.4 on Windows (Note: WinXP - a commenter below suggests this works correctly on Win7), I have a script that creates several
threads each of which runs a child process via Popen with ...
3
votes
0answers
44 views
How do I get streamlines from matplotlib into ArcGIS?
I am running matplotlib v1.2 with the streamplot.py code to plot streamlines from data in a netcdf file. The plotting is going well but I would like to view the streamlines in Arc so I have been ...
3
votes
0answers
82 views
How to modify the screen resolution on Kivy-iOS
I'm working on an app using the python/Kivy-iOS toolchain. For some reason, when I build to the iPhone5, the app doesn't run fullscreen (there's letterboxing at the top and bottom, see attached ...
3
votes
0answers
56 views
In the saved pdf plots of matplotlib some characters are in lower position
If I save a figure with matplotlib, sometimes some of the characters, like endash, ű énd ő, are in a lower position than the others. Not just in the legend, but in labels and title as well. I tried it ...
3
votes
0answers
54 views
How do I include chats in a Gmail IMAP search from Python's imaplib?
I'm happily using imaplib to get the message IDs in a specific label:
connection.select("MyLabel")
connection.uid('SEARCH', None, 'ALL'))
but if I've got some chats in that label, they aren't ...
