Spaces:
Sleeping
Sleeping
Update linkedin.py
Browse files- 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="
|
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"
|
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:
|