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

learn more… | top users | synonyms

5
votes
1answer
270 views

Numpy: equivalent of numpy.roll but only for data visualisation

Is there a way to perform a roll on an array, but instead of having a copy of the data having just a different visualisation of it? An example might clarify: given b a rolled version of a... ...
5
votes
2answers
75 views

Why does overriding __contains__ break OrderedDict.keys?

I'm subclasssing OrderedDict (Cpython, 2.7.3) to represent a datafile. __getitem__ pulls a field out of the datafile and sets it on the current instance similar to the code I've posted below. now I ...
5
votes
6answers
212 views

python unique string creation

I've looked at several other SO questions (and google'd tons) that are 'similar'-ish to this, but none of them seem to fit my question right. I am trying to make a non fixed length, unique text ...
5
votes
3answers
161 views

How to multiplex multiple blocking Python generators into one?

Consider the following pseudo code: def g_user(): while True: yield read_user_input() def g_socket(): while True: yield read_socket_input() def g_combined(gu, gs): # ...
5
votes
2answers
1k views

PyQt4 names showing as undefined in eclipse, but it runs fine

I am using Eclipse 3.7.1 with the latest PyDev add-in for Python coding. I am using PyQt4. At the top of my file I have: from PyQt4.QtCore import * from PyQt4.QtGui import * In addition, I have the ...
5
votes
1answer
52 views

How to import standard library instead of same-named module in module path

I have the following directory structure main_code.py libs/ __init__.py mylib.py time.py with main_code.py just importing mylib: from libs import mylib and mylib.py just importing ...
5
votes
3answers
132 views

3 dimensional dictionary

subjects = { 0:9,'fail': 0, 9:14, 'pass': 25, 15:17, 'merit': 40, 18:20,'Distinction': 50 } I want the dictionary above to contain 3 dimensions. user input will be between the initial ...
5
votes
2answers
329 views

deleting every nth element from a list in python 2.7

I have been given a task to create a code for. The task is as follows: You are the captain of a sailing vessel and you and your crew have been captured by pirates. The pirate captain has all of ...
5
votes
3answers
194 views

Splitting a python list by a character in each element

I have a python list with elements which are a list containing a string of a letter and number and I was wondering how I could split the list into by the character at the start of the string without ...
5
votes
2answers
62 views

memory location in unicode strings

I know someone explain why when I create equal unicode strings in Python 2.7 they do not point to the same location in memory As in "normal" strings >>> a1 = 'a' >>> a2 = 'a' ...
5
votes
1answer
716 views

Reindexing pandas timeseries from object dtype to datetime dtype

I have a time-series that is not recognized as a DatetimeIndex despite being indexed by standard YYYY-MM-DD strings with valid dates. Coercing them to a valid DatetimeIndex seems to be inelegant ...
5
votes
3answers
2k views

Convert a directory structure in the filesystem to JSON with Node.js

I have a file structure like this: root |_ fruits |___ apple |______images |________ apple001.jpg |________ apple002.jpg |_ animals |___ cat |______images |________ cat001.jpg |________ cat002.jpg ...
5
votes
2answers
2k views

Matplotlib markers disappear when edgecolor = 'none'

I'm trying to make a scatter plot of some PCA data. I do some pretty typical code: plt.plot(pca[:,0], pca[:,1], '.',ms=3, markerfacecolor = self.colors[k], markeredgecolor = 'none') I ...
5
votes
1answer
116 views

Numpy: need a hand in understanding what happens with the “in” operator

I would appreciate if somebody could help me with this (and explaining what's going on). This works: >>> from numpy import array >>> a = array((2, 1)) >>> b = array((3, ...
5
votes
4answers
85 views

Is there any way to fetch all field name of collection in mongodb?

Is there any way by which we can fetch the field(Column name) of a collection in MongoDb. Like we have in mysql as follows: SHOW columns FROM table_name Or any way to check if a particular field ...
5
votes
2answers
180 views

What response times can be expected from GAE/NDB?

We are currently building a small and simple central HTTP service that maps "external identities" (like a facebook id) to an "internal (uu)id", unique across all our services to help with analytics. ...
5
votes
1answer
103 views

No output for `python.exe -c 'print(“hello”)'`

I am trying to learn python and stumbled on what seems to be another stupid error on my part. With version 2.7.3 that I downloaded from python.org I do not get any output for a simple program with ...
5
votes
1answer
104 views

Set none if numpy array index does not exist

I have a function within a Python (2.7) class that should retrieve the values of the 'cells' around it in a 2 dimensional numpy array. If the index is out of range, I would the value should be set as ...
5
votes
1answer
326 views

SWIG and C++ memory leak with vector of pointers

I am using SWIG to interface between C++ and Python. I have created a function which creates a std::vector of object pointers. The objects that are pointed to are not important in this case. The ...
5
votes
2answers
205 views

Python: updating a large dictionary using another large dictionary

I am trying to update some values of a large dictionary using values from another dictionary where they have similar keys (the same date but in a different format). The process I'm currently using is ...
5
votes
2answers
872 views

How to create a query for matching keys?

I use the key of another User, the sponsor, to indicate who is the sponsor of a User and it creates a link in the datastore for those Users that have a sponsor and it can be at most one but a sponsor ...
5
votes
1answer
137 views

Project Euler #2 in Python

Background I am stuck on this problem: Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, ...
5
votes
1answer
156 views

Descriptors : Precendence of Attribute access through __getattribute()__

I can't understand what does the below precedence means in context of __getattribute__() special method and Descriptors I read this under the topic("Precedence") - under topic ("Desriptors") from ...
5
votes
4answers
2k views

Error: “MSVCP90.dll: No such file or directory” even though Microsoft Visual C++ 2008 Redistributable Package is installed

I'm trying to build a package from source by executing python setup.py py2exe This is the section of code from setup.py, I suppose would be relevant: if sys.platform == "win32": # For py2exe. ...
5
votes
2answers
228 views

python - memory not being given back to kernel

I have a very simple script that allocates memory, dels the only reference to a sizable object, all the while printing heapy and pidstat reports. After running the script, heapy tells me that there ...
5
votes
2answers
130 views

Why does decorating a class break the descriptor protocol, thus preventing staticmethod objects from behaving as expected?

I need a little bit of help understanding the subtleties of the descriptor protocol in Python, as it relates specifically to the behavior of staticmethod objects. I'll start with a trivial example, ...
5
votes
4answers
3k views

python 2.7 not installing matplotlib

Hi I'm trying to install matplotlib on my mac. I have lion OS X. my python version is 2.7.1 ( this is what it says when I run it from terminal) every time I install matplotlib, it promots this ...
5
votes
2answers
128 views

Windows installer built with setup.py bdist_wininst triggers RuntimeError when installing. How do I fix this?

I'm building an installation EXE for my project using setuptool's bdist_wininst. However, I've found that when I actually run said installer on a Win7-64bit machine w/ Python 2.7.3, I get a Runtime ...
5
votes
1answer
177 views

How to wrap a Python iterator to make it thread safe?

Because sometimes it's more practical than designing a solution around queues, I would like to write a simple wrapper to make an iterator thread safe. So far, I had inspiration from these topics and ...
5
votes
1answer
88 views

python dict set min_size

I'm parsing hundreds of millions of JSON records and storing the relevant components from each in a dict. The problem is that because of the number of records I'm processing, python is being forced to ...
5
votes
1answer
70 views

How do I print out only log messages for a given logger?

Currently I am doing this in my code: logger = logging.getLogger(__name__) logger.info("something happened") Then at the top of my main scripts I do this: logging.basicConfig(level=logging.INFO) ...
5
votes
1answer
218 views

Translating PHP to Python (Rest-API connection)

I am learning Python and as an exercise I tried to make a program to make transactions on bitcoin market: https://bitcurex.com. Here is an API reference: https://bitcurex.com/reading-room/API . There ...
5
votes
1answer
208 views

working with yml files in python and opencv

How can I load a yml file in Python and work with it ? I used : import cv data = cv.Load("Z:/data/xyz_00000_300.yml") But when I print data, it just gives the detail of the image like number of ...
5
votes
1answer
187 views

Is there a way to draw primitives in 3D with Python?

I want to draw 3D primitives like spheres, cylinders and planes (patches) in a 3D plot and I would like to be able to interactively rotate, translate and zoom the scene. I want to do that in Python. ...
5
votes
1answer
584 views

Sphinx autosummary “toctree contains reference to nonexisting document” warnings

I am trying to automatically create api docs for a large python codebase using Sphinx. I have tried using build_modules.py and sphinx-apidoc. With either one, I can get rst docs successfully created ...
5
votes
2answers
424 views

Best way to import python module at the root of a package hierarchy from another module in the same package

I write a package P. At the root of P there is a module m0. Somewhere inside P there are modules m1,m2,... that need to import from m0 Of course I can write in each of these modules: from P.m0 ...
5
votes
1answer
91 views

How to make datastore keys mapreduce-friendly(-er)?

Edit: See my answer. Problem was in our code. MR works fine, it may have a status reporting problem, but at least the input readers work fine. I ran an experiment several times now and I am now sure ...
5
votes
2answers
156 views

How do I retain the method attributes of the functions generated through yield in python 2.7?

I have been doing a lot of searching, and I don't think I've really found what I have been looking for. I will try my best to explain what I am trying to do, and hopefully there is a simple solution, ...
5
votes
0answers
94 views

How can you have the Python 3.x incompatibilities without executing your code? [closed]

when doing a python --help you have : -3 : warn about Python 3.x incompatibilities that 2to3 cannot trivially fix When doing python -3 hello.py , checks are done but your hello.py is executed. ...
5
votes
1answer
2k views

from django.db import utils ImportError cannot import name utils?

I am in the plain python shell and I am getting this error when trying to import my project models: from results.models import TestResult Traceback (most recent call last): File "C:\Program ...
4
votes
4answers
150 views

Delete a dictionary item if the key exists

Is there any other way to delete an item in a dictionary only if the given key exists, other than: if key in mydict: del mydict[key] The scenario is that I'm given a collection of keys to be ...
4
votes
5answers
156 views

remove list from list in python [duplicate]

Possible Duplicate: Get difference from 2 lists. Python I'm still a beginner at this, could someone give me a simplified way of doing this? I have been trying on my own and I can't figure ...
4
votes
5answers
4k views

If list index exists, do X

In my program, user inputs number n, and then inputs n number of strings, which get stored in a list. I need to code such that if a certain list index exists, then run a function. This is made more ...
4
votes
3answers
474 views

Python Dictionary return requested key if value does not exist

I am looking for an easy way to be able to get a value from a dictionary, and if its not there, return the key that the user passed in. E.g.: >>> lookup = defaultdict(magic) >>> ...
4
votes
7answers
629 views

How to combine the data from two CSV files in BASH?

I have two CSV files which use @ to divide each column. The first file (file1.csv) has two columns: cat @ eats fish spider @ eats insects The second file (file2.csv) has four columns: info @ cat @ ...
4
votes
2answers
5k views

TypeError: 'int' object is not callable

Given the following integers and calculation from __future__ import division a = 23 b = 45 c = 16 round((a/b)*0.9*c) This results in: TypeError: 'int' object is not callable. How can I round ...
4
votes
4answers
183 views

Python object deletion

a = [1,2,3,4,5] b = a[1] print id(a[1],b) # out put shows same id.hence both represent same object. del a[1] # deleting a[1],both a[1],b have same id,hence both are aliases print a ...
4
votes
5answers
233 views

Boolean operations

I'm confused on how Python evaluates boolean statements. For ex. False and 2 or 3 returns 3 How is this evaluated? I thought Python first looks at 'False and 2', and returns False without even ...
4
votes
2answers
3k views

MongoKit “ImportError: No module named objectid ” error

I get some very strange error using MongoKit: >>> from mongokit import * Traceback (most recent call last): File "<stdin>", line 1, in <module> File ...
4
votes
3answers
61 views

Reversing a string in python based on block size in python

Im trying to reverse a string based on the block size given for example "the price of food is 12 dollars" and im given a block size of 4 i want the end result to be: food of price the dollars ...

1 2 3 4 5 137