awswrangler.catalog.get_databases

awswrangler.catalog.get_databases(catalog_id: str | None = None, boto3_session: Session | None = None) Iterator[dict[str, Any]]

Get an iterator of databases.

Parameters:
  • catalog_id (str | None) – The ID of the Data Catalog from which to retrieve Databases. If None is provided, the AWS account ID is used by default.

  • boto3_session (Session | None) – The default boto3 session will be used if boto3_session receive None.

Return type:

Iterator[dict[str, Any]]

Returns:

Iterator of Databases.

Examples

>>> import awswrangler as wr
>>> dbs = wr.catalog.get_databases()