Adr740 commited on
Commit
b4c57f7
1 Parent(s): da327a6

Update linkedin.py

Browse files
Files changed (1) hide show
  1. linkedin.py +2 -2
linkedin.py CHANGED
@@ -3,7 +3,7 @@ import json
3
 
4
  from config import proxycurl_api
5
 
6
- def get_linkedin_profile(name, folder_path="data_dumpster"):
7
 
8
  print(f"Aspiring {name}'s linkedin soul...")
9
 
@@ -21,7 +21,7 @@ def get_linkedin_profile(name, folder_path="data_dumpster"):
21
  params=params,
22
  headers=headers)
23
  content = response.json()
24
- file_path = f"{folder_path}/linkedin_content.json"
25
 
26
  # Write the JSON data to the file
27
  with open(file_path, "w") as file:
 
3
 
4
  from config import proxycurl_api
5
 
6
+ def get_linkedin_profile(name, folder_path="."):
7
 
8
  print(f"Aspiring {name}'s linkedin soul...")
9
 
 
21
  params=params,
22
  headers=headers)
23
  content = response.json()
24
+ file_path = f"linkedin_content.json"
25
 
26
  # Write the JSON data to the file
27
  with open(file_path, "w") as file: