OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17200
/
usr
/
lib
/
python3
/
dist-packages
/
oauthlib
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/18/2024 07:58:21 PM
rwxr-xr-x
📄
__init__.py
520 bytes
08/16/2015 12:11:35 PM
rw-r--r--
📁
__pycache__
-
02/18/2024 07:58:20 PM
rwxr-xr-x
📄
common.py
13.52 KB
08/16/2015 12:07:31 PM
rw-r--r--
📁
oauth1
-
02/18/2024 07:58:20 PM
rwxr-xr-x
📁
oauth2
-
02/18/2024 07:58:20 PM
rwxr-xr-x
📄
signals.py
1.49 KB
07/19/2015 08:30:55 AM
rw-r--r--
📄
uri_validate.py
7.43 KB
07/19/2015 08:30:55 AM
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__ = '1.0.3' 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())