awswrangler.catalog.does_table_exist¶
- awswrangler.catalog.does_table_exist(database: str, table: str, boto3_session: Session | None = None, catalog_id: str | None = None) bool¶
Check if the table exists.
- Parameters:
database (
str) – Database name.table (
str) – Table name.boto3_session (
Session|None) – The default boto3 session will be used if boto3_session receiveNone.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.
- Return type:
bool- Returns:
Trueif exists, otherwiseFalse.
Examples
>>> import awswrangler as wr >>> wr.catalog.does_table_exist(database='default', table='my_table')