A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

26 lignes
485 B

  1. # -*- coding: utf-8 -*-
  2. # EarwigBot Configuration File
  3. # This file contains information that the bot uses to connect to IRC.
  4. # our server's hostname
  5. HOST = "irc.freenode.net"
  6. # our server's port
  7. PORT = 6667
  8. # our nick
  9. NICK = "EarwigBot|2"
  10. # our ident
  11. IDENT = "earwigbot"
  12. # our real name
  13. REALNAME = "[[w:en:User:EarwigBot]]"
  14. # channel to join on startup
  15. CHANS = ["##earwigbot"]
  16. # hostnames of users who can update/restart the bot with !update
  17. ADMINS = ["wikipedia/The-Earwig"]