summaryrefslogtreecommitdiff
path: root/run_examples.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_examples.py')
-rw-r--r--run_examples.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/run_examples.py b/run_examples.py
deleted file mode 100644
index 08e45d2..0000000
--- a/run_examples.py
+++ /dev/null
@@ -1,11 +0,0 @@
-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