The Python `AttributeError` exception.

learn more… | top users | synonyms

1
vote
0answers
25 views

IronPython - “AttributeError: object has no attribute” with custom classes

This seems like there is just a simple error that I cannot figure out. I am using IronPython in a C# WPF application and am getting the following error when trying to run a function from a custom C# ...
0
votes
1answer
13 views

Python - AttributeError: 'int' object has no attribute 'randint'

As part of a python course I am doing one of the tasks is to generate a random number between 1 and 10 100,000 times and count how many times each number occurs. Here is the code I have written for ...
0
votes
0answers
29 views

Starting Celery with supervisord: AttributeError: 'module' object has no attribute 'celery'

I used to have all my Flask app code and celery code in one file and it worked fine with supervisor. However, it is very hair so I split my tasks to celery_tasks.py and this problem occurs. In my ...
2
votes
1answer
29 views

Include '-' in regex search with \w+ . Python

k = 'a bunch of data and then name ""Serpin-ps""' print re.search(r'name\s""(\w+)""',k).group(1) gives: AttributeError: 'NoneType' object has no attribute 'group' desired_output = ...
0
votes
1answer
31 views

python AttributeError: RunCmd instance has no attribute 'p' for delta debug

[Edit: here's the entire backtrace. As per the accepted answer, the error was from nothing returned by the Popen command. Thanks all ] Simplifying failure-inducing input... Exception in thread ...
0
votes
0answers
14 views

Attempting to use python Enchant but I'm getting an Attribute Error

Currently trying out enchant for a program involving paring acronyms, but I can't seem to get enchant to load at all. import enchant d = enchant.Dict("en_US") d.check("Hello") And the error I am ...
0
votes
2answers
29 views

Nester.py: AttributeError: 'str' object has no value 'write'

Following the book, chapter four on persistence in Python, they ask us to amend the function of a module called "print_lol" inside of "nester". Here's my code. import sys def print_lol(the_list, ...
0
votes
1answer
48 views

Python attempting to create a simple gui, getting “AttributeError: 'MainMenu' object has no attribute 'intro_screen'”

complete newbie here to Python as I only started learning the language a few days ago (with no programming experience beforehand). I'm basically bashing my skull against the desk here, trying to ...
0
votes
1answer
69 views

AttributeError while querying: Neither 'InstrumentedAttribute' object nor 'Comparator' has an attribute

The following code: Base = declarative_base() engine = create_engine(r"sqlite:///" + r"d:\foo.db", listeners=[ForeignKeysListener()]) Session = sessionmaker(bind = engine) ses ...
1
vote
2answers
26 views

Fixed: Python NameError, fixed AttributeError and got this?

FIXED: turns out there is a module already called parser. Renamed it and its working fine! Thanks all. I got a python NameError I can't figure out, got it after AttributeError. I've tried what I ...
1
vote
1answer
41 views

No attribute 'SMTP', error when trying to send email in Python

I am trying to send an email in Python: import smtplib fromaddr = '......................' toaddrs = '......................' msg = 'Spam email Test' username = '.......' password = ...
1
vote
2answers
62 views

matplotlib pnpoly example results in error

I ran the following code as per the example here: http://matplotlib.org/faq/howto_faq.html#test-whether-a-point-is-inside-a-polygon I would kindly appreciate your help. Thank you. ...
0
votes
1answer
34 views

AttributeError: 'str' object has no attribute 'n' on line 10

class Natural: def __init__(self,x): self.n=str(x) def __add__(self,x): i=1 suma="" a=0 if len(self.n)==len(x.n): l=len(self.n) ...
1
vote
0answers
47 views

Strange Pypy AttributeError

I want to use pypy to speed up my python code. But i have these strange problems. This is my code in the init methode of a class: self._parse_function_by_id_prefix = { 'T': ...
0
votes
0answers
24 views

GUI connect, calling MessageBox

I've a question concerning programming a GUI with python. I've got a simple Button/Line window, built with Qt Designer, named show: from PyQt4 import QtCore, QtGui try: _fromUtf8 = ...
0
votes
0answers
44 views

Python + BSoup AttributeError 'NavigableString' object has no attribute 'has_attr'

So i am trying to parse data from an onclick attribute on ana tag. The data is held inside a div tag with id=accordion. There are two a tags inside this div container but i am only trying to access ...
2
votes
3answers
106 views

Python: 'NoneType' object has no attribute 'get_username'

I'm working on a hangman program that also has user accounts objects. The player can log in, create a new account, or view account details, all of which work fine before playing the game. After the ...
0
votes
0answers
49 views

Python/Myro: Error in atexit._run_exitfuncs

My beginners-level Python course uses Python 2.4 and Myro, the latter of which has caused me nothing but trouble. At this point in the class I can't even run the code I've written nine times out of ...
0
votes
1answer
85 views

Strange error with AttributeError: 'NoneType' object has no attribute 'getText'

import os, re, sys, urllib2 from bs4 import BeautifulSoup import lxml def get_epg(channel, html): soup = BeautifulSoup(html, "lxml") main_div = soup.find("div", ...
-1
votes
1answer
101 views

Python: use .search method to extract everything between 2 words which occur more than once

I have a VHDL file which contains some paragraph I want to extract. Generally, it looks like this: Declaration 1. Some codes. (Following are paragraphs I want to extract) case (state) is case ...
1
vote
1answer
150 views

AttributeError: 'module' object has no attribute 'ElasticSearchError' : Using Haystack Elasticsearch

Using Django & Haystack with ElasticSearch. After installing haystack and ES, and Rebuilding Index ./manage.py rebuild_index WARNING: This will irreparably remove EVERYTHING from your search ...
0
votes
4answers
366 views

Python 'AttributeError: 'function' object has no attribute 'min''

Firstly, apologies for how obvious these two questions seem to be; I'm very very new to this and don't have a clue what I'm doing. I'm trying to write something to apply the Scipy function for spline ...
3
votes
2answers
57 views

AttributeError when accessing member of Java class in Jython

I am trying to import my own java class into some jython code. I compiled my .java to a .class file and put the .class file into a .jar. I then include this .jar file using ...
0
votes
2answers
46 views

Why is the same object throwing a “NoneType” object Attribute error in one instance and not others?

I am using django to set up the cart functionality on my ecommerce site. All items are entered as cart_items in a MySQL table. Before the question, the relevant code: charm = False if ...
0
votes
1answer
53 views

Importing variables gives attribute error python

This is done in python 2.7.3: x.py: import y global path_variable path_variable = "a_path" y.procedure() y.py: import x def procedure(): return x.path_variable Now when I run X I get this ...
0
votes
1answer
86 views

Python AttributeError - 'Category' object has no attribute 'product_set'

My show_category view for my ecommerce catalog was fully functional yesterday. Navigating to domain.com/category/necklaces, for example, would call the show_category view and display all my products ...
-1
votes
4answers
220 views

python “import datetime” v.s. “from datetime import datetime”

I have a script that needs to execute the following at different lines in the script: today_date = datetime.date.today() date_time = datetime.strp(date_time_string, '%Y-%m-%d %H:%M') In my import ...
1
vote
1answer
91 views

peewee: object has no attribute _meta

I am working on Windows with Python 3.3 32-bit. I have installed peewee and want to try some of its features. I have started with Peewee Quickstart ...
1
vote
2answers
50 views

Instance has no attribute _pi

I'm trying to make a Python module like this: class square: def _init_(self): self._length = 0 self._perimeter = 0 self._area = 0 def setLength(self, length): ...
0
votes
0answers
34 views

How to handle Paypal error when they leave subscription active

Sometimes a user will cancel and delete their account but they leave their paypal subscription active. It results to: AttributeError: 'bool' object has no attribute 'pro' I'd like to send an email ...
3
votes
1answer
393 views

Pickle: AttributeError: 'module' object has no attribute

I found a lot of threads about this but the problem of all of them is the namespace. My problem have nothing to do with namespace. A small example: import cPickle as pickle from uncertainties import ...
0
votes
1answer
446 views

Strange error involving “AttributeError: 'NoneType' object has no attribute 'append' ”

so i am trying to parse out a text file by converting it to a list and splitting each item in the list at the space. i have created a test variable to run this part of the code by itself. my code in ...
0
votes
2answers
478 views

Django error 'unicode' object has no attribute 'objects'

I'm writing my first django app from https://docs.djangoproject.com/en/dev/intro/tutorial01/ and i'm experiencing 2 problems. My Models.py are from django.db import models class ...
0
votes
1answer
203 views

Matplotlib set_major_formatter AttributeError

I'm trying to format the yaxis on a matplotlib graph using set_major_formatter. The plot is generated correctly, but the ax.yaxis.set_major_formatter() throws a couple of weird errors. The ...
2
votes
2answers
269 views

'Queue' object has no attribute 'size'

I have seen other examples of this happening on StackOverflow, but I didn't understand any of the answers (I'm still a new programmer,) nor did the other examples I saw look quite like mine, else I ...
0
votes
1answer
474 views

AttributeError: 'module' object has no attribute 'TreeTagger'

I am trying to use the Python wrapper for TreeTagger, a Part-of-Speech Tagger. The code I use for importing and invoking the wrapper is: import TreeTaggerWrapper tagger = ...
0
votes
2answers
148 views

python AttributeError

I have three python files one.py, two.py, three.py one.py from one.py I call import two as two two.three() in two.py I have def two(): "catch the error here then import and call ...
0
votes
1answer
353 views

AttributeError: 'function' object has no attribute ''index"

In python, I'm trying to get a depth of recursion(dor). Before adding all the dor things into my code, it worked ~fine, but after adding the dor stuff, I received an attribute error concerning my ...
0
votes
1answer
839 views

Why do I keep getting AttributeError: 'module' object has no attribute

I am new to Python and was trying a few problems. This one is to create a traffic light. Not sure why I keep getting this error AttributeError: 'module' object has no attribute 'canvas' Code below ...
0
votes
1answer
152 views

AttributeError on method __setitem__

I have the following code: class VectorN(object): def __init__(self, param): if isinstance(param, int): self.dim = param self.data = [0.0] * param elif ...
1
vote
3answers
127 views

Where to define in Python class, mysql connection?

So, I just got started today with python. I installed the python-mysql.connector so I can start writing some queries and within python work with the result, and then output some data to an lcd screen. ...
0
votes
1answer
73 views

Django: AttributeError using ratings app

This is somewhat an extension of my previous question, but after solving that problem I am getting a different AttributeError. This one reads '_RatingsDescriptor' object has no attribute ...
0
votes
1answer
365 views

Django: QuerySet object has no attribute

I get an AttributeError: 'QuerySet' object has no attribute 'ratings' when trying to do something like this in my view: def index(request): thing_list = Thing.ratings.cumulative_score() ...
1
vote
1answer
155 views

AttributeErrors, Tuples and other things nice

I can't say I fully understand the script, because classes go beyond me as yet. Anyway, I've downloaded the py-omegle module from here . And I don't seem to be able to get it to run. Hoping that I ...
3
votes
4answers
167 views

AttributeError for recursive method in python

I have a recursive method problem with python, the code is this: class NodeTree(object): def __init__(self, name, children): self.name = name self.children = children def ...
0
votes
2answers
93 views

AttributeError: Nonetype - but the variable is a string

I am running into a weird Attribute Error on my Python script. File "/home/francesco/Documents/Dropbox/py_campaigns/queries.py", line 132, in replace_string string[9] = string[9].replace(' ', '_') ...
0
votes
2answers
44 views

AttributeError when taking result of counter, but not with a plain integer

I'm attempting to use the code below to get the total number of lines in a text file. totallines = 0 for line in infile: totallines += 1 It works, and can print the correct number to the shell. ...
0
votes
3answers
280 views

Cython AttributeError: 'module' object has no attribute 'declare'

Compiling .pyx files was working fine but suddenly it started raising error when I type: python setup.py build_ext --inplace I get the error: c:\Python27\cython\helloworld>python setup.py ...
1
vote
1answer
1k views

AttributeError: 'str' object has no attribute 'iteritems'

I'm trying to write a script that will write out to Google Docs Spreadsheet and when I run it I get the error in the title. More specifically: File "/home/pi/Desktop/templog.py", line 44, in ...
2
votes
2answers
2k views

Counter in Collections module Python

I've come across a really weird problem. I'm trying to use Counter function in collections module. However, I keep getting the same error message AttributeError: 'module' object has no attribute ...

1 2 3