awswrangler.catalog.databases¶
- awswrangler.catalog.databases(limit: int = 100, catalog_id: str | None = None, boto3_session: Session | None = None) DataFrame¶
Get a Pandas DataFrame with all listed databases.
- Parameters:
limit (
int) – Max number of tables to be returned.catalog_id (
str|None) – The ID of the Data Catalog from which to retrieve Databases. IfNoneis provided, the AWS account ID is used by default.boto3_session (
Session|None) – The default boto3 session will be used if boto3_session receiveNone.
- Return type:
DataFrame- Returns:
Pandas DataFrame filled by formatted table information.
Examples
>>> import awswrangler as wr >>> df_dbs = wr.catalog.databases()