/+junk/pygooglechart-py3k

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/pygooglechart-py3k
1
2
3
4
5
6
7
8
9
10
11
12
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()