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 ...
14
votes
4answers
2k views

How do I call setattr() on the current module?

What do I pass as the first parameter "object" to the function setattr(object, name, value), to set variables on the current module? For example: setattr(object, "SOME_CONSTANT", 42); giving the ...
13
votes
3answers
192 views

Python: inconsistence in the way you define the function __setattr__?

Consider this code: class Foo1(dict): def __getattr__(self, key): return self[key] def __setattr__(self, key, value): self[key] = value class Foo2(dict): __getattr__ = dict.__getitem__ ...
9
votes
1answer
239 views

Overriding __getattr__ to support dynamic nested attributes

What is the best approach to take if you want to dynamically create and reference nested attributes? I was writing a simple Flickr client, and wanted to match the documented API as closely as ...
6
votes
3answers
754 views

Understanding the difference between __getattr__ and __getattribute__

I am trying to understand the difference between __getattr__ and __getattribute__, however I am failing at it. This question here on SO says, __getattribute__ is invoked before looking at the ...
4
votes
4answers
123 views

Python - How to define attributes not affected by __getattr__?

I'm fairly new to Python. In programming a lot of PHP recently I got used to some creative use of __get and __set "magic" methods. These were only called when a public variable of the class wasn't ...
4
votes
3answers
210 views

Asymmetric behavior for __getattr__, newstyle vs oldstyle classes

this is the first time I write here, sorry if the message is unfocuessed or too long. I was interested in understanding more about how objects'attributes are fetched when needed. So I read the ...
4
votes
5answers
243 views

Pythonic solution to my reduce getattr problem

I used to use reduce and getattr functions for calling attributes in a chain way like "thisattr.thatattr.blaattar" IE: reduce(getattr, 'xattr.yattr.zattr'.split('.'), myobject) Works perfectly ...
4
votes
2answers
508 views

__getattr__ for static/class variables in python

I have a class like: class MyClass: Foo = 1 Bar = 2 Whenever MyClass.Foo or MyClass.Bar is invoked, I need a custom method to be invoked before the value is returned. Is it possible in ...
4
votes
6answers
383 views

Calling types via their name as a string in Python

I'm aware of using globals(), locals() and getattr to referance things in Python by string (as in this question) but unless I'm missing something obvious I can't seem to use this with calling types. ...
3
votes
2answers
57 views

PHP approach to python's magic __getattr__()

I was wondering if there was some way in PHP to duplicate some of the magic of Python attribute/key access. I use a Mongo ORM class written by Steve Lacey called Minimongo in which he utilizes the ...
3
votes
3answers
114 views

Are there getattr, callable and other metaprogramming functions in java?

I'm looking for some metaprogramming functions in Java analogous to Python's getattr, hasattr, callable etc. If not, is there any good external library for this?
3
votes
2answers
182 views

Python's getattr gets called twice?

I am using this simple example to understand Python's getattr function: In [25]: class Foo: ....: def __getattr__(self, name): ....: print name ....: ....: ...
3
votes
2answers
610 views

Is it bad practice to use python's getattr extensively?

I'm creating a shell-like environment. My original method of handleing user input was to use a dictionary mapping commands (strings) to methods of various classes, making use of the fact that ...
2
votes
2answers
62 views

Is there a way to inspect incoming args from within __getattr__ or to somehow otherwise redirect a call based upon incoming arguments?

Some background: We have a system for transactions where we devide the flow based upon the country the transaction bills to. We have a logging table that exists in 2 instances, one DB logging ...
2
votes
4answers
218 views

Using __getattribute__ or __getattr__ to call methods in Python

I am trying to create a subclass which acts as a list of custom classes. However, I want the list to inherit the methods and attributes of the parent class and return a sum of the quantities of each ...
2
votes
4answers
296 views

Accessing list items with getattr/setattr in Python

Trying to access/assign items in a list with getattr and setattr funcions in Python. Unfortunately there seems to be no way of passing the place in the list index along with the list name. Here's some ...
2
votes
4answers
150 views

What does this (simple?) expression in Python mean? func(self)(*args)

Ive come across this code in python, getattr(self, that)(*args) what does it mean? I see that getattr the builtin function gets called, passing the current object and that argument, but what is the ...
2
votes
2answers
170 views

How to laucnh getattr function in python with additional parameters?

I want to call some unknown function with adding parameters using getattr function. Is it possible?
2
votes
2answers
527 views

Why can't I use __getattr__ with Django models?

I've seen examples online of people using __getattr__ with Django models, but whenever I try I get errors. (Django 1.2.3) I don't have any problems when I am using __getattr__ on normal objects. For ...
2
votes
4answers
415 views

What is getattr() exactly and how do I use it?

I was reading about the getattr() function here. The problem is that I still can't grasp the idea of its usage. The only thing I understand about getattr() is that getattr(li, "pop") is the same as ...
2
votes
1answer
120 views

Querying for entities with missing properties in app engine Datastore?

I have a model which looks like this: class Example (db.Model) : row_num = db.IntegerProperty(required=True) updated = db.IntegerProperty() ... ... Now when i store values, I may not fill the ...
2
votes
1answer
599 views

Python: Recursively access dict via attributes as well as index access?

I'd like to be able to do something like this: from dotDict import dotdictify life = {'bigBang': {'stars': {'planets': [] } } } dotdictify(life) #this would be the regular ...
2
votes
2answers
170 views

Why does the “name” parameter to __setattr__ include the class, but __getattr__ doesn't?

The following code: class MyClass(): def test(self): self.__x = 0 def __setattr__(self, name, value): print name def __getattr__(self, name): print name ...
2
votes
5answers
1k views

Python: Convert string into function name; getattr or equal?

I am editing PROSS.py to work with .cif files for protein structures. Inside the existing PROSS.py, there is the following functions (I believe that's the correct name if it's not associated with any ...
1
vote
2answers
94 views

Python - getattr and concatenation

So in playing around with getattr in my code I discovered the following: myVariable = foo.A.bar works...but something like this: B = "A" myVariable = getattr(foo, B + ".bar") returns an error ...
1
vote
3answers
228 views

Why doesn't Python have a hybrid getattr + __getitem__ built in?

I have methods that accept dicts or other objects and the names of "fields" to fetch from those objects. If the object is a dict then the method uses __getitem__ to retrieve the named key, or else it ...
1
vote
1answer
135 views

Can XML-RPC methods be called by name (as strings) in Python?

In python, calling XML-RPC methods involves invoking methods on a proxy object: from xmlrpclib import ServerProxy print ServerProxy('https://example.com/rpc').api.hello_there('John') In some other ...
1
vote
2answers
979 views

Python, Django, how to use getattr (or other method) to call object that has multiple attributes?

After trying to get this to work for a while and searching around I am truly stumped so am posting here... I want to make some functions in classes that I am writing for django as generic as possible ...
1
vote
1answer
490 views

JavaScript: Version of __defineGetter__ that allows access to the attr you're trying to access?

I've been looking for a replacement for Python's __getattr__ in JavaScript, and a couple answers here mentioned Firefox's __defineGetter__. Not only is that not cross-browser compatible but it doesn't ...
0
votes
1answer
65 views

Problems with getattr

I've been tearing my hair out for the past hour trying to figure out a bug in the IRC-enabled program I'm working on, and after some debugging I've found that for some reason, getattr isn't working ...
0
votes
3answers
63 views

Django access related property dynamically?

I am using getattr to access properties of a model dynamically like so (Assuming the Student model has a property called name): students = Student.objects.all() property = 'name' for student in ...
0
votes
1answer
38 views

Overriding eval globals with __getattr__ problems

I'm trying to override globals so that any attribute name that doesn't exists returns itself(the name string). The reason for this is to use it in eval to do some quick/hacky parsing of a c ...
0
votes
3answers
67 views

Why does this __getattr__ function not work?

I've got this little class I wrote to try playing with custom __getattr__ methods, and every time I run it, I get an Attribute error: class test: def __init__(self): self.attrs ...
0
votes
1answer
429 views

XML Parsing to get Attribute Value

I am parsing a xml using SAX Parser. Everythings working fine when the data I need to get is the body of a xml tag. The only problem I am getting is when the data I need is the attribute value of that ...
0
votes
1answer
56 views

Unable utilize a methodname(from webservice)present in the form of a string.I tried utilizing getattr,but then not unable to extend it for suds

from suds.client import Client #@UnresolvedImport from suds.transport.https import HttpAuthenticated #@UnresolvedImport import urllib2 class methodinvokeclass(): def ...
0
votes
3answers
215 views

method __getattr__ is not inherited from parent class

Trying to subclass mechanize.Browser class: from mechanize import Browser class LLManager(Browser, object): IS_AUTHORIZED = False def __init__(self, login = "", passw = "", *args, **kwargs): ...
0
votes
2answers
167 views

assign a attribute using getattr

I try to assign value to attributes of some calss like the following: for name in dir(modelType): if request.get(name): getattr(model, name) = request.get(name) but get the ...
0
votes
2answers
135 views

Python __getattr__ behavior? IN ECLIPSE/PyDev console?

The following: class A(object): def __getattr__(self, attr): try: return self.__dict__[attr] except KeyError: self.__dict__[attr] = 'Attribute set to ...
0
votes
3answers
316 views

python __getattr__ help

Reading a Book, i came across this code... # module person.py class Person: def __init__(self, name, job=None, pay=0): self.name = name self.job = job self.pay = pay ...
0
votes
2answers
216 views

__getattr__ equivalent for methods

When an attribute is not found object.__getattr__ is called. Is there an equivalent way to intercept undefined methods?
0
votes
2answers
191 views

Python Chain getattr as a string

import amara def chain_attribute_call(obj, attlist): """ Allows to execute chain attribute calls """ splitted_attrs = attlist.split(".") current_dom = obj for attr in ...
0
votes
3answers
975 views

Calling a method with getattr in Python

How to call a method using getattr? I want to create a metaclass, which can call non-existing methods of some other class that start with the word 'oposite_'. The method should have the same number of ...
0
votes
1answer
238 views

Jython 2.1 __getattr__

I am trying to implement a wrapper/proxy class for a java object (baseClient) in jython v2.1. Everything seems to be working ok except when the following statement is encountered: if __client != None ...
-1
votes
2answers
496 views

Python, using two variables in getattr?

I'm trying to do the following: import sys; sys.path.append('/var/www/python/includes') import functionname x = 'testarg' fn = "functionname" func = getattr(fn, fn) func (x) but am getting an ...