Slumber client used to access various edX Platform REST APIs.
Project description
The edX REST API Client (henceforth, client) allows users to communicate with various edX REST APIs, including the E-Commerce Service and the Programs Service.
Testing
$ make validate
Clients & REST API Clients code
Open edX services, including LMS, should use the OAuthAPIClient class to make OAuth2 client requests and REST API calls.
Usage
By default the OAuthAPIClient object can be used like any requests.Session object and you can follow the docs that the requests library provides.
The OAuthAPIClient sessions makes some extra requests to get access tokens from the auth endpoints. These requests have a default timeout that can be overridden by passing in a timeout parameter when instantiating the OAuthAPIClient object.
# create client with default timeouts for token retrieval
client = OAuthAPIClient('https://lms.root', 'client_id', 'client_secret')
# create client, overriding default timeouts for token retrieval
client = OAuthAPIClient('https://lms.root', 'client_id', 'client_secret', timeout=(6.1, 2))
client = OAuthAPIClient('https://lms.root', 'client_id', 'client_secret',
timeout=(REQUEST_CONNECT_TIMEOUT, 3)
)
# for a request to some.url, a separate timeout should always be set on your requests
client.get('https://some.url', timeout=(3.1, 0.5))
The value of the timeout setting is the same as for any request made with the requests library. See the Requests timeouts documentation for more details.
Additional Requirements
The OAuthAPIClient uses the TieredCache internally for caching. Read more about the requirements of TieredCache, which include Django caching and some custom middleware.
How to Contribute
Contributions are very welcome, but for legal reasons, you must submit a signed individual contributor’s agreement before we can accept your contribution. See our CONTRIBUTING file for more information – it also contains guidelines for how to maintain high code quality, which will make your contribution more likely to be accepted.
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 edx-rest-api-client-5.2.1.tar.gz
.
File metadata
- Download URL: edx-rest-api-client-5.2.1.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d93912779c088e210a494617c480c194b93d30249d31414c5a7264b132ca117 |
|
MD5 | 2d9ed2f239b57d0f84c494af8ba7f975 |
|
BLAKE2b-256 | 656244010d50d5145b16469fbce32d936287b1492d4cda8c667be98c986acff4 |
File details
Details for the file edx_rest_api_client-5.2.1-py3-none-any.whl
.
File metadata
- Download URL: edx_rest_api_client-5.2.1-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.5.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4e775eee8ba76f2483a6116c02bf9b0a80f5fedfe139f2fe635cc2ebfa09e45 |
|
MD5 | 9d799d44308a8beadf7ddf09c6f4b91b |
|
BLAKE2b-256 | 5bce0994f590ec80249af162355ccc1a86b35cda40136bc1c15b3d779f2ab0c8 |