-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht_request.py
29 lines (22 loc) · 922 Bytes
/
t_request.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import os
import requests
import json
# To set your environment variables in your terminal run the following line:
# export 'BEARER_TOKEN'='<your_bearer_token>'
class BearerOauth(requests.auth.AuthBase):
def __call__(self, r):
bearer_token = os.environ.get("BEARER_TOKEN")
if bearer_token is None:
raise Exception("Error, please set your twitter token in the BEARER_TOKEN environment variable")
r.headers["Authorization"] = f"Bearer {bearer_token}"
r.headers["User-Agent"] = "v2RecentSearchPython"
return r
class TRequest:
def __init__(self, url):
self.url = url
def connect_to_endpoint(self, params):
response = requests.get(self.url, auth=BearerOauth(), params=params)
#print (response.json())
if response.status_code != 200:
print ("Error, non 200 response received.")
return response.json()