Help:Bots/fa
![]() |
توجه: وقتی که شما این صفحه را ویرایش کنید ، در واقع شما توافق کردید که تحت CC0 با ما همکاری می کنید. برای اطلاعات بیشتر
صفحهی کمک برای دامنههای عمومی را نگاه کنید. |
![]() |
ربات یک برنامۀ کامپیوتری است که صفحات ویکی را به صورت خودکار بهروزرسانی و بازبینی میکند.
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.
به صورت معمول، ویرایشهای ربات در تغییرات اخیر پنهان هستند.
== چارچوبها و رابطهای کاربری ==
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' permissions.
pywikipediabot[edit | edit source]
بسیاری از رباتهای ویکیپدیا با استفاده از کدهای Pywikipediabot ساخته میشوند. این کدها مبتنی بر زبان برنامهنویسی پایتون است. (add_text.py), adding some wikilinks (replace.py), moving old contents of talk pages to subpages (archivebot.py), editing categories (category.py), or managing templates (template.py).
wiki-java[edit | edit source]
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.
Extension alternatives[edit | edit source]
- 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.
- Extension:ReplaceText is another option.