Adr740 commited on
Commit
da327a6
·
verified ·
1 Parent(s): 9bbfcae

Update web_scrapping_engine.py

Browse files
Files changed (1) hide show
  1. web_scrapping_engine.py +2 -2
web_scrapping_engine.py CHANGED
@@ -2,8 +2,8 @@ import os
2
  from linkedin import get_linkedin_profile
3
  from company_website import full_company_website_exploration
4
 
5
- def run_web_scrapping_engine(company_name = "sunday natural", folder_path = "data_dumpster", output_in_code = False):
6
- path = f"{folder_path}/{company_name.replace(' ','-')}"
7
  os.makedirs(path, exist_ok=True)
8
  os.makedirs(f"{path}/pdf/", exist_ok=True)
9
  print("Starting Linkedin gathering...")
 
2
  from linkedin import get_linkedin_profile
3
  from company_website import full_company_website_exploration
4
 
5
+ def run_web_scrapping_engine(company_name = "sunday natural", folder_path = ".", output_in_code = False):
6
+ path = "."
7
  os.makedirs(path, exist_ok=True)
8
  os.makedirs(f"{path}/pdf/", exist_ok=True)
9
  print("Starting Linkedin gathering...")