Manual:Pywikibot/Installation/it

Questa pagina fornisce assistenza all'utilizzo di Pywikibot sul tuo computer, su Toolforge o usando PAWS: A Web Shell
Su PAWS

PAWS: A Web Shell è la maniera più semplice di cominciare ad utilizzare Pywikibot. L'installazione non è necessaria, si può usare l'interfaccia web per dare i comandi

Sul tuo computer

Di seguito è riportato un manuale per aiutarti a configurare e avviare Pywikibot sul tuo computer. Ci sono quattro passaggi principali in questo processo:

"Toolforge" ti fornisce un'infrastruttura cloud stabile sui server Wikimedia, che ti consente di eseguire bot in modo continuo o secondo una pianificazione.

Installare Python

Scaricare e installare Python dalla pagina https://www.python.org/downloads/. Make absolutely certain that you check the box at the bottom of the install wizard asking if you want to add Python to PATH! That will allow you to access Python from any command prompt just by typing the keyword python3.

Se Python è già installato sul tuo computer, controlla che la tua versione sia compatibile eseguendo python --version. To discover if Python version 3 or above is installed, run python3 --version in a console.

Ubuntu 19.04 and up comes with versions 2 & 3 installed. Python v2 runs by default using terminal command python; to use v3, use terminal command python3.

Python 3.8 or higher is currently required to run the bot.

On Windows please do not forget to modify PATH environment variable to make Python and pip work properly.

Installare le dipendenze

Sono necessari pacchetti aggiuntivi per eseguire Pywikibot. Esegui il seguente comando per installare questi pacchetti:

$ python3 -m pip install "requests>=2.20.1"
$ python3 -m pip install "mwparserfromhell>=0.5.2"
$ python3 -m pip install packaging

Per Python 3.7 è necessario un pacchetto aggiuntivo. Installa il pacchetto con:

$ python3 -m pip install importlib_metadata

Un parser alternativo per il markup di MediaWiki può essere installato con:

$ python3 -m pip install "wikitextparser>=0.47.5"

See also https://doc.wikimedia.org/pywikibot/stable/introduction.html#quick-start


Installare Pywikibot

$ python3 -m pip install pywikibot

If using pip, use pwb instead of python3 pwb.py in examples below.

Scarica Pywikibot stable: .tar.gz, .zip.

Scompatta il file scaricato, ad esempio in ~/pywikibot or %USERPROFILE%\pywikibot.

Alternatively, you may retrieve the latest version using git or svn client from Gerrit, see Manual:Pywikibot/Gerrit#For users. This is the recommended way for active bot operators and developers to use Pywikibot.

Le vecchie versioni sono disponibili in https://pywikibot.toolforge.org/.

Aggiornare Pywikibot

Tieni il framework del tuo bot aggiornato. Tieni il framework del tuo bot aggiornato. Le nuove versioni sono rilasciate continuamente, e sono disponibili agli stessi indirizzi.

Se stai usando la release git o svn, puoi ignorare questa nota. Altrimenti, prendi in considerazione la necessità di eseguire un backup dei file di configurazione e degli script (user-config.py, qualsiasi altro file tu abbia creato o modificato e i file di dump XML delle wiki sulle quali lavori) prima di installare la release.

Per aggiornare, scompatta semplicemente la nuova versione sulla vecchia sovrascrivendo tutti i file.

Configurazione di 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-like (Linux/BSD/Solaris):
$ cd ~/core
Windows:
$ c:
$ cd "%USERPROFILE%\pywikibot"

Sostituisci il percorso con quello in cui hai estratto Pywikibot.

Continua con il seguente comando per generare il file di configurazione dell'utente:

$ python3 pwb.py generate_user_files

Segui le istruzioni per configurare Pywikibot.

Finally run the following command to log in to your wiki:

$ python3 pwb.py login

Utilizzare in wiki di terze parti

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 config.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:

$ python3 pwb.py [name of the script]

To learn more about running basic Pywikibot scripts, see:

A list of all scripts is available at Manual:Pywikibot/Scripts and doc.wikimedia.org/pywikibot.

Altre dipendenze

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:

$ python3 -m pip install [name of the package]

Alternatively, run the following command to install all dependencies for all scripts at once:

$ python3 -m pip install -r requirements.txt
Se hai bisogno di ulteriore aiuto per configurare il tuo Pywikibot visita il canale IRC #pywikibot connect o la mailing list pywikibot@.
Category:Pywikibot/it#installation
Category:Pywikibot/it