Difference between revisions of "Help:Bots"

From The SBN Wiki
Jump to navigation Jump to search
m (1 revision: Media Wiki Help Pages)
 
m (1 revision imported)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{PD Help Page}}
+
<languages/>
 +
{{TNT|PD Help Page}}
  
 +
<translate>
 +
<!--T:1-->
 
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.
 
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 [[Help:Sysops and permissions|admins]].  
+
<!--T:2-->
 +
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 [[<tvar|help-sysops>Special:MyLanguage/Help:Sysops and permissions</>|admins]].  
  
By default, bot edits are hidden in [[Special:RecentChanges|{{ns:special}}:{{MediaWiki:Recentchanges}}]].  
+
<!--T:3-->
 +
By default, bot edits are hidden in [[Special:RecentChanges|{{ns:special}}:{{MediaWiki:Recentchanges}}]].
  
== Framework and interface for bot development ==
+
== Framework and interface for bot development == <!--T:4-->
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|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' [[Help:Assigning permissions|permissions]].
+
<!--T:5-->
 +
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 standardized communication between two computer programs. Check {{mediawiki|API:Client code}} for more information.
  
=== pywikipediabot ===
+
<!--T:6-->
{{mediawiki|Manual: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 ([[Pywikipediabot/add text.py|add_text.py]]), adding some [[Help:Links|wikilinks]] ({{mediawiki|Manual:pywikipediabot/replace.py|replace.py}}), moving old contents of [[Help:Talk pages|talk pages]] to [[Help:Subpages|subpages]] ({{mediawiki|Manual:pywikipediabot/archivebot.py|archivebot.py}}), editing [[Help:Categories|categories]] ({{mediawiki|Manual:pywikipediabot/category.py|category.py}}), or managing [[Help:Templates|templates]] ({{mediawiki|Manual:pywikipediabot/template.py|template.py}}).
+
To access a wiki through the API a bot must have a user account, which has been granted 'bot' [[<tvar|help-permissions>Special:MyLanguage/Help:Assigning permissions</>|permissions]].
  
=== wiki-java ===
+
=== pywikibot === <!--T:7-->
<span class="plainlinks">[http://code.google.com/p/wiki-java/ wiki-java]</span> is a lightweight Java framework for bot/application development and can be used to perform various tasks, such as uploading files, adding text to articles, parsing templates, basic I/O, ect. The library also comes with simple, but powerful standalone bot methods that can be readily utilized by a programmer.
 
  
== Extension alternatives ==
+
<!--T:8-->
* [[:mw:Extension:MassEditRegex|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.
+
[[<tvar|pywiki>Special:MyLanguage/Manual:pywikibot</>|Pywikibot]] 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 ([[<tvar|pywiki-add>Special:MyLanguage/Pywikipediabot/add text.py</>|add_text.py]]), adding some [[<tvar|help-links>Special:MyLanguage/Help:Links</>|wikilinks]] ({{mediawiki|Manual:pywikipediabot/replace.py|replace.py}}), moving old contents of [[<tvar|help-talkpages>Special:MyLanguage/Help:Talk pages</>|talk pages]] to [[<tvar|help-subpages>Special:MyLanguage/Help:Subpages</>|subpages]] ({{mediawiki|Manual:pywikipediabot/archivebot.py|archivebot.py}}), editing [[<tvar|help-cats>Special:MyLanguage/Help:Categories</>|categories]] ({{mediawiki|Manual:pywikipediabot/category.py|category.py}}), or managing [[<tvar|help-templates>Special:MyLanguage/Help:Templates</>|templates]] ({{mediawiki|Manual:pywikipediabot/template.py|template.py}}).
  
* [[Extension:ReplaceText]] is another option.
+
=== wiki-java === <!--T:9-->
  
== See also ==
+
<!--T:10-->
* {{mediawiki|meta:Bot}}
+
<tvar|url><span class="plainlinks">[http://code.google.com/p/wiki-java/ wiki-java]</span></> is a lightweight Java framework for bot/application development and can be used to perform various tasks, such as uploading files, adding text to articles, parsing templates, basic I/O, etc. The library also comes with simple, but powerful standalone bot methods that can be readily utilized by a programmer.
  
{{Languages}}
+
=== Chris G's botclasses === <!--T:16-->
  
[[Category:Help|{{PAGENAME}}]]
+
<!--T:17-->
 +
[[<tvar|man>Special:MyLanguage/Manual:Chris G's botclasses</>|Chris G's botclasses]] compose a PHP MediaWiki bot framework hosted at the toolserver.
 +
 
 +
== Extension alternatives == <!--T:11-->
 +
 
 +
<!--T:12-->
 +
* [[:<tvar|ext-massedit>Special:MyLanguage/Extension:MassEditRegex</>|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.
 +
</translate>
 +
<translate>
 +
<!--T:13-->
 +
* [[<tvar|ext-replacetxt>Special:MyLanguage/Extension:ReplaceText</>|Extension:ReplaceText]] is another option.
 +
 
 +
== See also == <!--T:14-->
 +
 
 +
</translate>
 +
* {{mediawiki|meta:special:MyLanguage/Bot}}
 +
 
 +
[[Category:Help{{langcat|Bots}}|{{PAGENAME}}]]

Latest revision as of 14:20, 15 July 2015

<languages/> Template:TNT

<translate> 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 [[<tvar|help-sysops>Special:MyLanguage/Help:Sysops and permissions</>|admins]].

By default, bot edits are hidden in Special:Recent changes.

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 standardized communication between two computer programs. Check 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' [[<tvar|help-permissions>Special:MyLanguage/Help:Assigning permissions</>|permissions]].

pywikibot

[[<tvar|pywiki>Special:MyLanguage/Manual:pywikibot</>|Pywikibot]] 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 ([[<tvar|pywiki-add>Special:MyLanguage/Pywikipediabot/add text.py</>|add_text.py]]), adding some [[<tvar|help-links>Special:MyLanguage/Help:Links</>|wikilinks]] (replace.py), moving old contents of [[<tvar|help-talkpages>Special:MyLanguage/Help:Talk pages</>|talk pages]] to [[<tvar|help-subpages>Special:MyLanguage/Help:Subpages</>|subpages]] (archivebot.py), editing [[<tvar|help-cats>Special:MyLanguage/Help:Categories</>|categories]] (category.py), or managing [[<tvar|help-templates>Special:MyLanguage/Help:Templates</>|templates]] (template.py).

wiki-java

<tvar|url>wiki-java</> is a lightweight Java framework for bot/application development and can be used to perform various tasks, such as uploading files, adding text to articles, parsing templates, basic I/O, etc. The library also comes with simple, but powerful standalone bot methods that can be readily utilized by a programmer.

Chris G's botclasses

[[<tvar|man>Special:MyLanguage/Manual:Chris G's botclasses</>|Chris G's botclasses]] compose a PHP MediaWiki bot framework hosted at the toolserver.

Extension alternatives

  • [[:<tvar|ext-massedit>Special:MyLanguage/Extension:MassEditRegex</>|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.

</translate> <translate>

  • [[<tvar|ext-replacetxt>Special:MyLanguage/Extension:ReplaceText</>|Extension:ReplaceText]] is another option.

See also

</translate>

[[Category:HelpTemplate:Langcat|Bots]]