There are two python files as below.
$cat repo.py class A(object): attr_a = \'a\' $cat run.py from repo import A inst = A() print inst.attr_a