class Example: @classmethod def load(cls, filepath): obj = cls.__new__(cls) obj.foo = somefunc(filepath) return obj