OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
oauthlib
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/17/2025 09:32:20 AM
rwxr-xr-x
📄
__init__.py
520 bytes
10/19/2017 04:13:25 PM
rw-r--r--
📁
__pycache__
-
10/21/2019 03:49:53 PM
rwxr-xr-x
📄
common.py
14.21 KB
10/19/2017 04:13:25 PM
rw-r--r--
📁
oauth1
-
10/21/2019 03:49:53 PM
rwxr-xr-x
📁
oauth2
-
10/21/2019 03:49:53 PM
rwxr-xr-x
📄
signals.py
1.49 KB
10/19/2017 04:13:25 PM
rw-r--r--
📄
uri_validate.py
7.43 KB
10/19/2017 04:13:25 PM
rw-r--r--
Editing: __init__.py
Close
""" oauthlib ~~~~~~~~ A generic, spec-compliant, thorough implementation of the OAuth request-signing logic. :copyright: (c) 2011 by Idan Gazit. :license: BSD, see LICENSE for details. """ __author__ = 'Idan Gazit <idan@gazit.me>' __version__ = '2.0.6' import logging try: # Python 2.7+ from logging import NullHandler except ImportError: class NullHandler(logging.Handler): def emit(self, record): pass logging.getLogger('oauthlib').addHandler(NullHandler())