Rename AppAuthHandler to Oauth2AppHandler
authorHarmon <Harmon758@gmail.com>
Fri, 7 Jan 2022 11:06:47 +0000 (05:06 -0600)
committerHarmon <Harmon758@gmail.com>
Fri, 7 Jan 2022 11:06:47 +0000 (05:06 -0600)
Keep AppAuthHandler as deprecated alias

tweepy/__init__.py
tweepy/auth.py

index 6db021de9f301e45555dea2050b55948ed606f02..3747b1b51cccc2658225e5d0da9b1286a30c5ce7 100644 (file)
@@ -10,7 +10,9 @@ __author__ = 'Joshua Roesslein'
 __license__ = 'MIT'
 
 from tweepy.api import API
-from tweepy.auth import AppAuthHandler, OAuthHandler, OAuth2Handler
+from tweepy.auth import (
+    AppAuthHandler, OAuthHandler, OAuth2AppHandler, OAuth2Handler
+)
 from tweepy.cache import Cache, FileCache, MemoryCache
 from tweepy.client import Client, Response
 from tweepy.cursor import Cursor
index 3f92dd1ad92c1b67ae888e9c4e3069e4ef51dab6..d8b30ac48f9f6f374fbdae1519f61559926a761e 100644 (file)
@@ -173,7 +173,7 @@ class OAuth2Bearer(AuthBase):
         return request
 
 
-class AppAuthHandler(AuthHandler):
+class OAuth2AppHandler(AuthHandler):
     """Application-only authentication handler"""
 
     OAUTH_HOST = 'api.twitter.com'
@@ -200,3 +200,5 @@ class AppAuthHandler(AuthHandler):
 
     def apply_auth(self):
         return OAuth2Bearer(self._bearer_token)
+
+AppAuthHandler = OAuth2AppHandler