summaryrefslogtreecommitdiff
path: root/run_examples.py
diff options
context:
space:
mode:
Diffstat (limited to 'run_examples.py')
-rw-r--r--run_examples.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/run_examples.py b/run_examples.py
new file mode 100644
index 0000000..ce07dcc
--- /dev/null
+++ b/run_examples.py
@@ -0,0 +1,6 @@
+import sys
+sys.path.append('./lib')
+from Pb import *
+for cls in Pb.__subclasses__():
+ print cls.__name__
+ cls.example_run()