Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 7f1fdfd0c8d8b0d7ae66f55495728763 > files > 13

python-googlechart-0.2.1-5.mga4.noarch.rpm

from glob import glob

examples = glob('*.py')
notexamples = ['settings.py', 'helper.py', 'all.py']

for example in examples:
    if example in notexamples:
        continue
    module = example[:-3]
    print module
    __import__(module).main()