mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-21 02:13:01 -08:00
0d1d2a3e6b
* Bump requests-oauthlib from 1.3.1 to 2.0.0 Bumps [requests-oauthlib](https://github.com/requests/requests-oauthlib) from 1.3.1 to 2.0.0. - [Release notes](https://github.com/requests/requests-oauthlib/releases) - [Changelog](https://github.com/requests/requests-oauthlib/blob/master/HISTORY.rst) - [Commits](https://github.com/requests/requests-oauthlib/compare/v1.3.1...v2.0.0) --- updated-dependencies: - dependency-name: requests-oauthlib dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update requests-oauthlib==2.0.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
35 lines
686 B
Python
35 lines
686 B
Python
"""
|
|
oauthlib
|
|
~~~~~~~~
|
|
|
|
A generic, spec-compliant, thorough implementation of the OAuth
|
|
request-signing logic.
|
|
|
|
:copyright: (c) 2019 by The OAuthlib Community
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
import logging
|
|
from logging import NullHandler
|
|
|
|
__author__ = 'The OAuthlib Community'
|
|
__version__ = '3.2.2'
|
|
|
|
logging.getLogger('oauthlib').addHandler(NullHandler())
|
|
|
|
_DEBUG = False
|
|
|
|
def set_debug(debug_val):
|
|
"""Set value of debug flag
|
|
|
|
:param debug_val: Value to set. Must be a bool value.
|
|
"""
|
|
global _DEBUG
|
|
_DEBUG = debug_val
|
|
|
|
def get_debug():
|
|
"""Get debug mode value.
|
|
|
|
:return: `True` if debug mode is on, `False` otherwise
|
|
"""
|
|
return _DEBUG
|