how to find instances of a class at runtime in python
eg.
class Foo():
pass
class Bar(Foo):
def __init__(self, a):
print a
inst_b1 = Bar(3)
inst_b2 = Bar('Hello World!!!')
How would i find out how many instances of class Bar exists and there names at runtime?
Also, as i want to use them at runtime what would be the better solution to have them in a custom dict or get it from the universal dict of variables(using vars()).
Thanks