File: __init__.py

package info (click to toggle)
python-oauthlib 3.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,420 kB
  • sloc: python: 11,599; sh: 16; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 353 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
oauthlib.oauth2.rfc8628
~~~~~~~~~~~~~~~~~~~~~~~

This module is an implementation of various logic needed
for consuming and providing OAuth 2.0 Device Authorization RFC8628.
"""

from oauthlib.oauth2.rfc8628.errors import (
    SlowDownError,
    AuthorizationPendingError,
    ExpiredTokenError,
)
import logging

log = logging.getLogger(__name__)