Repository URL to install this package:
|
Version:
1.0.9 ▾
|
namara-er
/
utils.py
|
|---|
def gen_request_decorator(token: str):
def _request_decorator(request: 'Request') -> 'Request':
"""
Takes in a `urllib.request.Request` and must return the same object
"""
request.add_header("X-API-KEY", token)
return request
return _request_decorator