In the Python in the 2.x series Python 2.7 is the latest, and last, major release.
0
votes
3answers
53 views
Search function not really searching
I have the following code which is suppose to search for the letter 'e' within a string, return False if 'e' was found within the string and return True is the 'e' was not found :
def has_no_e(word):
...
1
vote
1answer
233 views
Can we query multiple tables across multiple oracle users and tabularize the rows in Django's Admin UI
Basically, I have issues working with a legacy database where the tables I am using have no proper referential integrity (like no foreign keys; just tables but 'I' know they are related by some ...
3
votes
1answer
573 views
How to set up auto-deploy to AppEngine when pushing to Git Repository
I've heard that other platforms support auto-deployment of their code to production when they push changes to their Git repository.
Can I set up something similar to this for AppEngine? How?
I'm ...
2
votes
0answers
329 views
sympy and numpy or IPython compatibility?
I found that if I have both sympy and numpy (EDIT: or IPython) installed (32-bit
windows 7), then I can only run sympy through its isympy script
file, e.g., from a git-bash console
pushd ...
2
votes
1answer
250 views
Acquire Thread.Lock takes 50% of response time in Google App Engine running Python 2.7
I'm using python27 on GAE and am looking to reduce the response time of an app.
According to cProfile, it's taking 40s (obviously too long) to run 1.6M function calls (seems very high). The only clue ...
1
vote
2answers
504 views
BeautifulSoup incorrectly parses page and doesn't find links
Here is a simple code in python 2.7.2, which fetches site and gets all links from given site:
import urllib2
from bs4 import BeautifulSoup
def getAllLinks(url):
response = urllib2.urlopen(url)
...
1
vote
1answer
346 views
How to import python modules from parent and sibling packages
This (or similar) question has been asked many times before, but none of the solutions offered work in my case.
My project structure is like this :
| project_2
main.py
__init__.py
...
2
votes
1answer
286 views
Using Beautiful Soup with accents and different characters
I'm using Beautiful Soup to pull medal winners from past Olympics. It's tripping over the use of accents in some of the events and athlete names. I've seen similar problems posted online but I'm new ...
3
votes
2answers
1k views
Better, more accurate mime type detection in Python
Python's mimetypes module isn't especially accurate and bases its results on the file extension. The only way I can think of to get a more accurate result is to call the Unix file command with ...
0
votes
2answers
84 views
Can I call a method in a superclass in a python class hierarchy without using the name of the current class
I understand that the best way to call a method in a superclass in python is to wirte:
class Foo(Bar):
def foo(self):
...
super(Foo, self).foo()
...
However, this means ...
5
votes
2answers
422 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 ...
1
vote
1answer
354 views
Python Key Error
I'm having a Python Key Error and haven't been able to sort it out.
The error that is given is shown below
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
...
7
votes
2answers
775 views
correct usage of scipy.optimize.fmin_bfgs
I am playing around with logistic regression in Python. I have implemented a version where the minimization of the cost function is done via gradient descent, and now I'd like to use the BFGS ...
1
vote
1answer
262 views
Reading large files using SQLalchemy
I am trying to read a 200 MB csv file using SQLalchemy. Each line has about 30 columns, of which, I use only 8 columns using the code below. However, the code runs really slow! Is there a way to ...
0
votes
4answers
528 views
Kivy / Python-for-android : Build.py fails to build an android package apk
I try for many days to build a simple android package using kivy and python for android. Unfortunately, I've spent many hours trying to solve all the issues but I still cannot do it. I hope you guys ...
0
votes
1answer
533 views
Python - TypeError: __init__() takes exactly 2 arguments (3 given) but I gave 2
I'm new with Python so I tried some lines of code:
class loesung02(object):
html = ""
file1 = ""
def __init__(self, html, file1):
self.html = html
self.file1 = file1
...
0
votes
1answer
452 views
My GAE python development datastore is never persisted to a file
I have just started using GAE (Python 2.7 SDK 1.6.4) , I have set up a
simple test project using Pydev (latest version) in eclipse (indigo)
on Windows XP (SP3).
It all works fine, my app can ...
0
votes
0answers
50 views
I added the permissions using the meta class… but still the permissions are not added and i cant find where is the error [closed]
in models.py :
class Employer(User):#Employer inherits from User
class Meta:
permissions = (
('permission', 'Friendly permission description'),
)
employer_verified = ...
1
vote
1answer
542 views
Creating django management commands
I want to run a command which is something like this, but the function handle (self,*args,**options) doesn't seem to execute the nested functions.
How can I include my functions inside handle()?
...
0
votes
1answer
333 views
uwsgi postfork not working
I can't seem to get my @postfork functions to run...
1 import uwsgi
2 from uwsgidecorators import *
3 from gevent import monkey; monkey.patch_all()
4 import sys
5 import umysql
6 import ...
1
vote
2answers
420 views
Storing Filtered images on the blobstore in GAE
I'm working on simple application on GAE using python2.7,the purpose for this application is to filter image that are uploaded by the users and store this image in blobstore in GAE,firstly i tried to ...
0
votes
4answers
290 views
Problems implementing a Django Custom Template Tag
I need to implement a template tag that will return a string with a collection of items from an object.
I had created the following structure:
produtos/
templatetags/
__init__.py
...
0
votes
1answer
536 views
Python - “_” Argument to functions
I am new to python and I have seen this several times:
>>> nums = [1,2,3,4,5]
>>> [(x,y) for x in nums for y in nums]
[(1, 1), (1, 2), (1, 3), (1, 4), (1, 5), (2, 1), (2, 2), (2, ...
1
vote
1answer
305 views
F2PY returns ValueError: invalid version number '4.'
I am new to Python and want to be able to use my existing Fortran code and run it from Python. I am trying to compile a small "Hello world" Fortran program using F2PY by following instructions online.
...
0
votes
1answer
58 views
Query for bit based values
I have a problem how to get values from pytables. Values are bit based, but stored as integer number.
One column in my table is Int32Column() with name 'Value'. In this column I will store integer ...
2
votes
3answers
745 views
Python Max Function
How does the max function work when items in a list are not of the same type?
For example the following code returns [1,'3']
max([1,52,53],[1,'3']) => [1,'3']
1
vote
1answer
111 views
How can I get a user's IP from a Blobstore upload handler?
I'm attempting to get the user's IP from inside of my upload handler, but it seems that the only IP supplied is 0.1.0.30. Is there any way around this or any way to get the user's actual IP from ...
1
vote
2answers
411 views
python function that returns a variable number of outputs
I want to input a table of unknown width (number of columns) and I want my function to output a list for each column. I am also outputting a list containing the names of the said lists.
I am trying ...
2
votes
8answers
2k views
ImportError while running Google App Engine test project
I am new to Google App Engine and so, I just followed the procedure to test an application which just prints "hello world".
(followed according to Google App Engine Documentation)
The project folder ...
1
vote
1answer
117 views
how to quickly check if an object is in a list in python
I have a list of objects, each of the same kind.
Each object has its own list of objects (usually just 5-10 items)
What I used to do was:
for o in main_object_list:
obj_list = ...
1
vote
4answers
2k views
'easy_install' is not recognized as an in internal or external command, operable program or batch file
I have just downloaded and installed the latest version of Python on my Windows 7 machine.
Python 2.7.3
Now I want to install a Twitter library I found online:
However when I try to run ...
0
votes
1answer
562 views
PIL Module / Could not initialize images API
I'm running OSX and Python 2.7. The app I have requires the PIL module, which gives me this error when I try to install it.
I've tried several installations but nothing seems to do the trick. How do ...
1
vote
1answer
1k views
Python asks for older paths on mac after deleting duplicate python installation
I am having the below error after a clean installation of python via brew install python. The link belongs to a previous python installation which I deleted manually.
$ virtualenv ENV
python: ...
0
votes
4answers
155 views
How to delete all text on a line appearing after a particular symbol?
I have a file, file1.txt, like this:
This is some text.
This is some more text. â‘¡ This is a note.
This is yet some more text.
I need to delete any text appearing after "â‘¡", including the "â‘¡" and ...
0
votes
2answers
629 views
Python's Django could not connect to Oracle 11g
I am a newbie to Python trying out to quickly build a site using Django.
Following are the steps I have performed (Win 7):
Installed Python 2.7
Installed Django 1.4
Created a project and app
...
1
vote
1answer
230 views
Python CMS for Etsy-like website
I am a novice in Python and would like to build a website similar to Etsy (same basic functionality, different market).
Functionality:
-User (buyer/seller) profiles
-Ability to upload pictures
...
1
vote
1answer
90 views
Restricting the number of task requests per App Engine instance
I have a Google App Engine app that periodically processes bursts of memory-intensive long-running tasks. I'm using the taskqueue API on the Python2.7 run-time in thread-safe mode, so each of my ...
6
votes
2answers
1k views
python: using io.BufferedReader on a stream obtained with open()?
I want to use a buffered stream because I want to use a peek() method to peek ahead but use my stream with another method that expects a file-like object. (I'd use seek() but may have to handle ...
1
vote
1answer
516 views
python curses terminal settings changed
I'm pretty new to curses but I wrote a working little curses application. But after a while I noticed that my default terminal settings were changed during the session. The background color is a solid ...
2
votes
1answer
606 views
gae-sessions equivalent for Python 2.7
I wonder wether there's a port for gae-sessions (https://github.com/dound/gae-sessions) for the "new" Python (2.7) on AppEngine.
Or any other comparable library.
Thank you very much.
6
votes
4answers
3k views
For a Python dictionary, does iterkeys offer any advantages over viewkeys?
In Python 2.7, dictionaries have both an iterkeys method and a viewkeys method (and similar pairs for values and items), giving two different ways to lazily iterate over the keys of the dictionary. ...
0
votes
1answer
111 views
python fabric: prevent already installed packages from being installed again
So writing a fabfile function, I attempt to automate the setup of a particular mac os x machine like this.
from fabric.api import local, env, sudo, require
def mac_port_setup():
PACKAGES = ['vim ...
1
vote
2answers
296 views
what's the fastest way to copy a folder over the network to multiple servers(Python)
As the title says, what I would like to accomplish is given a package(usually the size may vary between 500Mb and 1Gb), I would like to copy over something around 40 servers at the same ...
1
vote
2answers
447 views
How to pass member function as argument in python?
I want to pass something similar to a member function pointer. I tried the following.
class dummy:
def func1(self,name):
print 'hello %s' % name
def func2(self,name):
print ...
1
vote
3answers
711 views
most efficient way to get, modify and put a batch of entities with ndb
in my app i have a few batch operations i perform.
unfortunately this sometimes takes forever to update 400-500 entities.
what i have is all the entity keys, i need to get them, update a property and ...
0
votes
1answer
571 views
tkinter pack geometry: 1 column with 4 radio buttons in one row?
I would like to have four horizontal buttons in one column (the entire UI is one column). I can't figure out how to do this with the pack geometry manager. I have resorted to having the buttons ...
6
votes
2answers
920 views
How to pass extra arguments to python decorator?
I have a decorator like below
def myDecorator(test_func):
return callSomeWrapper(test_func)
def callSomeWrapper(test_func):
return test_func
@myDecorator
def someFunc():
print 'hello'
I ...
1
vote
2answers
525 views
how to connect to ethernet printer throught python?
How can i connect and send data to a Ethernet receipt printer Epson-T88V through python2.7, i have set the ipaddress of the Ethernet printer manually and the utility software communication is also ...
-4
votes
4answers
177 views
counting numbers beginning with 1,2, etc python 2.7
I know how to count the occurrence of a character by using str.count(sub[, start[, end]]), but is there an easy way to count words that begin with a character in a string?
b = "this is 100 111 123 ...
3
votes
1answer
589 views
AppEngine id/key/from_path is quite confusing what should I use
I am back into AppEngine development.
And I am quite hang up with the Datastorage.
I am used to "ids", building the website with links like "/view?id=322345" gets me the GuestBook entry with this id ...
