A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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