You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
712 B
24 lines
712 B
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
requests._oauth
|
|
~~~~~~~~~~~~~~~
|
|
|
|
This module contains the path hack necessary for oauthlib to be vendored into
|
|
requests while allowing upstream changes.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
try:
|
|
from oauthlib.oauth1 import rfc5849
|
|
from oauthlib.common import extract_params
|
|
from oauthlib.oauth1.rfc5849 import (Client, SIGNATURE_HMAC, SIGNATURE_TYPE_AUTH_HEADER)
|
|
except ImportError:
|
|
directory = os.path.dirname(__file__)
|
|
path = os.path.join(directory, 'packages')
|
|
sys.path.insert(0, path)
|
|
from oauthlib.oauth1 import rfc5849
|
|
from oauthlib.common import extract_params
|
|
from oauthlib.oauth1.rfc5849 import (Client, SIGNATURE_HMAC, SIGNATURE_TYPE_AUTH_HEADER)
|
|
|