def __init__()

in osci/datalake/blob/base.py [0:0]


    def __init__(self, storage_account_name: str, storage_account_key: str, *args,
                 area_container: str = AREA_CONTAINER, **kwargs):
        super().__init__(*args, **kwargs)
        self.AREA_CONTAINER = area_container
        self.storage_account_name = storage_account_name
        self.storage_account_key = storage_account_key
        connection_string = get_azure_blob_connection_string(account_name=self.storage_account_name,
                                                             account_key=self.storage_account_key)
        self.blob_service: BlobServiceClient = BlobServiceClient.from_connection_string(conn_str=connection_string)
        self.container_client: ContainerClient = self.blob_service.get_container_client(container=self.AREA_CONTAINER)
        log.debug(f'BLOB Data Lake area {self.AREA_CONTAINER} created')