您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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)