diff --git a/README.md b/README.md index 8801604..e2cf235 100644 --- a/README.md +++ b/README.md @@ -283,6 +283,6 @@ df = client.get_scores( with Workbook('epss.xlsx') as wb: df.write_excel( workbook=wb, - worksheet='Mandiant red team tools' + worksheet='FireEye red team tools' ) ``` \ No newline at end of file diff --git a/examples/data/epss.xlsx b/examples/data/epss.xlsx index 7d17f9a..19ceda8 100644 Binary files a/examples/data/epss.xlsx and b/examples/data/epss.xlsx differ diff --git a/examples/get-excel-workbook-of-changed-epss-scores.py b/examples/get-excel-workbook-of-changed-epss-scores.py index 887a800..422f95c 100644 --- a/examples/get-excel-workbook-of-changed-epss-scores.py +++ b/examples/get-excel-workbook-of-changed-epss-scores.py @@ -7,12 +7,14 @@ logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s %(name)s %(message)s') -WORKDIR = os.path.join(tempfile.gettempdir(), 'epss') +#WORKDIR = os.path.join(tempfile.gettempdir(), 'epss') +WORKDIR = '~/data/layers/raw/epss' client = PolarsClient( include_v1_scores=False, include_v2_scores=False, include_v3_scores=True, + verify_tls=False, ) query = Query( cve_ids=[ @@ -43,5 +45,5 @@ with Workbook('epss.xlsx') as wb: df.write_excel( workbook=wb, - worksheet='Mandiant red team tools' + worksheet='FireEye red team tools' )