Tagged Questions
The hasattr tag has no wiki summary.
8
votes
5answers
4k views
Checking for member existence in Python
I regularly want to check if an object has a member or not. An example is the creation of a singleton in a function. For that purpose, you can use hasattr like this:
class Foo(object):
...
7
votes
8answers
2k views
hasattr() vs try-except block to deal with non-existent attributes
if hasattr(obj, 'attribute'):
# do somthing
vs
try:
# access obj.attribute
except AttributeError, e:
# deal with AttributeError
Which should be preferred and why?
0
votes
2answers
237 views
How to check submodules in Python with hasattr
At runtime, the Python code gets the name of a submodule to load, which I don't know before. Now, I want to check, if this submodule exists inside an existing module. Consider this structure, where ...