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.

21 rinda
577 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 `from wiki import tools`.
  8. """
  9. from wiki.tools.constants import *
  10. from wiki.tools.exceptions import *
  11. from wiki.tools.functions import *
  12. from wiki.tools.category import Category
  13. from wiki.tools.page import Page
  14. from wiki.tools.site import Site
  15. from wiki.tools.user import User