A Python robot that edits Wikipedia and interacts with people over IRC https://en.wikipedia.org/wiki/User:EarwigBot
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

21 líneas
524 B

  1. # -*- coding: utf-8 -*-
  2. """
  3. EarwigBot's Wiki Toolset
  4. This is a collection of classes and functions to read from and write to
  5. Wikipedia and other wiki sites. No connection whatsoever to python-wikitools
  6. written by Mr.Z-man, other than a similar purpose. We share no code.
  7. Import the toolset with `import wiki`.
  8. """
  9. from wiki.constants import *
  10. from wiki.exceptions import *
  11. from wiki.functions import *
  12. from wiki.category import Category
  13. from wiki.page import Page
  14. from wiki.site import Site
  15. from wiki.user import User