airbyte-api-python-sdk
airbyte-api-python-sdk copied to clipboard
Resolve compatibility conflicts with PyAirbyte (rename library and rebuild)
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
- #66
Options I'm aware of:
- Rename the package to something like
airbyte_apiorairbyte_cdk. - Create a namespaces package, where
airbyte-apiimports asairbyte.sdk, which would be grafted into the same top-levelairbytenamespace as PyAirbyte, but withought the two packages conflicting.
Reopening because we ran into issues with the build process, specifically in accessing the post-gradle version of the OpenAPI spec as input.