File size: 2,156 Bytes
41ea5e0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
import requests
import os
from dotenv import load_dotenv
from postgres_db import fetch_from_saral_data , data_input , check_completeness, cur, get_connection
load_dotenv()
SERP_API_KEY = os.getenv("SERP_API_KEY")
def query_making(data):
query = "site:linkedin.com/in"
if data['job_title']:
query += f' "{data["job_title"]}"'
if data['skills']:
for i in data['skills']:
query += f' "{i}"'
if data['experience']:
exp = data["experience"]
query += f' "{exp} years" OR "{exp}+ years"'
if data['location']:
if type(data['location']) == list:
for i in data['location']:
query += f' "{i}"'
else:
query += f' "{data["location"]}"'
if data['work_preference']:
query += f' "{data["work_preference"]}"'
if data['job_type']:
query += f' "{data["job_type"]}"'
add_keywords = ' -"job" -"jobs" -"hiring" -"vacancy" -"openings" -"career" -"apply"'
query += add_keywords
# print(query)
return query, data['location']
def serp_api_call(query,start = 0, results_per_page = 10):
data = None
# SERP API CALL
params = {
"engine": "google",
"q": query.strip(),
"api_key": SERP_API_KEY,
"hl": "en",
"gl": "in",
"google_domain": "google.co.in",
"location": "India",
"num": results_per_page,
"start": start,
"safe": "active"
}
try:
response = requests.get("https://serpapi.com/search", params=params)
if response.status_code == 200:
data = response.json()
else:
print(f"Request failed with status code: {response.status_code}")
except:
pass
return data
|