Metadata-Version: 2.4
Name: annual-report
Version: 0.1.0
Summary: the objectives of this project, is to retrieve all annual report documents on a given website
Author-email: Darix SAMANI SIEWE <samanidarix@gmail.com>
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: beautifulsoup4==4.12.2
Requires-Dist: bs4==0.0.1
Requires-Dist: certifi==2023.7.22
Requires-Dist: charset-normalizer==3.2.0
Requires-Dist: exceptiongroup==1.1.2
Requires-Dist: idna==3.4
Requires-Dist: iniconfig==2.0.0
Requires-Dist: packaging==23.1
Requires-Dist: pluggy==1.2.0
Requires-Dist: pytest==7.4.0
Requires-Dist: requests==2.31.0
Requires-Dist: soupsieve==2.4.1
Requires-Dist: tomli==2.0.1
Requires-Dist: urllib3==2.0.4
Description-Content-Type: text/markdown

## Annual Report

The purpose of this project is to extract all the available annual report files from a particular website. The project aims to retrieve these documents systematically and comprehensively, ensuring that no report is missed. The extracted reports will be stored in a structured format for further analysis and processing. The final output will be a complete and accurate collection of all the annual reports available on the website.


## How to Install

```
pip install annual_report

```

## How to use


```python

import annual_report


 annual_report = AnnualReport("https://pdfdrive.com")
 annual_report.scraper_with_google()
 annual_report.save_with_json("./result")
 annual_report.save_with_csv("./result")
