romeotools/classes/http.py

11 lines
349 B
Python
Raw Permalink Normal View History

2022-09-08 12:32:31 +00:00
from urllib.request import Request, urlopen
from const import USER_AGENT, X_API_KEY
class HTTPRequest(Request):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.headers["User-Agent"] = USER_AGENT
self.headers["X-Api-Key"] = X_API_KEY
self.headers["Content-Type"] = "application/json"