airbyte-api-python-sdk
airbyte-api-python-sdk copied to clipboard
It looks like this SDK has type hints for its methods, but right now those won't be picked up by mypy without a `py.typed` file in the package: https://blog.whtsky.me/tech/2021/dont-forget-py.typed-for-your-typed-python-package/
Hello! I have different sources types in my Airbyte When getting them using `sources.list_sources` or `sources.get_source` all configurations are encapsulating in `SourceAirtable` class Example here printing a source, you can...
### Script used to test [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/tree/main/docs/sdks/connections#create_connection) for Airbyte ``` import airbyte from airbyte.models import shared s = airbyte.Airbyte( security=shared.Security( basic_auth=shared.SchemeBasicAuth( password="password", username="airbyte", ), ), ) req = shared.ConnectionCreateRequest( configurations=shared.StreamConfigurations( streams=[...
Generated OpenAPI Suggestions by Speakeasy CLI. Outputs changes to *./openapi.yaml*.
Request- ``` request: shared.SourceCreateRequest = shared.SourceCreateRequest( configuration=shared.SourceStripe( 'valid_account_id', 'valid_client_secret', shared.SourceStripeStripe.STRIPE, datetime(2023, 1, 1), ), name="some_string", workspace_id="valid_workspace_id", ) ``` Response- ``` { "type": "https://reference.airbyte.com/reference/errors#unprocessable-entity", "title": "unprocessable-entity", "status": 422, "detail": "The provided...
> [!IMPORTANT] > Linting report available at: # SDK update Based on: - OpenAPI Doc - Speakeasy CLI 1.286.0 (2.326.3) https://github.com/speakeasy-api/speakeasy ## PYTHON CHANGELOG ## core: 4.6.7 - 2024-04-30 ###...
Hi, A few questions: Can this SDK be used against non-Cloud version of Airbyte, i.e. Airbyte OSS and Airbyte Enterprise? I have noticed there is support for overriding the Airbase...
Hi, I have noticed there are no methods in this SDK to invoke the Airbyte API [`/health` endpoint](https://reference.airbyte.com/reference/get_health) Is this on purpose? I think it should be added to the...
> [!IMPORTANT] > Linting report available at: > OpenAPI Change report available at: # SDK update Based on: - OpenAPI Doc - Speakeasy CLI 1.295.2 (2.335.5) https://github.com/speakeasy-api/speakeasy ## PYTHON CHANGELOG...
When the response comes back, there is no `destination_type` field, meaning that it fails to deserialize. ``` KeyError Traceback (most recent call last) Cell In[46], line 1 ----> 1 res...