Victor Akinola

Results 2 comments of Victor Akinola

```python def _download_file(self) -> str: def download_page_handler(page: Page): with page.expect_download() as download_info: page.reload() download = download_info.value self.logger.debug(f"Suggested Filename: {download.suggested_filename}") suffix = pathlib.Path(download.suggested_filename).suffix download_path: pathlib.Path = ( generate_filepath( out_dirs=[self.params.base_output_path, self.params.account_number], suffix=suffix,...