Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cull base-python and base-python-test #12596

Merged
merged 9 commits into from
May 5, 2022
Prev Previous commit
Next Next commit
Update airbyte-cdk/python/docs/tutorials/http_api_source.md
  • Loading branch information
sherifnada authored May 5, 2022
commit c772122bb127f7961594fd925047d78132837f06
2 changes: 1 addition & 1 deletion airbyte-cdk/python/docs/tutorials/http_api_source.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ Backoff policy options:
- `max_retries` Specifies maximum amount of retries for backoff policy (by default is 5)
- `raise_on_http_errors` If set to False, allows opting-out of raising HTTP code exception (by default is True)

There are many other customizable options - you can find them in the [`base_python.cdk.streams.http.HttpStream`](https://github.com/airbytehq/airbyte/blob/master/airbyte-cdk/python/base_python/sources/streams/http.py) class.
There are many other customizable options - you can find them in the [`base_python.cdk.streams.http.HttpStream`](https://github.com/airbytehq/airbyte/blob/master/airbyte-cdk/python/airbyte_cdk/sources/streams/http/http.py) class.
sherifnada marked this conversation as resolved.
Show resolved Hide resolved

So in order to read data from the exchange rates API, we'll fill out the necessary information for the stream to do its work. First, we'll implement a basic read that just reads the last day's exchange rates, then we'll implement incremental sync using stream slicing.

Expand Down