Want to help edit Wikiwrimo? It's easy. Click the Create Account button to get started.

Help:Bots: Difference between revisions

From Wikiwrimo
Jump to navigationJump to search
No edit summary
(changed email)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Running your own bot==
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.
*{{mediawiki|meta:pywikipediabot}}
:''For what use?'' E.g. add a footer to some categorized pages,<ref>{{mediawiki|meta:pywikipediabot/add_text.py|add_text.py}}</ref> add some wikilinks,<ref>{{mediawiki|meta:pywikipediabot/replace.py|replace.py}}</ref> archive in moving old talk to subpages,<ref>{{mediawiki|meta:pywikipediabot/archivebot.py|archivebot.py}}</ref> edit categories,<ref>{{mediawiki|meta:pywikipediabot/category.py|category.py}}</ref> manage templates.<ref>{{mediawiki|meta:pywikipediabot/template.py|template.py}}</ref>


:::{| style="font-color:#535068; border:solid 0px #A8A8A8; background-color:#FFFFFF;font-size:75%;"
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]]. If you're interested in creating a bot for Wikiwrimo, please contact us at sushimustwrite at this domain to discuss your plans for the bot.
|[[File:Crystal Clear action run.png|40px]]
|<tt><references/></tt>
|}


=== Frameworks and interfaces for bot development ===
By default, bot edits are hidden in [[Special:RecentChanges|{{ns:special}}:{{MediaWiki:Recentchanges}}]].  
:''See '''{{mediawiki|API:Client Code}}'''''
MediaWiki {{mediawiki|API}} is for convenient access to machine-readable data.


== See also ==
== Framework and interface for bot development ==
* {{mediawiki|meta:Bot}}
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 [http://www.mediawiki.org/wiki/API:Client_code MediaWiki's 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]].


[[Category:Help|{{PAGENAME}}]]
[[Category:Help|{{PAGENAME}}]]

Latest revision as of 23:06, 11 December 2010

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. If you're interested in creating a bot for Wikiwrimo, please contact us at sushimustwrite at this domain to discuss your plans for the bot.

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 standardised communication between two computer programs. Check MediaWiki's 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.