Source code for src.config.request
from .base import Settings
from ..enums import AuthType
[docs]
class RequestConfig(Settings):
endpoint_decision: str = ""
endpoint_taxonomy: str = ""
auth_type: AuthType = "none"
username: str = ""
password: str = ""
max_retries: int = 3
header: dict[str, str] = {"accept": "application/sparql-results+json,*/*;q=0.9"}