In the Python in the 2.x series Python 2.7 is the latest, and last, major release.
5
votes
2answers
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 ...
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
75 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
2answers
488 views
Google App Engine Python 2.7 + lxml = Unicode ParserError
I am trying to use BeautifulSoup v4 to parse a document. I call BeautifulSoup on note.content, which is a string returned by Evernote's API:
soup = BeautifulSoup(note.content)
I have enabled ...
5
votes
1answer
523 views
Deadlock in Python's subprocess popen
I'm having a problem where popen is deadlocking. Specifically, the thread (not the main thread) that runs the popen is stuck at:
File: "/usr/lib/python2.7/subprocess.py", line 679, in __init__
...
5
votes
1answer
228 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
235 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
656 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
486 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
93 views
Using mutually exclusive between groups
I'm trying to have a mutually exclusive group between different groups:
I have the arguments -a,-b,-c, and I want to have a conflict with -a and -b together, or -a and -c together. The help should ...
5
votes
1answer
111 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
1answer
201 views
Read Matlab matrix into Python
When I'm trying to read a Matlab matrix into python, I get the following error
>>> scipy.io.loadmat("Dynamical.mat")
Traceback (most recent call last):
File "<stdin>", line 1, in ...
5
votes
2answers
169 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
96 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
3answers
202 views
How to convert in OpenERP from one chart of account to another?
I have installed chart of accounts A for company1. This chart was used couple months for accounting. How can I convert into chart of accounts B and keep old data for accounts (debit, credit, etc.)? In ...
4
votes
4answers
236 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
188 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
2answers
6k 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
5answers
5k 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
514 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
648 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
4answers
190 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
262 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
3answers
69 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 ...
4
votes
8answers
372 views
How to randomly generate decreasing numbers in Python?
I'm wondering if there's a way to generate decreasing numbers within a certain range?
I want to program to keep outputting until it reaches 0, and the highest number in the range must be positive.
...
4
votes
2answers
91 views
Is there a way to detect when a python program is going to end?
Is there a way to detect when a python program is going to end? Something like a callback I can connect to?
I have a class thats keeping a cache and I'd like to write the cache out to disk before the ...
4
votes
2answers
104 views
Python - printing to more than one output [duplicate]
Possible Duplicate:
How do I duplicate sys.stdout to a log file in python?
Is it possible for Python print command or other Python command to print a string to two destinations? For ...
4
votes
2answers
90 views
Python equivalence of default in C#
Is there a way in python to get a types default value?
//C#
default(typeof(int))
I am looking for a more pythonic way to get type defaults?
#python
if(isinstance(myObj, int):
return 0
...
4
votes
2answers
57 views
Converting string to ordered dictionary?
I have a string which basically contains a bunch of JSON formatted text that I'd ultimately like to export to Excel in "pretty print" format with the proper indentations for nesting, etc.
It's ...
4
votes
5answers
448 views
Dice generator using class in Python
Update
Someone is probably going to drop the hammer on me for posting this way but there's not enough room in comments to cover this and they specifically tell you not to answer your own question with ...
4
votes
5answers
406 views
How to capitalize some words in a text file?
I have a text file which have normal sentences. Actually I was in hurry while typing that file so I just capitalized the first letter of first word of the sentence (as per English grammar).
But now I ...
4
votes
1answer
458 views
How to make SQLAlchemy in Tornado to be async?
How to make SQLAlchemy in Tornado to be async ?
I found example for MongoDB on async mongo example but I couldn't find anything like motor for SQLAlchemy. Does anyone know how to make SQLAlchemy ...
4
votes
2answers
166 views
Python 2.x - default arguments with *args and **kwargs
In Python 2.x (I use 2.7), which is the proper way to use default arguments with *args and **kwargs?
I've found a question on SO related to this topic, but that is for Python 3:
Calling a Python ...
4
votes
2answers
548 views
Is it safe to use the python word “type” in my code?
Can I use the word "type" in my own code or is it reserved? My function header:
def get(
self,
region='Delhi',
city='Delhi',
category='Apartments',
type='For sale',
limit = 60,
...
4
votes
2answers
53 views
Overwritten Methods don't contain self?
Here is an example I just played through on my machine:
$ python
Python 2.7.4 (default, Apr 19 2013, 18:28:01)
[GCC 4.7.3] on linux2
Type "help", "copyright", "credits" or "license" for more ...
4
votes
3answers
61 views
How to copy a list which will not be changed in function call in Python
I was working on these functions (see this):
def removeFromList(elementsToRemove):
def closure(list):
for element in elementsToRemove:
if list[0] != element:
...
4
votes
2answers
127 views
What do the three arrow (“>>>”) signs mean in python?
So this is probably a dumb question, but I have now been googling for quite some time, and I haven't been able to figure out what they do. I see then often in sourcecode, but I just can't figure out ...
4
votes
2answers
2k views
ImportError: cannot import name MAXREPEAT with cx_Freeze
I'm running into an issue with cx_Freeze when running a frozen application (works fine unfrozen).
When running the program it results in the following traceback:
Traceback (most recent call last):
...
4
votes
3answers
110 views
Index of item in a list of lists of lists (Python)
I am trying to find the index of a letter in the following list of lists of lists:
For example:
>>> alphabet = ...
4
votes
1answer
113 views
How to store a hashtable of lists in Python (hashed by identity)?
I need to store a set of lists hashed by identity: two lists are equal iff they are the same object.
Not only does using tuples not make much sense semantically, but I also need to mutate the lists ...
4
votes
3answers
155 views
Python: Why operator “is” and “==” are sometimes interchangeable for strings? [duplicate]
Possible Duplicate:
String comparison in Python: is vs. ==
I used accidentally is and == for strings interchangeably, but I discovered is not always the same.
>>> Folder = ...
4
votes
1answer
201 views
After I read from a file then write it out again, I am getting Chinese characters
I am reading all the lines in a file and then writing them out again. When I do this, the file I have written out ends up being mostly Chinese characters. I am not modifying any of the lines at all. ...
4
votes
3answers
175 views
How do I decode unicode one line at a time in Python 2.7?
The correct way to load unicode text from Python 2.7 is something like:
content = open('filename').read().decode('encoding'):
for line in content.splitlines():
process(line)
(Update: No it ...
4
votes
3answers
112 views
Short if statement with or in Python
I have if statement
if "1111111" in players or "0000000" in players or "blablabla" in players:
do something
How to write in short ?
4
votes
4answers
829 views
Python: Recommended way to walk complex dictionary structures imported from JSON?
Importing from JSON can get very complex and nested structures.
For example:
{u'body': [{u'declarations': [{u'id': {u'name': u'i',
u'type': u'Identifier'},
...
4
votes
3answers
140 views
In Python with a nested dictionary should I check the type? What other approach can I use?
Disclaimer: Hello all Python masters and fans. I would like to thank everyone for their caring support and dear advises which helped me so much. I am a Python newbie who is trying to learn and advance ...
4
votes
3answers
233 views
Why do Python's @staticmethods interact so poorly with decorated classes?
Recently, the StackOverflow community helped me develop a fairly concise @memoize decorator that is able to decorate not only functions but also methods and classes in a general way, ie, without ...
4
votes
5answers
3k views
Create 3D array using Python
I would like to create a 3D array in Python (2.7) to use like this:
distance[i][j][k]
And the sizes of the array should be the size of a variable I have. (n*n*n)
I tried using:
distance = ...
4
votes
2answers
478 views
How to profile Google App Engine python27 runtime (not python)
How to profile python code under Google App Engine runtime python27?
In runtime python it was done by this code - python runtime:
from google.appengine.ext import webapp
class ...
4
votes
2answers
512 views
Working around Python bug in different versions
I've come across a bug in Python (at least in 2.6.1) for the bytearray.fromhex function. This is what happens if you try the example from the docstring:
>>> bytearray.fromhex('B9 01EF')
...


