lib/glue_scripts/etl_conformed_to_purposebuilt.py [55:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        glue_client.get_table(DatabaseName=target_database, Name=table_name)

        return True
    except:
        return False


def create_database():
    """
    Function to create catalog database if does not exists
    """
    response = None

    glue_client = boto3.client('glue')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lib/glue_scripts/etl_raw_to_conformed.py [51:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        glue_client.get_table(DatabaseName=target_database, Name=table_name)

        return True
    except:
        return False


def create_database():
    """
    Function to create catalog database if does not exists
    @return:
    """
    response = None

    glue_client = boto3.client('glue')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



