A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

16 Zeilen
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.")