Connectors¶
Vendor connectors are not a separate product in this major version. They
are first-class Tier 3 data integrations under vendor_fabric.
from vendor_fabric import ConnectorFabric, GitHubConnector, SlackConnector
fabric = ConnectorFabric()
print(fabric.list_connector_categories())
print(fabric.list_connectors_by_capability("repositories"))
github_info = fabric.get_connector_info("github")
if github_info.available:
github = fabric.get_connector("github", github_owner="jbcom", github_token="...")
else:
print(github_info.install)
Direct construction is available when it is clearer:
github = GitHubConnector(github_owner="jbcom", github_token="...")
slack = SlackConnector(bot_token="xoxb-...")
Catalog Metadata¶
Connector adapters describe install extras, category, capabilities, module, class, and runtime availability. Known built-ins stay visible even when their optional SDKs are not installed.
info = fabric.get_connector_info("github")
print(info.extra)
print(info.category)
print(info.capabilities)
print(info.available)
adapter = fabric.get_connector_adapter("github")
print(adapter.available)
Connector methods return ExtendedData payloads at the boundary.
Decoded API, SDK, GraphQL, and webhook maps become concrete
ExtendedDict, ExtendedList, and ExtendedString objects,
while still sharing the common ExtendedData root for generic
tooling.