Help:Bots
| Content for this help page is provided by the MediaWiki wiki's Public Domain Help Pages project, which provides help page content that can be freely copied into fresh wiki installations and/or distributed with MediaWiki software; see Help:Contents for an overview of all pages.
We encourage you to also edit this page on the MediaWiki wiki with any updates. This helps contribute to other wiki projects. |
A bot is a computer program that automatically retrieves or updates wiki pages when it is executed. In general, bots are used for repetitive maintenance tasks, whose volume and characteristics are too large to be performed manually by users.
Developing and executing bots is normally outside the role of normal users, requires programming experience and must be done in coordination with the wiki's admins.
By default, bot edits are hidden in Special:Recent changes.
Contents |
[edit] Framework and interface for bot development
Bots do not access the wiki through the normal graphical user interface. MediaWiki has an API (Application Programming Interface) available for this purpose. An API is a protocol for standardised communication between two computer programs. Check
| MediaWiki has a page about this at: API:Client code |
for more information.
To access a wiki through the API a bot must have a user account, which has been granted 'bot' permissions.
[edit] pywikipediabot
| MediaWiki has a page about this at: meta:pywikipediabot |
provides a framework for the development of bots, which are commonly used to perform maintenance tasks such as adding a footer to some categorized pages (
| MediaWiki has a page about this at: add_text.py |
), adding some wikilinks (
| MediaWiki has a page about this at: replace.py |
), moving old contents of talk pages to subpages (
| MediaWiki has a page about this at: archivebot.py |
), editing categories (
| MediaWiki has a page about this at: category.py |
), or managing templates (
| MediaWiki has a page about this at: template.py |
).
[edit] The MassEditRegex extension
Extension:MassEditRegex provides an alternative way to perform mass edits using regular expressions, through a special page in the wiki. Only admins can normally use this extension.
[edit] See also
| MediaWiki has a page about this at: meta:Bot |
