Most functions in a class will refer to a "self" instance.
If you want a static function, you'll have to add the @staticmethod decorator.
1.
class
Something(object):
2.
@staticmethod
3.
def
get_by_name(name):
4.
return
"Hello world"
[ Source ]