Alpaca/src/connection_handler.py

31 lines
1.1 KiB
Python
Raw Normal View History

2024-07-07 20:41:25 -06:00
# connection_handler.py
2024-05-12 18:18:25 -06:00
import json, requests
2024-07-07 20:41:25 -06:00
#OK=200 response.status_code
2024-05-25 23:03:26 -06:00
url = None
2024-06-28 21:29:36 -06:00
bearer_token = None
def get_headers(include_json:bool) -> dict:
headers = {}
if include_json:
headers["Content-Type"] = "application/json"
2024-06-28 21:29:36 -06:00
if bearer_token:
headers["Authorization"] = "Bearer {}".format(bearer_token)
return headers if len(headers.keys()) > 0 else None
2024-05-25 23:03:26 -06:00
2024-05-12 18:18:25 -06:00
def simple_get(connection_url:str) -> dict:
2024-07-07 20:41:25 -06:00
return requests.get(connection_url, headers=get_headers(False))
2024-05-12 18:18:25 -06:00
2024-06-01 00:07:34 -06:00
def simple_post(connection_url:str, data) -> dict:
2024-07-07 20:41:25 -06:00
return requests.post(connection_url, headers=get_headers(True), data=data, stream=False)
2024-06-01 00:07:34 -06:00
2024-05-12 18:18:25 -06:00
def simple_delete(connection_url:str, data) -> dict:
2024-07-07 20:41:25 -06:00
return requests.delete(connection_url, headers=get_headers(False), json=data)
2024-05-12 18:18:25 -06:00
def stream_post(connection_url:str, data, callback:callable) -> dict:
2024-07-07 21:49:04 -06:00
response = requests.post(connection_url, headers=get_headers(True), data=data, stream=True)
if response.status_code == 200:
for line in response.iter_lines():
if line:
callback(json.loads(line.decode("utf-8")))
return response