vote up 3 vote down star
1

Hello. I feel like this question has already been asked and answered, yet I couldn't find anything on-topic, so excuse me if it is so. I want to define the behaviour of [] brackets when applied to class, similar to def []=() construct in ruby, so that calling Python obj['foo'] would actually call some [](self, what) method. How can I do that?

flag

78% accept rate

4 Answers

vote up 12 vote down check

It's all in the docs: __getitem__.

link|flag
vote up 6 vote down

This is done with __getitem___ in Python.

Here is a list of all the operators: http://docs.python.org/library/operator.html

link|flag
Thanks for linking the entire list of operators. It eluded me, and probably many others. – vgm64 Oct 1 at 4:36
vote up 4 vote down

define a method in your class with __getitem__(key) and __setitem__(key, value)

link|flag
vote up 3 vote down

http://docs.python.org/reference/datamodel.html

Section 3.4 in the above link shows you all or most of the operators you can overload in Python. The one you want to overload is

__getitem__()
link|flag

Your Answer

Get an OpenID
or

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