OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
888
/
usr
/
lib
/
python3
/
dist-packages
/
oauthlib
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
__init__.py
686 bytes
10/17/2022 07:42:43 PM
rw-r--r--
📁
__pycache__
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
common.py
13.06 KB
09/06/2022 08:10:05 PM
rw-r--r--
📁
oauth1
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📁
oauth2
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📁
openid
-
03/18/2025 08:12:15 AM
rwxr-xr-x
📄
signals.py
1.45 KB
06/01/2021 12:20:37 PM
rw-r--r--
📄
uri_validate.py
5.97 KB
10/17/2022 07:37:37 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.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