Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
8answers
3k views

__getattr__ on a module

How can implement the equivalent of a __getattr__ on a class, on a module? Example When calling a function that does not exist in a module's statically defined attributes, I wish to create an ...
3
votes
4answers
65 views

Python: Attribute Error - 'NoneType' object has no attribute 'something'

I keep getting an error that says AttributeError: 'NoneType' object has no attribute 'something' The code I have is too long to post here, but I was wondering if someone could give a gist of what ...
3
votes
2answers
225 views

django nonrel appengine problem with syncdb

I'm new to django, and still figuring out a lot of things. When I run the syncdb command of manage.py, after some of the steps have been completed, I get this: AttributeError: "'NoneType' object has ...
3
votes
1answer
242 views

Python random numbers

I can't understand the problem in python. I have such code: class Rain: def __init__(self): self.x = random.randint(0, Core.Utils.ScreenResolutionX) print ...
3
votes
2answers
897 views

Python - TypeError: unbound method

So this Python problem has been giving me problems since I've tried refactoring the code into different files. I have a file called object.py and in it, the related code is: class Object: #this is a ...
3
votes
3answers
1k views

pycurl: RETURNTRANSFER option doesn't exist

I'm using pycurl to access a JSON web API, but when I try to use the following: ocurl.setopt(pycurl.URL, gaurl) # host + endpoint ocurl.setopt(pycurl.RETURNTRANSFER, 1) ...
2
votes
1answer
59 views

numpy subclass will not accept arguments to __new__ from pythonically inheriting class

I've created a subclass of ndarray called "Parray" which takes two arguments: p, and dimensionality. It works fine on its own. Now, I want to create a class called SirPlotsAlot, which inherits Parray ...
2
votes
2answers
73 views

Why does this AttributeError in python occur?

There is one thing, that I do not understand. Why does this import scipy # happens with several other modules, too. I took scipy as an example now... matrix = scipy.sparse.coo_matrix(some_params) ...
2
votes
3answers
2k views

Pylons 1.0 AttributeError: 'module' object has no attribute 'metadata'

Python noob trying to learn Pylons. I'm using the QuickWiki tutorial (http://pylonshq.com/docs/en/1.0/tutorials/quickwiki_tutorial/) from the 1.0 documentation, but this alleged "1.0" doc seems to ...
2
votes
2answers
394 views

GAE AttributeError

My GAE app runs fine from my computer, but when I upload it, I start getting an AttributeError, specifically: AttributeError: 'dict' object has no attribute 'item' I am using the pylast interface ...
2
votes
3answers
218 views

What special method in Python handles AttributeError?

What special method(s?) should I redefine in my class so that it handled AttributeErrors exceptions and returned a special value in those cases? For example, >>> class ...
2
votes
3answers
2k views

Python: accessing DLL function using ctypes — access by function *name* fails

myPythonClient (below) wants to invoke a ringBell function (loaded from a DLL using ctypes). However, attempting to access ringBell via its name results in an AttributeError. Why? RingBell.h ...
1
vote
1answer
219 views

Django serializer error: 'NoneType' object has no attribute '_meta'

I recently found a great bit of code to JSON serialize various objects in Django. Unfortunately, the code throws an AttributeError when it encounters some types of models. Here is the error and ...
1
vote
1answer
56 views

YouTube Gdata No Average Rating in Python

This works perfectly when finding the average rating and number of raters for a youtube video. #!/usr/bin/python import sys from gdata.youtube.service import YouTubeService yt = YouTubeService() ...
1
vote
1answer
58 views

Lazyboy AttributeError while saving to cassandra

Hey Stackoverflow comm, I'm trying to write to my cassandra database but something is going wrong.. Some datas: I'm using Python 2.7 on Ubuntu (11.04), cassandra 0.8.4 and lazyboy 0.7.5. While I want ...
1
vote
2answers
197 views

Asyncore data processing with Python 3

I'm using asynchat and trying to use python3. getting this error: error: uncaptured python exception, closing channel <irc.IRC connected at 0x9a5286c> (<class ...
1
vote
2answers
470 views

Basic Python Question on String operations: example: string.lowercase

So I'm trying to run this, but it errors out and I need help understanding what's wrong. I really appreciate any help, I'm taking the MIT opencourseware intro to programming: words="GreatTimes" ...
1
vote
1answer
107 views

Python - AttributeError: index

I am stuck here... Connecting to t3://localhost:7001 with userid weblogic ... Successfully connected to Admin Server 'examplesServer' that belongs to domain 'wl_server'. Warning: An insecure ...
1
vote
1answer
155 views

_swig_getattr AttributeError

I'm getting an attribute error using swig to wrap a c function for use in python code. I've got other functions alongside chap that work just fine, but some strange reason this one will not work :/ ...
1
vote
1answer
560 views

numpy load raises “AttributeError: 'module' object has no attribute 'expr'”

I try to run #!/usr/bin/env python import os from numpy import * b= ones((3, 3)) print b save('fff', b) a = load('fff.npy') print a.shape print 'fertig' but it raises: Traceback (most ...
1
vote
1answer
182 views

Python 2.5 Import dll AttributeError

I have a program that runs peachy in Py2.4. I import the TobiiPlugin.dll file and then run my scripts. import TobiiPlugin as tobii tobii.setGazeSubjectProfile(3, 0) However, when I moved the code ...
1
vote
2answers
763 views

Getting Started with Python: Attribute Error

I am new to python and just downloaded it today. I am using it to work on a web spider, so to test it out and make sure everything was working, I downloaded a sample code. Unfortunately, it does not ...
1
vote
3answers
102 views

Why am I getting an AttributeError when I have the attribute?

I keep getting the following error: AttributeError: Caribou instance has no attribute 'on_key_up' The problem is, I'm pretty sure I do have that attribute... Here are some excerpts from my code ...
0
votes
2answers
17 views

python Attribute error during object initialization

Python 2.6.7; Windows 7 Solving Deitel 'Simple Compiler' exercise in python. Repository at github. Writing a test suite. module compiler.py class SCompiler( object ) : RAMSIZE = 100 # more ...
0
votes
0answers
11 views

Pygame/py2app error

I get an error when I run my python app after compiling it through py2app. If I do alias mode, it works fine, but, It doesn't work when I do it regularly. PLease help! 1/23/12 8:00:11.370 PM ...
0
votes
1answer
49 views

Python Crawler - AttributeError: Crawler instance has no attribute 'url'

I'm trying to learn the classes in python: #!/usr/bin/env python # *-* coding: utf-8 *-* import urllib2 from BeautifulSoup import BeautifulSoup as bs class Crawler: def visit(self, url): ...
0
votes
1answer
59 views

AttributeError: 'Button' object has no attribute 'set' - tkinter

I'm getting an error: self.button.set(str(self)) AttributeError: 'Button' object has no attribute 'set' I can't figure out what to change to make it work. Here is the important parts of the code: ...
0
votes
0answers
134 views

AttributeError when using Sphinx to make doc of python-novaclient-2.6.6

I want to use python-novaclient-2.6.6 (download:http://pypi.python.org/pypi/python-novaclient) to get access to OpenStack nova, but I can't find the document of python-novaclient-2.6.6, which seems ...
0
votes
0answers
64 views

Why can I not run my .exe converted wxPython file? AttributeError

This is the output I get: Traceback (most recent call last): File "ConvertImagesWithInterface.py", line 1, in (module) File "wx\__init__.pyc", line 45, in (module) File "wx\_core.pyc", ...
0
votes
2answers
116 views

Python AttributeError

When I type this code into a python shell it works perfectly fine but within a program it gives an error. import os h = os.environ['HOME'] within a script it gives this error: AttributeError: ...
0
votes
1answer
62 views

Pyinstaller Activex Attribute Error with wxPython

For some reason, when I compile my app with Pyinstaller, it gives me an error when run: Traceback (most recent call last): File "<string>", line 2, in <module> AttributeError: 'module' ...
0
votes
1answer
187 views

Cannot execute custom Selenium assert function from user-extensions.js file, when running Python RC against Selenium server

I'm trying to export a Selenium script to Python from the Selenium IDE. I am using a few user-extension.js functions though (which are working in Selenium IDE). After exporting to Python, the ...
0
votes
1answer
56 views

My program runs well, but why is it giving me an Attribute Error after it exits?

The game is simple where the Pan object catches the Pizza objects that are dispensed by the Chef object. When the Pan object (the user) misses a Pizza object, and it hits the floor of the screen, ...
0
votes
1answer
181 views

django 'module' object has no attribute 'StringProperty'

I'm just starting... I'm trying to use Django models but I'm getting the: AttributeError: 'module' object has no attribute 'StringProperty' Can you please tell where can be the issue? from ...
0
votes
1answer
421 views

ssh client with paramiko (python)

# sshpy v1 by s0urd # simple ssh client # irc.gonullyourself.org 6667 #code import paramiko import os ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) privatekey ...
0
votes
3answers
190 views

Why do I get an AttributeError when using .count() in python

array1=[ 0 5 6 6 6 0 6 0 6 8 0 19 24 7 0 4 9 14 12 0 22 17 1 0 19 6 17 4 7 0 17 24 0 6 9 22] i=0 while i<23 m= array1.count(i) i=i+1 AttributeError: ...
0
votes
1answer
71 views

python-why AttributeError: 'case' object has no attribute 'account'

import unittest from SFDC_Objects.Accounts import Accounts class case(unittest.TestCase): def setup(self): self.account=Accounts() self.account.account_init() def ...
0
votes
1answer
64 views

appscript attribute error

I'm new to programming, and to python. I'm trying to use appscript in a python script to choose a pdf and a new destination folder, open the pdf in Adobe Acrobat Pro, OCR it, and save it in the new ...
0
votes
2answers
410 views

AttributeError: 'search' object has no attribute 'status_code' in django project

I'm testing a django project using the test sever when it gives me the following exception Traceback (most recent call last): File ...
0
votes
1answer
182 views

AttributeError: Queue instance has no attribute '_empty'

A customer has got this error with my software using Python 2.5.5. How can it be? Does _empty has disappeared from the queue? I don't understand this at all. I did not inherit from queue, there is ...
0
votes
3answers
177 views

Attribute errors in basic Python script

This is a very basic portscan/ping sweep script. The two functions work fine when I just use them individually in another script, but as soon as I try them in this script I get attribute errors ...
0
votes
2answers
2k views

Python attribute error: type object '_socketobject' has no attribute 'gethostbyname'

I am trying to do this in my program: dest = socket.gethostbyname(host) I have included the line from socket import * in the beginning of the file I am getting an Attribute Error that says: ...
0
votes
1answer
717 views

Python Tornado Web - AttributeError: 'Connection' object has no attribute '_execute'

I'm experiencing a strange behaviour working with the latest branch of tornadoweb when I deploy my app on my production server. I tested several times the code and it is fully working when I test it ...
0
votes
2answers
304 views

Attribute Error in Python

I'm trying to add a unittest attribute to an object in Python class Boy: def run(self, args): print("Hello") class BoyTest(unittest.TestCase) def test(self) ...
0
votes
5answers
4k views

Attribute error in Python

class SomeClass: def __init__(self): self.SomeFunction() def SomeFunction(self): try: self.something = 5 except: print 'error' print self.something tempObject ...
-1
votes
1answer
221 views

Python/Pygame Error - Attribute Error: 'NoneType' object has no attribute 'get_rect' [closed]

As my second individual game, things were bound to go wrong. There are probably quite a few things wrong with my code, but this is stopping me fixing them. I have absolutely no idea what the problem ...
-1
votes
2answers
520 views

AttributeError: 'str' object has no attribute 'attack' “'Help!”

I have q quick question regarding an Attribute Error regarding a basic Arena battler I am writing for my Intro to Programming Class. Here is the chunk of code that I am having trouble with upon ...