Rajesh Koilpillai
08/20/2022, 5:04 AMdef next_page_token(self, response: requests.Response) -> Optional[Mapping[str, Any]]:
return None
def request_params(
self, stream_state: Mapping[str, Any], stream_slice: Mapping[str, any] = None, next_page_token: Mapping[str, Any] = None
) -> MutableMapping[str, Any]:
return {}
def parse_response(self, response: requests.Response, **kwargs) -> Iterable[Mapping]:
yield {}
What type of source connector will be the right choice to use here? Should we use Python HTTP connector, Python Source connector or Python Generic Source connector ?Rajesh Koilpillai
08/22/2022, 3:54 AM