A generic MediaWiki OAuth handshake helper.
Project description
MediaWiki OAuth Library
mwoauth is an open licensed (MIT) library designed to provide a simple means to performing an OAuth handshake with a MediaWiki installation with the OAuth Extension installed.
Compatible with python 2.7 and 3.x
Install with pip: pip install mwoauth
Documentation: http://pythonhosted.org/mwoauth
Usage
from mwoauth import ConsumerToken, Handshaker
from six.moves import input # For compatibility between python 2 and 3
# Consruct a "consumer" from the key/secret provided by MediaWiki
import config
consumer_token = ConsumerToken(config.consumer_key, config.consumer_secret)
# Construct handshaker with wiki URI and consumer
handshaker = Handshaker("https://en.wikipedia.org/w/index.php",
consumer_token)
# Step 1: Initialize -- ask MediaWiki for a temporary key/secret for user
redirect, request_token = handshaker.initiate()
# Step 2: Authorize -- send user to MediaWiki to confirm authorization
print("Point your browser to: %s" % redirect) #
response_qs = input("Response query string: ")
# Step 3: Complete -- obtain authorized key/secret for "resource owner"
access_token = handshaker.complete(request_token, response_qs)
print(str(access_token))
# Step 4: Identify -- (optional) get identifying information about the user
identity = handshaker.identify(access_token)
print("Identified as {username}.".format(**identity))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mwoauth-0.3.2.tar.gz
(9.5 kB
view details)
Built Distributions
mwoauth-0.3.2-py3.5.egg
(24.0 kB
view details)
mwoauth-0.3.2-py2-none-any.whl
(13.2 kB
view details)
File details
Details for the file mwoauth-0.3.2.tar.gz
.
File metadata
- Download URL: mwoauth-0.3.2.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
72abdbda5f52f6c819ff045b67b42fd77712f7392cdb1ffe19bf0452caf938cf
|
|
MD5 |
5d663de1da034f3fab12d5c4254a65ad
|
|
BLAKE2b-256 |
77b8c742c50965061dd0434d83fab9142d768fe87ba131ef0764728616789cd9
|
File details
Details for the file mwoauth-0.3.2-py3.5.egg
.
File metadata
- Download URL: mwoauth-0.3.2-py3.5.egg
- Upload date:
- Size: 24.0 kB
- Tags: Egg
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.15.0 CPython/3.5.1+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d9d41e31baf108459fbe11e97a83f1896fbcab2b1578a6e6f979f66d80cb6999
|
|
MD5 |
1dd7b245a2154b211f44471dff915b5e
|
|
BLAKE2b-256 |
7ae22ad5b40a1c768b5eb5bb1ceee96e896a7059f07263219796ca1e64c6ba67
|
File details
Details for the file mwoauth-0.3.2-py2-none-any.whl
.
File metadata
- Download URL: mwoauth-0.3.2-py2-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
514ef00868fb9da2c82d45a4cb633d31e57ebf861284c2147cf411dccffc4b42
|
|
MD5 |
b09c68fbf7d7543d259f2c9a38073f3e
|
|
BLAKE2b-256 |
96e61faffe0a53cfaedb194e1145926cb462355cf32e5fe6edf4a7398102368d
|