Giunio De Luca
02/17/2022, 3:54 PMclass SourcePythonHttpTest(AbstractSource):
def check_connection(self, logger, config) -> Tuple[bool, any]:
return True, None
def streams(self, config: Mapping[str, Any]) -> List[Stream]:
auth = HTTPBasicAuth(username=config["username"], password="password")
return [DerivedStream(authenticator=auth)]
Should I use any airbyte module for that?