summaryrefslogtreecommitdiff
path: root/run_examples.py
blob: 08e45d2d1d337c2f69dcd8068ad93734895e2ada (plain)
1
2
3
4
5
6
7
8
9
10
11
import sys
sys.path.append('./lib')
from Pb import *
for cls in Pb.__subclasses__():
  if cls == PbBreak:
    print cls.__name__
    instance = cls.example_run()
    instance.file_s3move()
    print instance.file_json()
    instance.db_send();
    break