Source code for xsdata.formats.dataclass.transports
from abc import ABC
from abc import abstractmethod
from dataclasses import dataclass
from typing import Any
from typing import Dict
import requests
[docs]class Transport(ABC):
[docs] @abstractmethod
def get(self, url: str, params: Dict, headers: Dict) -> bytes:
"""Send a GET request."""
[docs] @abstractmethod
def post(self, url: str, data: Any, headers: Dict) -> bytes:
"""Send a POST request."""
[docs]@dataclass
class DefaultTransport(Transport):
"""
Default transport based on the requests library.
:param timeout: Read timeout
"""
timeout: float = 2.0
[docs] def get(self, url: str, params: Dict, headers: Dict) -> bytes:
"""
:raises HTTPError: if status code is not valid for content unmarshalling.
"""
res = requests.get(url, params=params, headers=headers, timeout=self.timeout)
return self.handle_response(res)
[docs] def post(self, url: str, data: Any, headers: Dict) -> Any:
"""
:raises HTTPError: if status code is not valid for content unmarshalling.
"""
res = requests.post(url, data=data, headers=headers, timeout=self.timeout)
return self.handle_response(res)
[docs] @classmethod
def handle_response(cls, response: requests.Response) -> bytes:
"""
Status codes 200 or 500 means that we can unmarshall the response.
:raises HTTPError: If the response status code is not 200 or 500
"""
if response.status_code not in (200, 500):
response.raise_for_status()
return response.content