A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

26 wiersze
516 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"
  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", "##earwig", "#wikipedia-en-afc"]
  16. # hostnames of users who can update/restart the bot with !update
  17. ADMINS = ["wikipedia/The-Earwig"]