1
0
mirror of synced 2025-12-31 06:05:12 -05:00
Files
airbyte/airbyte-integrations/connectors/source-google-analytics-data-api/unit_tests/utils.py
Cole Snodgrass 2e099acc52 update headers from 2022 -> 2023 (#22594)
* It's 2023!

* 2022 -> 2023

---------

Co-authored-by: evantahler <evan@airbyte.io>
2023-02-08 13:01:16 -08:00

18 lines
672 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
from typing import Any, MutableMapping
from airbyte_cdk.models import SyncMode
from airbyte_cdk.sources.streams import Stream
def read_incremental(stream_instance: Stream, stream_state: MutableMapping[str, Any]):
slices = stream_instance.stream_slices(sync_mode=SyncMode.incremental, stream_state=stream_state)
for _slice in slices:
records = stream_instance.read_records(sync_mode=SyncMode.incremental, stream_slice=_slice, stream_state=stream_state)
for record in records:
stream_state = stream_instance.get_updated_state(stream_state, record)
yield record