sources.pipeline_templates.requests_pipeline
The Requests Pipeline Template provides a simple starting point for a dlt pipeline with the requests library
players
@dlt.resource(primary_key="player_id")
def players()
Load player profiles from the chess api.
players_games
@dlt.transformer(data_from=players, write_disposition="append")
def players_games(player: Any) -> Iterator[TDataItems]
Load all games for each player in october 2022
chess
@dlt.source(name="chess")
def chess()
A source function groups all resources into one schema.