summaryrefslogtreecommitdiff
path: root/run_module_examples.py
blob: 7803fc07de3260ca141f2d30605278c3f8b369d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python2.7
"""calls the example_run method on all modules"""
import sys
sys.path.append('./lib')
from pb import * 
for cls in Pb.__subclasses__():
    print cls.__name__
    instance = cls.example_run()
    instance.file_s3move()
    print instance.file_dict()
    instance.db_send();