6807104586a8252f4f08cd5e9d81b30d6b43b406
[com/gs-lite.git] / demo / CSVEXAMPLE / gen_feed.py
1 import os
2 import time
3
4 while True:
5         while os.path.isfile("exampleCsv"):
6                 time.sleep(1)
7         os.system("cp example.data exampleCsvX ; mv exampleCsvX exampleCsv")
8         time.sleep(1)
9