login
module#
Library to log the bot in to a wiki account.
- class login.BotPassword(suffix, password)[source]#
Bases:
object
BotPassword object for storage in password file.
BotPassword function by using a separate password paired with a suffixed username of the form <username>@<suffix>.
- Parameters:
suffix (str) – Suffix of the login name
password (str) – bot password
- Raises:
_PasswordFileWarning – suffix improperly specified
- class login.ClientLoginManager(password=None, site=None, user=None)[source]#
Bases:
LoginManager
Supply login_to_site method to use API interface.
Changed in version 8.0: 2FA login was enabled. LoginManager was moved from
data.api
tologin
module and renamed to ClientLoginManager.All parameters default to defaults in user-config.
- Parameters:
site (pywikibot.site.BaseSite | None) – Site object to log into
user (str | None) – username to use. If user is None, the username is loaded from config.usernames.
password (str | None) – password to use
- Raises:
pywikibot.exceptions.NoUsernameError – No username is configured for the requested site.
- get_login_token()[source]#
Fetch login token.
Deprecated since version 8.0.
- Returns:
login token
- Return type:
str | None
- login_to_site()[source]#
Login to the site.
Note, this doesn’t do anything with cookies. The http module takes care of all the cookie stuff. Throws exception on failure.
Changed in version 8.0: 2FA login was enabled.
- Return type:
None
- mapping = {'fail': ('Failed', 'FAIL'), 'ldap': ('lgdomain', 'domain'), 'password': ('lgpassword', 'password'), 'reason': ('reason', 'message'), 'result': ('result', 'status'), 'success': ('Success', 'PASS'), 'token': ('lgtoken', 'logintoken'), 'user': ('lgname', 'username')}#
- class login.LoginManager(password=None, site=None, user=None)[source]#
Bases:
object
Site login manager.
All parameters default to defaults in user-config.
- Parameters:
site (pywikibot.site.BaseSite | None) – Site object to log into
user (str | None) – username to use. If user is None, the username is loaded from config.usernames.
password (str | None) – password to use
- Raises:
pywikibot.exceptions.NoUsernameError – No username is configured for the requested site.
- botAllowed()[source]#
Check whether the bot is listed on a specific page.
This allows bots to comply with the policy on the respective wiki.
- Return type:
bool
- check_user_exists()[source]#
Check that the username exists on the site.
See also
- Raises:
pywikibot.exceptions.NoUsernameError – Username doesn’t exist in user list.
- Return type:
None
- login(retry=False, autocreate=False)[source]#
Attempt to log into the server.
See also
- Parameters:
retry (bool) – infinitely retry if the API returns an unknown error
autocreate (bool) – if true, allow auto-creation of the account using unified login
- Raises:
pywikibot.exceptions.NoUsernameError – Username is not recognised by the site.
- Return type:
bool
- readPassword()[source]#
Read passwords from a file.
Warning
Do not forget to remove read access for other users! Use chmod 600 for password-file.
All lines below should be valid Python tuples in the form
(code, family, username, password)
,(family, username, password)
or(username, password)
to set a default password for an username. The last matching entry will be used, so default usernames should occur above specific usernames.Note
For BotPasswords the password should be given as a
BotPassword
object.The file must be either encoded in ASCII or UTF-8.
Example:
('my_username', 'my_default_password') ('wikipedia', 'my_wikipedia_user', 'my_wikipedia_pass') ('en', 'wikipedia', 'my_en_wikipedia_user', 'my_en_wikipedia_pass') ('my_username', BotPassword('my_suffix', 'my_password'))
- Return type:
None
- class login.LoginStatus(value, names=None, *values, module=None, qualname=None, type=None, start=1, boundary=None)[source]#
Bases:
IntEnum
Enum for Login statuses.
>>> LoginStatus.NOT_ATTEMPTED LoginStatus(-3) >>> LoginStatus.IN_PROGRESS.value -2 >>> LoginStatus.NOT_LOGGED_IN.name 'NOT_LOGGED_IN' >>> int(LoginStatus.AS_USER) 0 >>> LoginStatus(-3).name 'NOT_ATTEMPTED' >>> LoginStatus(0).name 'AS_USER'
- AS_USER = 0#
- IN_PROGRESS = -2#
- NOT_ATTEMPTED = -3#
- NOT_LOGGED_IN = -1#
- class login.OauthLoginManager(password=None, site=None, user=None)[source]#
Bases:
LoginManager
Site login manager using OAuth.
All parameters default to defaults in user-config.
- Parameters:
site (pywikibot.site.BaseSite | None) – Site object to log into
user (str | None) – consumer key
password (str | None) – consumer secret
- Raises:
pywikibot.exceptions.NoUsernameError – No username is configured for the requested site.
ImportError – mwoauth isn’t installed
- property access_token: tuple[str, str] | None#
Return OAuth access key token and secret token.
See also
- property consumer_token: tuple[str, str]#
Return OAuth consumer key token and secret token.
See also
- property identity: dict[str, Any] | None#
Get identifying information about a user via an authorized token.