A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

16 linhas
335 B

  1. # -*- coding: utf-8 -*-
  2. import time
  3. from subprocess import *
  4. def main():
  5. while 1:
  6. call(['python', 'core/main.py'])
  7. time.sleep(5) # sleep for five seconds between bot runs
  8. if __name__ == "__main__":
  9. try:
  10. main()
  11. except KeyboardInterrupt:
  12. exit("\nKeyboardInterrupt: stopping bot wrapper.")