OAuthlib authentication support for Aiohttp.
Project description
This project provides first-class OAuth library support for Aiohttp.
Installation
To install requests and async-oauthlib you can use pip:
$ pip install requests Async-OAuthlib
The OAuth 1 workflow
OAuth 1 can seem overly complicated and it sure has its quirks. Luckily, async_oauthlib hides most of these and let you focus at the task at hand.
Accessing protected resources using async_oauthlib is as simple as:
>>> from async_oauthlib import OAuth1Session
>>> twitter = OAuth1Session('client_key',
client_secret='client_secret',
resource_owner_key='resource_owner_key',
resource_owner_secret='resource_owner_secret')
>>> url = 'https://api.twitter.com/1/account/settings.json'
>>> r = twitter.get(url)
Before accessing resources you will need to obtain a few credentials from your provider (e.g. Twitter) and authorization from the user for whom you wish to retrieve resources for. You can read all about this in the full OAuth 1 workflow guide on RTD.
The OAuth 2 workflow
OAuth 2 is generally simpler than OAuth 1 but comes in more flavours. The most common being the Authorization Code Grant, also known as the WebApplication flow.
Fetching a protected resource after obtaining an access token can be extremely simple. However, before accessing resources you will need to obtain a few credentials from your provider (e.g. Google) and authorization from the user for whom you wish to retrieve resources for. You can read all about this in the full OAuth 2 workflow guide on RTD.
>>> from async_oauthlib import OAuth2Session
>>> target = OAuth2Session()
>>> response = await target.request()
History
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
Built Distribution
File details
Details for the file Async-OAuthlib-0.0.9.tar.gz
.
File metadata
- Download URL: Async-OAuthlib-0.0.9.tar.gz
- Upload date:
- Size: 533.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b463a87d3dd9710b53d3db79f9e4d186ab187ef71d65f3852f818a4078e18908 |
|
MD5 | 6f06965a205f718e5b2bf2b9349ce198 |
|
BLAKE2b-256 | 33fa9c30101767dd711e54ae9dc695cb7b17647ab420b47cfccfd6c1417a8718 |
File details
Details for the file Async_OAuthlib-0.0.9-py2.py3-none-any.whl
.
File metadata
- Download URL: Async_OAuthlib-0.0.9-py2.py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4824da5bdf1b0d50e6dcdeb2556583c8f8b22b490355847c5740cf1dbfccc7eb |
|
MD5 | ecb110587fd4b5b996a31fb9cc45f802 |
|
BLAKE2b-256 | 6c3403e8bc7cdf83e4b0b1130cb12ed5b56381a65a020543936c05f146251e91 |