Update app.py
Browse files
app.py
CHANGED
@@ -24,8 +24,22 @@ def fetch_linkedin_data(linkedin_url):
|
|
24 |
|
25 |
# Function to fetch company information using Firecrawl API
|
26 |
def fetch_company_info(company_url):
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
if response.status_code == 200:
|
30 |
return response.json()
|
31 |
else:
|
|
|
24 |
|
25 |
# Function to fetch company information using Firecrawl API
|
26 |
def fetch_company_info(company_url):
|
27 |
+
api_key = os.getenv("FIRECRAWL_API_KEY")
|
28 |
+
headers = {
|
29 |
+
'Authorization': f'Bearer {api_key}',
|
30 |
+
'Content-Type': 'application/json'
|
31 |
+
}
|
32 |
+
api_endpoint = 'https://api.firecrawl.dev/v1/crawl'
|
33 |
+
|
34 |
+
data = {
|
35 |
+
"url": company_url,
|
36 |
+
"limit": 100,
|
37 |
+
"scrapeOptions": {
|
38 |
+
"formats": ["markdown", "html"]
|
39 |
+
}
|
40 |
+
}
|
41 |
+
|
42 |
+
response = requests.post(api_endpoint, json=data, headers=headers)
|
43 |
if response.status_code == 200:
|
44 |
return response.json()
|
45 |
else:
|