blob: 27fd13c0dfcab138a7c8b313fffb8b941ad47cbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/python2.7
"""calls the example_run method on all modules"""
from photoblaster.modules import Modules
modules = Modules()
for module_name in modules.list_modules():
if module_name == "pbconcat":
print "\n\n\n"
print "running example for %s" % module_name
cls = modules.get_module(module_name)
instance = cls.example_run()
instance.get_output_file().s3move()
print instance.get_output_file().as_dict()
instance.db_send()
|