Посібник:Pywikibot/Встановлення


Нижче наведено посібник, який допоможе вам налаштувати та запустити Pywikibot на власному комп’ютері. У цьому процесі є чотири основні етапи:
![]() |
Посібник:Pywikibot |
---|
|
Установка Python
Завантажте та встановіть Python з https://www.python.org/downloads/.
If you already have Python installed, check if your version is recent enough by running python --version
in a console.
If you have Python 3.5 or higher installed, your version of Python is recent enough.
У Windows, будь ласка, не забудьте змінити змінну середовища PATH, щоб змусити Python та pip працювати належним чином.
Установка залежностей
Для запуску програми Pywikibot необхідний додатковий пакет з назвою "requests". Використовуйте pip, який уже встановлений, якщо у вас Python 2.7.9 або вище, або Python 3.4 або вище. Виконайте таку команду, щоб встановити цей пакет:
$ pip install "requests>=2.20.1"
Установка Pywikibot
Завантажте поточний Pywikibot branch stable: .tar.gz, .zip.
Розпакуйте завантажений файл, наприклад, у ~/pywikibot
або C:\Users\username\pywikibot
.
Alternatively, you may retrieve the latest version using git or svn client from Gerrit, see Посібник:Pywikibot/Gerrit . This is the recommended way for active bot operators and developers to use Pywikibot.
Other versions are available at https://pywikibot.toolforge.org/.
Оновлення Pywikibot
Keep your bot framework up to date. New versions are released continuously, and are available at the same location.
If you are using git or svn release, you may skip this note. Otherwise please be aware of a necessity to backup your configuration files and scripts (user-config.py, any family file, or custom script that you might have created or changed, and any current XML dump file you're using for a wiki) before installing a new release.
Unpack the new version over the old version, overwriting all files.
Налаштування Pywikibot
Open Terminal on Unix-like (Linux/BSD/Solaris) or Command Prompt on Windows (typically under Windows System or Accessories folders in All apps or All programs menu inside the Start menu), and change directory to where you unpacked Pywikibot:
- UNIX-подібні операційні системи (Linux/BSD/Solaris):
$ cd ~/pywikibot
- Windows:
$ c: $ cd "\Users\username\pywikibot"
Звичайно, замініть місце, де ви розпакували Pywikibot.
Continue with the following command to generate user configuration file:
$ python pwb.py generate_user_files
Follow the prompts to configure Pywikibot.
Finally run the following command to log in to your wiki:
$ python pwb.py login
Use on third-party wikis
Pywikibot is pre-configured for a large number of wikis, but possibly not for the one you want to work on. See Manual:Pywikibot/Use on third-party wikis for how to configure Pywikibot for your wiki.
More configuration options
Pywikibot provides a wide range of configuration options to change the behavior of your bot. You can change these settings in the file user-config.py. See config2.py for a list of all parameters you can use.
Proxy configuration
Pywikibot relies on requests
for communicating with the web.
You can use HTTP_PROXY
and HTTPS_PROXY
environment variables to make requests use a proxy server.
Refer to requests' documentation for more info.
Run a script
Pywikibot comes packaged with a large number of scripts in the scripts directory. You can run all of these using:
$ python pwb.py [name of the script]
A list of all scripts is available at Посібник:Pywikibot/Скрипти .
Інші залежності
Most scripts do not require additional packages, but a few of them will not work without. These are listed in requirements.txt together with their dependencies.
To install dependencies for some script, use pip, and run the following command:
$ pip install [name of the package]
Alternatively, run the following command to install all dependencies for all scripts at once:
$ pip install -r requirements.txt
- If you need more help on setting up your Pywikibot visit the #pywikibot IRC channel connect or pywikibot@ mailing list.