vote up 9 vote down star
1

I wish to create a class in Python that I can add and remove attributes and methods. How can I acomplish that?

Oh, and please don't ask why.

flag

1  
Why would you want to do that? ;) – karim79 Jun 7 at 22:42
5  
Duplicate? stackoverflow.com/questions/972/… – musicfreak Jun 7 at 22:46
You want to find out how to do duck punching in python? en.wikipedia.org/wiki/Duck_punching – docgnome Jun 8 at 2:04

4 Answers

vote up 2 vote down check

I wish to create a class in Python that I can add and remove attributes and methods.

import types

class SpecialClass(object):
    @classmethod
    def removeVariable(cls, name):
        return delattr(cls, name)

    @classmethod
    def addMethod(cls, func):
        return setattr(cls, func.__name__, types.MethodType(func, cls))

def hello(self, n):
    print n

instance = SpecialClass()
SpecialClass.addMethod(hello)

>>> SpecialClass.hello(5)
5

>>> instance.hello(6)
6

>>> SpecialClass.removeVariable("hello")

>>> instance.hello(7)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'SpecialClass' object has no attribute 'hello'

>>> SpecialClass.hello(8)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: type object 'SpecialClass' has no attribute 'hello'
link|flag
vote up 17 vote down

This example shows the differences between adding a method to a class and to an instance.

>>> class Dog():
...     def __init__(self, name):
...             self.name = name
...
>>> puppy = Dog('Skip')
>>> spot = Dog('Spot')
>>> def talk(self):
...     print 'Hi, my name is ' + self.name
...
>>> Dog.talk = talk # add method to class
>>> puppy.talk()
Hi, my name is Skip
>>> spot.talk()
Hi, my name is Spot
>>> del Dog.talk # remove method from class
>>> puppy.talk() # won't work anymore
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: Dog instance has no attribute 'talk'
>>> import types
>>> f = types.MethodType(talk, puppy, Dog)
>>> puppy.talk = f # add method to specific instance
>>> puppy.talk()
Hi, my name is Skip
>>> spot.talk() # won't work, since we only modified puppy
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: Dog instance has no attribute 'talk'
link|flag
4  
Note that you can only do this to classes, not instances. If you do puppy.talk = talk, talk will not be a "bound method", that is to say, it won't get the implicit "self" argument. – Paul Fisher Jun 7 at 22:48
2  
To augment Paul's comment: if you wish to monkeypatch an instance method: "import types; f = types.MethodType(talk, puppy, Dog); puppy.talk = f" – Jarret Hardie Jun 7 at 23:09
3  
+1 to Paolo for demonstrating the dynamic effect of assigning and deleting class method attributes. – Jarret Hardie Jun 7 at 23:15
1  
Thanks for the great comments guys, I updated the answer to show the differences. – Paolo Bergantino Jun 7 at 23:17
2  
Very nice edited example... it should almost go in the Python API docs for the types module, which are woefully inadequate. – Jarret Hardie Jun 7 at 23:24
show 1 more comment
vote up 3 vote down

A possibly interesting alternative to using types.MethodType in:

>>> f = types.MethodType(talk, puppy, Dog)
>>> puppy.talk = f # add method to specific instance

would be to exploit the fact that functions are descriptors:

>>> puppy.talk = talk.__get__(Dog, puppy)
link|flag
I just learned something :) But I think that it looks less readable. – NicDumZ Jun 8 at 1:41
+1 Good alternative syntax, as you say. I'm curious: are there any particular benefits to this approach, or to using "types"? Ultimately, they produce the same result and internal bindings AFAICAT. Does types.MethodType effectively produce a descriptor, or is there more at work? – Jarret Hardie Jun 8 at 2:25
@NicDumZ, yeah, the __ thingies never really look good. @Jarret, there was at some point of Python 3's design loose talk about abolishing the 'types' module, but it stayed, slimmed down from 37 entries to 12 (the 'new' module did go, yay!-). Semantically they're really the same: MethodType returns the same kind of object that's the result of get -- an instance of <type 'instancemethod'>. – Alex Martelli Jun 8 at 4:17
vote up 1 vote down

I wish to create a class in Python that I can add and remove attributes and methods. How can I acomplish that?

You can add and remove attributes and methods to any class, and they'll be available to all instances of the class:

>>> def method1(self):
       pass

>>> def method1(self):
       print "method1"

>>> def method2(self):
       print "method2"

>>> class C():
       pass

>>> c = C()
>>> c.method()

Traceback (most recent call last):
  File "<pyshell#62>", line 1, in <module>
    c.method()
AttributeError: C instance has no attribute 'method'

>>> C.method = method1
>>> c.method()
    method1
>>> C.method = method2
>>> c.method()
    method2
>>> del C.method
>>> c.method()

Traceback (most recent call last):
  File "<pyshell#68>", line 1, in <module>
    c.method()
AttributeError: C instance has no attribute 'method'
>>> C.attribute = "foo"
>>> c.attribute
    'foo'
>>> c.attribute = "bar"
>>> c.attribute
    'bar'
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.