選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

watch.py 172 B

14年前
14年前
1234567891011
  1. """
  2. Watch the folder at regular intervals and build if files have been changed
  3. """
  4. if __name__=='__main__':
  5. import time, build
  6. while 1:
  7. build.run()
  8. time.sleep(5)