OXIESEC PANEL
- Current Dir:
/
/
lib
/
python3.9
/
site-packages
/
oauthlib
Server IP: 103.185.75.71
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/27/2025 09:17:57 AM
rwxr-xr-x
📄
__init__.py
686 bytes
06/01/2021 07:11:24 PM
rw-r--r--
📁
__pycache__
-
12/12/2023 08:22:19 AM
rwxr-xr-x
📄
common.py
13.11 KB
06/01/2021 07:11:24 PM
rw-r--r--
📁
oauth1
-
12/12/2023 08:22:19 AM
rwxr-xr-x
📁
oauth2
-
12/12/2023 08:22:19 AM
rwxr-xr-x
📁
openid
-
12/12/2023 08:22:19 AM
rwxr-xr-x
📄
signals.py
1.45 KB
06/01/2021 07:11:24 PM
rw-r--r--
📄
uri_validate.py
5.97 KB
04/06/2023 07:55:12 PM
rw-r--r--
Editing: __init__.py
Close
""" 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.1.1' 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