airbyte-api


Nameairbyte-api JSON
Version 0.52.2 PyPI version JSON
download
home_pagehttps://github.com/airbytehq/airbyte-api-python-sdk.git
SummaryPython Client SDK for Airbyte API
upload_time2024-12-11 23:49:50
maintainerNone
docs_urlNone
authorAirbyte
requires_python>=3.8
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
        <img src="https://user-images.githubusercontent.com/68016351/222853569-b35cc448-6481-4cf2-a237-bd5da47e94fd.png" width="500">
   <p>Programatically control Airbyte Cloud through an API.</p>
   <a href="https://reference.airbyte.com/reference/start"><img src="https://img.shields.io/static/v1?label=Docs&message=API Ref&color=000000&style=for-the-badge" /></a>
   <a href="https://github.com/airbytehq/airbyte-api-python-sdk/actions"><img src="https://img.shields.io/github/actions/workflow/status/airbytehq/airbyte-api-python-sdk/speakeasy_sdk_generation.yml?style=for-the-badge" /></a>
  <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge" /></a>
  <a href="https://github.com/airbytehq/airbyte-api-python-sdk/releases"><img src="https://img.shields.io/github/v/release/airbytehq/airbyte-api-python-sdk?sort=semver&style=for-the-badge" /></a>
</div>

## Authentication

Developers will need to create an API Key within your [Developer Portal](https://portal.airbyte.com/) to make API requests. You can use your existing Airbyte account to log in to the Developer Portal. Once you are in the Developer Portal, use the API Keys tab to create or remove API Keys. You can see a [walkthrough demo here](https://www.loom.com/share/7997a7c67cd642cc8d1c72ef0dfcc4bc)🎦

The Developer Portal UI can also be used to help build your integration by showing information about network requests in the Requests tab. API usage information is also available to you in the Usage tab.

<!-- Start Summary [summary] -->
## Summary

airbyte-api: Programmatically control Airbyte Cloud, OSS & Enterprise.
<!-- End Summary [summary] -->

<!-- Start Table of Contents [toc] -->
## Table of Contents
<!-- $toc-max-depth=2 -->
  * [Authentication](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#authentication)
  * [SDK Installation](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#sdk-installation)
  * [SDK Example Usage](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#sdk-example-usage)
  * [Available Resources and Operations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#available-resources-and-operations)
  * [Error Handling](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#error-handling)
  * [Server Selection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#server-selection)
  * [Custom HTTP Client](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#custom-http-client)
  * [Authentication](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#authentication-1)

<!-- End Table of Contents [toc] -->

<!-- Start SDK Installation [installation] -->
## SDK Installation

The SDK can be installed using the *pip* package manager, with dependencies and metadata stored in the `setup.py` file.

```bash
pip install airbyte-api
```
<!-- End SDK Installation [installation] -->

<!-- Start SDK Example Usage [usage] -->
## SDK Example Usage

### Example

```python
import airbyte_api
from airbyte_api import models

s = airbyte_api.AirbyteAPI(
    security=models.Security(
        basic_auth=models.SchemeBasicAuth(
            password='',
            username='',
        ),
    ),
)


res = s.connections.create_connection(request=models.ConnectionCreateRequest(
    destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
    source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
    name='Postgres-to-Bigquery',
    namespace_format='${SOURCE_NAMESPACE}',
))

if res.connection_response is not None:
    # handle response
    pass

```
<!-- End SDK Example Usage [usage] -->

<!-- Start Available Resources and Operations [operations] -->
## Available Resources and Operations

<details open>
<summary>Available methods</summary>


### [connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md)

* [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#create_connection) - Create a connection
* [delete_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#delete_connection) - Delete a Connection
* [get_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#get_connection) - Get Connection details
* [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#list_connections) - List connections
* [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#patch_connection) - Update Connection details

### [destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md)

* [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#create_destination) - Create a destination
* [delete_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#delete_destination) - Delete a Destination
* [get_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#get_destination) - Get Destination details
* [list_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#list_destinations) - List destinations
* [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#patch_destination) - Update a Destination
* [put_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it

### [health](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/health/README.md)

* [get_health_check](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/health/README.md#get_health_check) - Health Check

### [jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md)

* [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job
* [create_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#create_job) - Trigger a sync or reset job of a connection
* [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#get_job) - Get Job status and details
* [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type

### [organizations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/organizations/README.md)

* [list_organizations_for_user](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/organizations/README.md#list_organizations_for_user) - List all organizations for a user

### [permissions](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md)

* [create_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#create_permission) - Create a permission
* [delete_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#delete_permission) - Delete a Permission
* [get_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#get_permission) - Get Permission details
* [list_permissions](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#list_permissions) - List Permissions by user id
* [update_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#update_permission) - Update a permission

### [sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md)

* [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#create_source) - Create a source
* [delete_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#delete_source) - Delete a Source
* [get_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#get_source) - Get Source details
* [initiate_o_auth](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#initiate_o_auth) - Initiate OAuth for a source
* [list_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#list_sources) - List sources
* [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#patch_source) - Update a Source
* [put_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it

### [streams](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md)

* [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md#get_stream_properties) - Get stream properties

### [users](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/users/README.md)

* [list_users_within_an_organization](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/users/README.md#list_users_within_an_organization) - List all users within an organization

### [workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md)

* [create_or_update_workspace_o_auth_credentials](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.
* [create_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#create_workspace) - Create a workspace
* [delete_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#delete_workspace) - Delete a Workspace
* [get_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#get_workspace) - Get Workspace details
* [list_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#list_workspaces) - List workspaces
* [update_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#update_workspace) - Update a workspace

</details>
<!-- End Available Resources and Operations [operations] -->







<!-- Start Error Handling [errors] -->
## Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.

By default, an API error will raise a errors.SDKError exception, which has the following properties:

| Property        | Type             | Description           |
|-----------------|------------------|-----------------------|
| `.status_code`  | *int*            | The HTTP status code  |
| `.message`      | *str*            | The error message     |
| `.raw_response` | *httpx.Response* | The raw HTTP response |
| `.body`         | *str*            | The response content  |

When custom error responses are specified for an operation, the SDK may also raise their associated exception. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `create_connection` method may raise the following exceptions:

| Error Type      | Status Code | Content Type |
| --------------- | ----------- | ------------ |
| errors.SDKError | 4XX, 5XX    | \*/\*        |

### Example

```python
import airbyte_api
from airbyte_api import errors, models

s = airbyte_api.AirbyteAPI(
    security=models.Security(
        basic_auth=models.SchemeBasicAuth(
            password='',
            username='',
        ),
    ),
)

res = None
try:
    res = s.connections.create_connection(request=models.ConnectionCreateRequest(
    destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
    source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
    name='Postgres-to-Bigquery',
    namespace_format='${SOURCE_NAMESPACE}',
))

except errors.SDKError as e:
    # handle exception
    raise(e)

if res.connection_response is not None:
    # handle response
    pass

```
<!-- End Error Handling [errors] -->



<!-- Start Server Selection [server] -->
## Server Selection

### Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
```python
import airbyte_api
from airbyte_api import models

s = airbyte_api.AirbyteAPI(
    server_url='https://api.airbyte.com/v1',
    security=models.Security(
        basic_auth=models.SchemeBasicAuth(
            password='',
            username='',
        ),
    ),
)


res = s.connections.create_connection(request=models.ConnectionCreateRequest(
    destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
    source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
    name='Postgres-to-Bigquery',
    namespace_format='${SOURCE_NAMESPACE}',
))

if res.connection_response is not None:
    # handle response
    pass

```
<!-- End Server Selection [server] -->



<!-- Start Custom HTTP Client [http-client] -->
## Custom HTTP Client

The Python SDK makes API calls using the [requests](https://pypi.org/project/requests/) HTTP library.  In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.

For example, you could specify a header for every request that this sdk makes as follows:
```python
import airbyte_api
import requests

http_client = requests.Session()
http_client.headers.update({'x-custom-header': 'someValue'})
s = airbyte_api.AirbyteAPI(client=http_client)
```
<!-- End Custom HTTP Client [http-client] -->



<!-- Start Authentication [security] -->
## Authentication

### Per-Client Security Schemes

This SDK supports the following security schemes globally:

| Name                 | Type   | Scheme       |
| -------------------- | ------ | ------------ |
| `basic_auth`         | http   | HTTP Basic   |
| `bearer_auth`        | http   | HTTP Bearer  |
| `client_credentials` | oauth2 | OAuth2 token |

You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
```python
import airbyte_api
from airbyte_api import models

s = airbyte_api.AirbyteAPI(
    security=models.Security(
        basic_auth=models.SchemeBasicAuth(
            password='',
            username='',
        ),
    ),
)


res = s.connections.create_connection(request=models.ConnectionCreateRequest(
    destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',
    source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',
    name='Postgres-to-Bigquery',
    namespace_format='${SOURCE_NAMESPACE}',
))

if res.connection_response is not None:
    # handle response
    pass

```
<!-- End Authentication [security] -->

<!-- Placeholder for Future Speakeasy SDK Sections -->



### Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
looking for the latest version.

### Contributions

While we value open-source contributions to this SDK, this library is generated programmatically.
Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release !

### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/airbytehq/airbyte-api-python-sdk.git",
    "name": "airbyte-api",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Airbyte",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/81/82/dcffd873d34b5a3e665c44210233554f5e52e1c6234e6d253261dae9779b/airbyte-api-0.52.2.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n        <img src=\"https://user-images.githubusercontent.com/68016351/222853569-b35cc448-6481-4cf2-a237-bd5da47e94fd.png\" width=\"500\">\n   <p>Programatically control Airbyte Cloud through an API.</p>\n   <a href=\"https://reference.airbyte.com/reference/start\"><img src=\"https://img.shields.io/static/v1?label=Docs&message=API Ref&color=000000&style=for-the-badge\" /></a>\n   <a href=\"https://github.com/airbytehq/airbyte-api-python-sdk/actions\"><img src=\"https://img.shields.io/github/actions/workflow/status/airbytehq/airbyte-api-python-sdk/speakeasy_sdk_generation.yml?style=for-the-badge\" /></a>\n  <a href=\"https://opensource.org/licenses/MIT\"><img src=\"https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge\" /></a>\n  <a href=\"https://github.com/airbytehq/airbyte-api-python-sdk/releases\"><img src=\"https://img.shields.io/github/v/release/airbytehq/airbyte-api-python-sdk?sort=semver&style=for-the-badge\" /></a>\n</div>\n\n## Authentication\n\nDevelopers will need to create an API Key within your [Developer Portal](https://portal.airbyte.com/) to make API requests. You can use your existing Airbyte account to log in to the Developer Portal. Once you are in the Developer Portal, use the API Keys tab to create or remove API Keys. You can see a [walkthrough demo here](https://www.loom.com/share/7997a7c67cd642cc8d1c72ef0dfcc4bc)\ud83c\udfa6\n\nThe Developer Portal UI can also be used to help build your integration by showing information about network requests in the Requests tab. API usage information is also available to you in the Usage tab.\n\n<!-- Start Summary [summary] -->\n## Summary\n\nairbyte-api: Programmatically control Airbyte Cloud, OSS & Enterprise.\n<!-- End Summary [summary] -->\n\n<!-- Start Table of Contents [toc] -->\n## Table of Contents\n<!-- $toc-max-depth=2 -->\n  * [Authentication](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#authentication)\n  * [SDK Installation](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#sdk-installation)\n  * [SDK Example Usage](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#sdk-example-usage)\n  * [Available Resources and Operations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#available-resources-and-operations)\n  * [Error Handling](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#error-handling)\n  * [Server Selection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#server-selection)\n  * [Custom HTTP Client](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#custom-http-client)\n  * [Authentication](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/#authentication-1)\n\n<!-- End Table of Contents [toc] -->\n\n<!-- Start SDK Installation [installation] -->\n## SDK Installation\n\nThe SDK can be installed using the *pip* package manager, with dependencies and metadata stored in the `setup.py` file.\n\n```bash\npip install airbyte-api\n```\n<!-- End SDK Installation [installation] -->\n\n<!-- Start SDK Example Usage [usage] -->\n## SDK Example Usage\n\n### Example\n\n```python\nimport airbyte_api\nfrom airbyte_api import models\n\ns = airbyte_api.AirbyteAPI(\n    security=models.Security(\n        basic_auth=models.SchemeBasicAuth(\n            password='',\n            username='',\n        ),\n    ),\n)\n\n\nres = s.connections.create_connection(request=models.ConnectionCreateRequest(\n    destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',\n    source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',\n    name='Postgres-to-Bigquery',\n    namespace_format='${SOURCE_NAMESPACE}',\n))\n\nif res.connection_response is not None:\n    # handle response\n    pass\n\n```\n<!-- End SDK Example Usage [usage] -->\n\n<!-- Start Available Resources and Operations [operations] -->\n## Available Resources and Operations\n\n<details open>\n<summary>Available methods</summary>\n\n\n### [connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md)\n\n* [create_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#create_connection) - Create a connection\n* [delete_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#delete_connection) - Delete a Connection\n* [get_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#get_connection) - Get Connection details\n* [list_connections](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#list_connections) - List connections\n* [patch_connection](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/connections/README.md#patch_connection) - Update Connection details\n\n### [destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md)\n\n* [create_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#create_destination) - Create a destination\n* [delete_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#delete_destination) - Delete a Destination\n* [get_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#get_destination) - Get Destination details\n* [list_destinations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#list_destinations) - List destinations\n* [patch_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#patch_destination) - Update a Destination\n* [put_destination](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/destinations/README.md#put_destination) - Update a Destination and fully overwrite it\n\n### [health](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/health/README.md)\n\n* [get_health_check](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/health/README.md#get_health_check) - Health Check\n\n### [jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md)\n\n* [cancel_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#cancel_job) - Cancel a running Job\n* [create_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#create_job) - Trigger a sync or reset job of a connection\n* [get_job](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#get_job) - Get Job status and details\n* [list_jobs](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/jobs/README.md#list_jobs) - List Jobs by sync type\n\n### [organizations](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/organizations/README.md)\n\n* [list_organizations_for_user](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/organizations/README.md#list_organizations_for_user) - List all organizations for a user\n\n### [permissions](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md)\n\n* [create_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#create_permission) - Create a permission\n* [delete_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#delete_permission) - Delete a Permission\n* [get_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#get_permission) - Get Permission details\n* [list_permissions](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#list_permissions) - List Permissions by user id\n* [update_permission](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/permissions/README.md#update_permission) - Update a permission\n\n### [sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md)\n\n* [create_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#create_source) - Create a source\n* [delete_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#delete_source) - Delete a Source\n* [get_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#get_source) - Get Source details\n* [initiate_o_auth](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#initiate_o_auth) - Initiate OAuth for a source\n* [list_sources](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#list_sources) - List sources\n* [patch_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#patch_source) - Update a Source\n* [put_source](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/sources/README.md#put_source) - Update a Source and fully overwrite it\n\n### [streams](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md)\n\n* [get_stream_properties](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/streams/README.md#get_stream_properties) - Get stream properties\n\n### [users](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/users/README.md)\n\n* [list_users_within_an_organization](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/users/README.md#list_users_within_an_organization) - List all users within an organization\n\n### [workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md)\n\n* [create_or_update_workspace_o_auth_credentials](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#create_or_update_workspace_o_auth_credentials) - Create OAuth override credentials for a workspace and source type.\n* [create_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#create_workspace) - Create a workspace\n* [delete_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#delete_workspace) - Delete a Workspace\n* [get_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#get_workspace) - Get Workspace details\n* [list_workspaces](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#list_workspaces) - List workspaces\n* [update_workspace](https://github.com/airbytehq/airbyte-api-python-sdk/blob/master/docs/sdks/workspaces/README.md#update_workspace) - Update a workspace\n\n</details>\n<!-- End Available Resources and Operations [operations] -->\n\n\n\n\n\n\n\n<!-- Start Error Handling [errors] -->\n## Error Handling\n\nHandling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.\n\nBy default, an API error will raise a errors.SDKError exception, which has the following properties:\n\n| Property        | Type             | Description           |\n|-----------------|------------------|-----------------------|\n| `.status_code`  | *int*            | The HTTP status code  |\n| `.message`      | *str*            | The error message     |\n| `.raw_response` | *httpx.Response* | The raw HTTP response |\n| `.body`         | *str*            | The response content  |\n\nWhen custom error responses are specified for an operation, the SDK may also raise their associated exception. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `create_connection` method may raise the following exceptions:\n\n| Error Type      | Status Code | Content Type |\n| --------------- | ----------- | ------------ |\n| errors.SDKError | 4XX, 5XX    | \\*/\\*        |\n\n### Example\n\n```python\nimport airbyte_api\nfrom airbyte_api import errors, models\n\ns = airbyte_api.AirbyteAPI(\n    security=models.Security(\n        basic_auth=models.SchemeBasicAuth(\n            password='',\n            username='',\n        ),\n    ),\n)\n\nres = None\ntry:\n    res = s.connections.create_connection(request=models.ConnectionCreateRequest(\n    destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',\n    source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',\n    name='Postgres-to-Bigquery',\n    namespace_format='${SOURCE_NAMESPACE}',\n))\n\nexcept errors.SDKError as e:\n    # handle exception\n    raise(e)\n\nif res.connection_response is not None:\n    # handle response\n    pass\n\n```\n<!-- End Error Handling [errors] -->\n\n\n\n<!-- Start Server Selection [server] -->\n## Server Selection\n\n### Override Server URL Per-Client\n\nThe default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:\n```python\nimport airbyte_api\nfrom airbyte_api import models\n\ns = airbyte_api.AirbyteAPI(\n    server_url='https://api.airbyte.com/v1',\n    security=models.Security(\n        basic_auth=models.SchemeBasicAuth(\n            password='',\n            username='',\n        ),\n    ),\n)\n\n\nres = s.connections.create_connection(request=models.ConnectionCreateRequest(\n    destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',\n    source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',\n    name='Postgres-to-Bigquery',\n    namespace_format='${SOURCE_NAMESPACE}',\n))\n\nif res.connection_response is not None:\n    # handle response\n    pass\n\n```\n<!-- End Server Selection [server] -->\n\n\n\n<!-- Start Custom HTTP Client [http-client] -->\n## Custom HTTP Client\n\nThe Python SDK makes API calls using the [requests](https://pypi.org/project/requests/) HTTP library.  In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.\n\nFor example, you could specify a header for every request that this sdk makes as follows:\n```python\nimport airbyte_api\nimport requests\n\nhttp_client = requests.Session()\nhttp_client.headers.update({'x-custom-header': 'someValue'})\ns = airbyte_api.AirbyteAPI(client=http_client)\n```\n<!-- End Custom HTTP Client [http-client] -->\n\n\n\n<!-- Start Authentication [security] -->\n## Authentication\n\n### Per-Client Security Schemes\n\nThis SDK supports the following security schemes globally:\n\n| Name                 | Type   | Scheme       |\n| -------------------- | ------ | ------------ |\n| `basic_auth`         | http   | HTTP Basic   |\n| `bearer_auth`        | http   | HTTP Bearer  |\n| `client_credentials` | oauth2 | OAuth2 token |\n\nYou can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:\n```python\nimport airbyte_api\nfrom airbyte_api import models\n\ns = airbyte_api.AirbyteAPI(\n    security=models.Security(\n        basic_auth=models.SchemeBasicAuth(\n            password='',\n            username='',\n        ),\n    ),\n)\n\n\nres = s.connections.create_connection(request=models.ConnectionCreateRequest(\n    destination_id='e478de0d-a3a0-475c-b019-25f7dd29e281',\n    source_id='95e66a59-8045-4307-9678-63bc3c9b8c93',\n    name='Postgres-to-Bigquery',\n    namespace_format='${SOURCE_NAMESPACE}',\n))\n\nif res.connection_response is not None:\n    # handle response\n    pass\n\n```\n<!-- End Authentication [security] -->\n\n<!-- Placeholder for Future Speakeasy SDK Sections -->\n\n\n\n### Maturity\n\nThis SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage\nto a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally\nlooking for the latest version.\n\n### Contributions\n\nWhile we value open-source contributions to this SDK, this library is generated programmatically.\nFeel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release !\n\n### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python Client SDK for Airbyte API",
    "version": "0.52.2",
    "project_urls": {
        "Homepage": "https://github.com/airbytehq/airbyte-api-python-sdk.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45f8f5e0e025d7302f35298f76ab0afd25541dccee9d8d29a9fb81e2db1c4f03",
                "md5": "860bb4c86c818069e326362c8bb877c8",
                "sha256": "d08ee620e8dc9b85e3f167087225a7867702aa3cf1a06d8b42eb48a48e64382d"
            },
            "downloads": -1,
            "filename": "airbyte_api-0.52.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "860bb4c86c818069e326362c8bb877c8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 651276,
            "upload_time": "2024-12-11T23:49:48",
            "upload_time_iso_8601": "2024-12-11T23:49:48.415317Z",
            "url": "https://files.pythonhosted.org/packages/45/f8/f5e0e025d7302f35298f76ab0afd25541dccee9d8d29a9fb81e2db1c4f03/airbyte_api-0.52.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8182dcffd873d34b5a3e665c44210233554f5e52e1c6234e6d253261dae9779b",
                "md5": "e571c1a8bd03ea6c2e07f7946432959d",
                "sha256": "0abd4570083352cad9c23d1f6f59f288aeecca84d85746018d41de9c531aa852"
            },
            "downloads": -1,
            "filename": "airbyte-api-0.52.2.tar.gz",
            "has_sig": false,
            "md5_digest": "e571c1a8bd03ea6c2e07f7946432959d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 295837,
            "upload_time": "2024-12-11T23:49:50",
            "upload_time_iso_8601": "2024-12-11T23:49:50.740250Z",
            "url": "https://files.pythonhosted.org/packages/81/82/dcffd873d34b5a3e665c44210233554f5e52e1c6234e6d253261dae9779b/airbyte-api-0.52.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-11 23:49:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "airbytehq",
    "github_project": "airbyte-api-python-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "airbyte-api"
}
        
Elapsed time: 1.66033s