I recently took over maintaining a website that is written in Python and uses web.py. I've created a class I would like to import but I'm getting the "TypeError: 'module' object is not callable" error. All the .py modules are stored in a directory call "lib". In the lib directory are the following modules - noun.py, verb.py, context.py, word.py, base.py. Within the lib directory is the --init--.py file. I'm trying to import the noun.py module into the context module. Below is the code in the context.py module that is used to import the other modules.
from lib import verb, word, base
This seems to work fine for importing the verb, word and base modules. But when I add noun to the end of that statement to make it...
from lib import, verb, word, base, noun
I get the "TypeError: 'module' object is not callable" error. I've also tried...
import noun #Also produces the same error
So I tried the following...
from noun import *
When I import the module this way the error is eliminated but when I reference an attribute of the noun module I get the error "AttributeError: noun instance has no attribute 'get_stem_used'". Below is the code from the noun module...
from base import base
class noun:
wordBase = None
stemBase = None
def __init__(self, pId):
b = base()
wrdBase = b.get_word_base(pId)
self.wordBase = wrdBase['base']
stmBase = b.get_stemBase(pId)
self.stemBase = stmBase['stem']
#Code to make sure the module is instantiated correctly and the data is validated
def get_output(self):
return self.wordBase
def get_stem_used(self):
return self.stemBase
The verb.py module has essentially the same code as the noun.py module. In the context.py module I have the following code...
n = noun(id)
base = n.get_output()
#I print out base to make sure everything is good and it is
v = verb(id)
verb = v.get_output()
"n" and "v" are then passed to the word.py module. Within the word.py module is the following code.
if v.get_stem_used == "Some Value":
#do whatever
elif n.get_stem_used == "Another value": #This line produces the "attribute error"
#do something
When I try to access n.get_stem_used I get the "AttributeError: noun instance has no attribute 'get_stem_used'" error. I've done some research and I ran into this url http://effbot.org/zone/import-confusion.htm this leads me to believe that I'm not properly importing the noun module and since I'm not importing the noun module using the following code...it won't allow me to refer to the elements with the noun class using the dot notation.
from lib import, verb, word, noun
It's weird to me that adding "noun" to the end of the above statement isn't working but it seems to properly import all the other modules. I've seen that mixing tabs and spaces can cause this error but I've checked using my editor that it is properly tabbed. I've been working on this for a while so any help is greatly appreciated. Thanks.
Below is what is in the --init--.py
#!/usr/local/bin/python2.5
# -*- coding: utf-8 -*-
lib's__init__.pyhave animport verb, word, noun(or some variation there of) in it? – Jon Clements Nov 19 '12 at 20:56