airbyte-api-python-sdk
airbyte-api-python-sdk copied to clipboard
> [!IMPORTANT] > Linting report available at: # SDK update Based on: - OpenAPI Doc - Speakeasy CLI 1.277.8 (2.319.10) https://github.com/speakeasy-api/speakeasy ## PYTHON CHANGELOG ## globalSecurity: 2.83.5 - 2024-03-15 ###...
Currently, this package (`airbyte-api`) imports with `import airbyte`. The new PyAirbyte library _also_ imports with `import airbyte`. I'm starting to work through this issue, trialing a few approaches in -...
**Script Used To Test** ``` import airbyte from airbyte.models import shared s = airbyte.Airbyte( security=shared.Security( server_url="http://localhost:8006/v1", basic_auth=shared.SchemeBasicAuth( password=, username=, ), ), ) req = operations.GetSourceRequest( source_id=, ) res = airbyte_client.sources.get_source(req)...
As described in the following code: ```python import airbyte airbyte_workspace = airbyte.Airbyte( server_url=SERVER_URL ) response = airbyte_workspace.connections.list_connections( airbyte.models.operations.ListConnectionsRequest( workspace_ids=[WORKSPACE_ID], offset=0, limit=100 ) ) # There are only 20 connections assert...
Follows from - #66 Manually applying changes because I'm not sure how to run codegen. (Related to #68)
In starting the effort on - #67 I'm not sure where to start and how to control / tweak / experiment on the codegen processes. Do we have anything like...
As far as I can see the features were merged up-stream: https://github.com/speakeasy-api/dataclasses-json
line 697, in unmarshal_json raise AttributeError( AttributeError: unable to unmarshal reproduce - install latest airbyte helm. setup GITHUB and Snowflake connection run this code - ``` from airbyte import Airbyte...
Making the following request ```python airbyte.Airbyte(server_url=server_url).streams.get_stream_properties( airbyte.models.operations.GetStreamPropertiesRequest( destination_id, source_id)) ``` raises ``` AttributeError: unable to unmarshal as typing.Optional[airbyte.models.shared.streampropertiesresponse.StreamPropertiesResponse ``` while running ``` curl '{apiUrl}/streams?sourceId={sourceId}&destinationId={destinationId}' --header 'accept: application/json' ``` successfully returns...
Hello, Thank you so much for providing this toolset to interact with Airbyte, I am building a Pulumi provider so we can automate this via Pulumi. But while writing some...