def get_talkpage(self): """Return a Page object representing the user's talkpage. No checks are made to see if it exists or not. Proper site namespace conventions are followed. """ prefix = self.site.namespace_id_to_name(constants.NS_USER_TALK) pagename = ':'.join((prefix, self._name)) return Page(self.site, pagename)
def get_page(self, title, follow_redirects=False, pageid=None): """Return a :py:class:`Page` object for the given title. *follow_redirects* is passed directly to :py:class:`~earwigbot.wiki.page.Page`'s constructor. Also, this will return a :py:class:`~earwigbot.wiki.category.Category` object instead if the given title is in the category namespace. As :py:class:`~earwigbot.wiki.category.Category` is a subclass of :py:class:`~earwigbot.wiki.page.Page`, this should not cause problems. Note that this doesn't do any direct checks for existence or redirect-following: :py:class:`~earwigbot.wiki.page.Page`'s methods provide that. """ title = self._unicodeify(title) prefixes = self.namespace_id_to_name(constants.NS_CATEGORY, all=True) prefix = title.split(":", 1)[0] if prefix != title: # Avoid a page that is simply "Category" if prefix in prefixes: return Category(self, title, follow_redirects, pageid, self._logger) return Page(self, title, follow_redirects, pageid, self._logger)