mirror of
https://github.com/rembo10/headphones.git
synced 2026-03-20 19:59:26 +00:00
Mostly just updating libraries, removing string encoding/decoding, fixing some edge cases. No new functionality was added in this commit.
15 lines
504 B
Python
15 lines
504 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
oauthlib.oauth2.rfc6749
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
This module is an implementation of various logic needed
|
|
for consuming OAuth 2.0 RFC6749.
|
|
"""
|
|
from .backend_application import BackendApplicationClient
|
|
from .base import AUTH_HEADER, BODY, URI_QUERY, Client
|
|
from .legacy_application import LegacyApplicationClient
|
|
from .mobile_application import MobileApplicationClient
|
|
from .service_application import ServiceApplicationClient
|
|
from .web_application import WebApplicationClient
|