In the Python in the 2.x series Python 2.7 is the latest, and last, major release.
0
votes
0answers
46 views
Celery tasks are forgotten in PoolWorker processes
I'm working on a job queue and it seems like my celery tasks are getting forgotten in PoolWorker processes. Here's the pattern I'm using:
def register_jobs_one(celery, settings):
thing_one = ...
0
votes
2answers
255 views
Creating a progress bar/status in Python text console
I'm coding a small Python script, that checks the records of a few domains. This is how I do it:
if results.short == True:
isonlist = False
for dnsbls in L:
try:
...
0
votes
2answers
144 views
Bytearray in Python 2 is not behaving as expected
I am playing around with the bytearray type in python 2.7.3 and noticed this weird behaviour:
Passing an integer argument to its constructor creates a bytearray of size equal to the integer filled ...
3
votes
4answers
274 views
Can I implement custom indentation for pretty-printing in Python’s JSON module?
So I'm using Python 2.7, using the json module to encode the following data structure.
'layer1': {
'layer2': {
'layer3_1': [ long_list_of_stuff ],
'layer3_2': 'string'
}
}
...
0
votes
0answers
67 views
matplotlib time taken for figuire.savefig increases
I have posted this question on the matplotlib users mailing list, but thus far no one has been able to answer it, so I thought someone on this forum may have an insight into this.
I am using python ...
0
votes
1answer
50 views
Can we embedd a ComboBox or a TextCtrl on the ObjectListView of wxPython?
If this is possible, can you show some code example? Thanks in advance.
0
votes
0answers
76 views
sigar python binding
I get an error when install sigar for python.
sh autogen.sh
./configure
make
make install
cd bindings/python
python setup.py install
/home/pt/sigar/bindings/python/build/sigar_version.c:20: ...
0
votes
4answers
50 views
python program wraparound
I have the following program statement (program1.py)
I have a program 1:
try:
except:
I have another program 2 (program2.py):
def something:
print hello
is there a way when program 1 is ...
0
votes
1answer
179 views
Force download - Python
I would like to ask you, how to do force download of file from browser in Python. I have lot of pdf files, that I force downloading with PHP, to prevent opening them in browser
<?php
if ...
0
votes
0answers
59 views
How to save big class (Trie class) in python ? please tell me [closed]
How to save big class (Trie class) in python ? I really Need your idea
please answer me!
I read 60MB of text file, split each word inside file then use it to construct special tree called Trie()
I ...
0
votes
1answer
78 views
How can I extend a django admin widget so it's still optional?
I've been scouring the internet for a couple days and couldn't find anything, so I'm hoping you guys can point me in the right direction. I'm trying to customize the django admin so that a button ...
3
votes
3answers
288 views
Python Read file. Make a List per line
So im wanting to read from a file and put each line of it into a list.
Say I have a file named MyFile.txt or MyFile.csv containing the following three lines of numbers/decimals:
...
0
votes
0answers
182 views
Check for windows hidden file in python script?
There are several threads for example this one How to ignore hidden files using os.listdir()? - Python which explain how to check for hidden file using posix OS. How can I do this in windows7 using ...
-1
votes
1answer
40 views
filter output of subprocess.check_output
I'm trying to match values of a list to a regex pattern. If the particular value within the list matches, I'll append it to a different list of dicts. If the above mentioned value does not match, I ...
-3
votes
3answers
92 views
OverflowError exception not detected in python
This is my following program
try:
class __Euler3__:
n = 600851475143
primeFactors = []
for i in range(2,n):
if (n%i ==0):
primeFactors.append(i)
n = ...
6
votes
1answer
541 views
Using multiple cursors in a nested loop in sqlite3 from python-2.7
I’ve been having problems using multiple cursors on a single sqlite database within a nested loop. I found a solution that works for me, but it’s limited and I haven’t seen this specific problem ...
0
votes
2answers
78 views
Calculating an average from survey input in a django template
I'm trying to display survey results on a django template page. I wan't to be able to show the average based on specific demographics and the rating given to each category. I already save the survey ...
4
votes
1answer
194 views
How to integrate a Ipython console in a PyQT application
I am developing PyQt software for my lab. In this software, I am loading different kind of RAW and analyzed data from a mySQL database (usually in arrays).
I would like to integrate an Iython console ...
1
vote
2answers
126 views
Running from shell and iPython
Not sure how to go about an issue I have. I execute my code in through command line in format:
python program.py arg1 arg2
Which is fine in most cases, but I just got iPython and I want to launch ...
0
votes
1answer
97 views
fractional part of numpy array
I need to get only the fractional part of an array.
using numpy or simply python modf function is convenient.
In case we big arrays of positive fractional data, that can be as big as (1000000,3) for ...
1
vote
1answer
411 views
Convert mongodb return object to dictionary
I'm using the bottle framework together with mongoengine.
I have an orders model :
class OrderDetail(Option):
orderDetailsQty = FloatField()
def to_dict(self):
return ...
4
votes
3answers
173 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 ...
0
votes
1answer
187 views
How to effectively remove a line in the middle of a large file? [duplicate]
Possible Duplicate:
Fastest Way to Delete a Line from Large File in Python
How to edit a line in middle of txt file without overwriting everything?
I know I can read every line into a ...
1
vote
1answer
650 views
“Import Error: dynamic module does not define init function (init_mysql)” importing MySQLdb on OS X
I installed the mysqldb for python on mac os x, but it gives me the following error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File ...
1
vote
2answers
110 views
Paging output from print statement
I'm essentially trying to achieve this:
>>>print "SOME_VERY_LONG_TEXT" | more
Of course, it doesn't work in Python 2.7(IDLE).
Also, I tried pager 1.2's page function ...
0
votes
2answers
226 views
Backward integration in time using scipy odeint
Is it possible to integrate any Ordinary Differential Equation backward in time
using scipy.integrate.odeint ?
If it is possible, could someone tell me what should be the arguement 'time' in 'odeint.
3
votes
1answer
389 views
Can't access Project Gutenberg raw text
I have a problem accessing the Project Gutenberg Library...
I am using Python 2.7.3.
I can access the NLTK library and work with python, but when attempting to access raw text, it doesn't allow me to.
...
3
votes
4answers
280 views
Interleave two lists of different length in python v. 2?
I am trying to write a Python function that takes two lists as arguments and interleaves them. The order of the component lists should be preserved. If the lists do not have the same length, the ...
1
vote
1answer
123 views
Preserving python dictionary order - (Continuation of python dict )
List duplicate data concatenation in python
This is in continuation of list issue but here i want to preserver the order of the dict
listData=[('audioVerify', '091;0'), ('imageVerify', ...
0
votes
0answers
207 views
python tkinter getting label to update after variable change
First and formost I'm sorry for asking a similar question twice in this short amount of time, its just that I am completely stuck and my assignment is due really soon (my fault). I'm really stuck on ...
0
votes
1answer
146 views
python tkinter blackjack game, typerror when adding two variables
This is my code:
from __future__ import division
from Tkinter import *
import tkMessageBox
import os
import subprocess
from random import randrange
from random import shuffle
from random import ...
1
vote
2answers
30 views
Regexp's end of a word
I cannot find in the python's RE module special symbol for the end of the word...
There is \b - beginning of a word, and \B - opposite of \b, which is match for the any symbol of the word except ...
1
vote
3answers
109 views
What is the best way to write a code in python to read some sample input from a “txt” files?
I know it's a very basic question but i am also a newbie in python environment. I am writing my first program (Data structure problem) where i need to read some input test cases.
Input:
The first ...
0
votes
3answers
45 views
Python function practice issue
im teaching myself python and im abit confused
#!/usr/bin/python
def Age():
age_ = int(input("How old are you? "))
def Name():
name_ = raw_input("What is your name? ")
def Sex():
...
1
vote
4answers
84 views
List duplicate data concatenation in python
i am a newbie in python and facing issue in getting this output
a = [('textVerify', 'AH', 'SELECT SERVICES'), ('textVerify', 'F7', 'test1>'),('audioVerify', '091;0'), ('imageVerify', ...
0
votes
1answer
112 views
Python pysmb fetching folders correct usage
I have a remote (Windows) server I'd like to connect to, and process some folder.
I tried to use SMBHandler unsuccessfully:
director = urllib2.build_opener(SMBHandler)
fh = ...
1
vote
1answer
79 views
when i run my code they tell me “int” objext is not callable on line 4
def fdPt(f, eps):
index = 5.0
for i in range(57):
if f(index) - index < eps:
return guess
else:
index = f(index)
return index
plse help i've ...
7
votes
4answers
643 views
List of numbers whose squares are the sum of two squares
I've just started learning Python and have started doing some problems just to help buid my skills however I am pretty stuck on this question.
Make a list containing all positive integers up to 1000 ...
0
votes
2answers
674 views
Python Tkinter Animation
Why is the animation not working? The shape doesn't move when I run the program.
from Tkinter import *
import time
class alien(object):
def __init__(self):
self.root = Tk()
...
0
votes
2answers
74 views
Django Image Resizers
Currently I am working on a project that will have users upload a picture and they should scale down to a width of 210.
What is the best way to do this?
from django.db import models
from ...
4
votes
2answers
69 views
Lambdas, callable class instances, and scoping; why doesn't it work in Python 2.7?
Can someone explain to me why the following code produces the exception it does?
>>> class CallableKlass(object):
def __init__(self, callible):
self.callible = callible
def ...
3
votes
2answers
752 views
can't install scipy on mac OS X
I have numpy and matplot installed and working properly with python 2.7, but when I use pip to install scipy, I get this error.
numpy.distutils.npy_pkg_config.PkgNotFound: Could not find file(s) ...
0
votes
0answers
26 views
Data source name not found and no driver specified by default (0)(SQLDriverConnect). Connection Python to Access [duplicate]
Possible Duplicate:
Connection error to Access database
I wrote the program on python which is connected to the Northwind.accdb database
import pyodbc
#import kinterbasdb
import ...
0
votes
1answer
448 views
Cannot import name find_packages?
This is likely a rookie error, but im in the early stages of learning python.
Running Win7 64bit
Python is 2.7.2 64bit, python runs fine from CMD prompt.
I downloaded TweetStream. and its under c:/
...
0
votes
5answers
116 views
Iterating over dictionary containing array objects in python
So I'm trying to iterate over a dictionary object in python and all I'm getting is list out of index error. Here is what my list looks like -
test_list = ...
1
vote
2answers
76 views
why is my if statement showing to be false? code not not quitting when a==0. the time is supposed to be in min/sec
i am having trouble figuring out why my timer is not reaching zero when i run it. I am trying to get the window to close when a=0 but a keeping decreasing to negative digits why please? This is my ...
-2
votes
2answers
483 views
Where's the bug in this function? [closed]
def sqrt(a):
def tryit(x):
return 0.5 * (a/x + x)
return fixedPoint(tryit(x), 0.0001)
1
vote
1answer
929 views
Python ImportError: No module named resource
I'm working with a Google App Engine project and within the project I am unable to use this import:
import resource
I receive this error:
ImportError: No module named resource
However, if I fire ...
0
votes
1answer
79 views
Read more than one line of a file
I am working on a python app to create an interface for a script(ish) visual novel framework. For now, I was able to read the file, create the labels or functions but when I read them, it just reads ...
2
votes
2answers
45 views
A function that changes the value of a list without reason
I'm stunned with this function I've written for python. I've observed that in the lower while it changes the values in the list vctor even though that list is not touched along the function. I've ...


