1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-21 20:44:18 +00:00
pds-2021-g2-nest/nest_crawler/authentication.py

20 lines
417 B
Python

import tweepy as tw
import os
def authenticate():
c_k = os.getenv('C_K')
c_s = os.getenv('C_S')
a_t = os.getenv('A_T')
a_t_s = os.getenv('A_T_S')
auth = tw.OAuthHandler(c_k, c_s)
auth.set_access_token(a_t, a_t_s)
api = tw.API(auth, wait_on_rate_limit=True)
# client = tw.Client(b_t, c_k, c_s, a_t, a_t_s, wait_on_rate_limit=True);
return api
__all__ = (
"authenticate",
)