Menu

[r510]: / trunk / users_guide / code / runall.py  Maximize  Restore  History

Download this file

36 lines (31 with data), 701 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import os
files = (
'alignment_demo.py',
'axes_demo.py',
'color_demo.py',
'date_ticker_demo.py',
'figure_mosaic.py',
'fonts_demo_kw.py',
'from_pil.py',
'image_demo.py',
'image_origin.py',
'layer_images.py',
'linear_regression.py',
'major_minor_demo.py',
'mathtext_demo.py',
'poly_regression.py',
'simple_imshow.py',
'simple_plot_tkagg.py',
'subplot_demo.py',
)
for fname in files:
print 'Running', fname
os.system('python %s' % fname)
"""
simple_plot_tkagg.png
simple_plot_tkagg_labeled.png
simple_plot_tkagg_sine.png
simple_plot_tkagg.eps
simple_plot_tkagg_labeled.eps
simple_plot_tkagg_sine.eps
"""
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.