romeotools/http.py

6 lines
256 B
Python
Raw Normal View History

from urllib.request import Request as UrllibRequest
class Request(UrllibRequest):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.headers["user-agent"] = "romeotools (https://kumig.it/kumitterer/romeotools)"