File size: 96,239 Bytes
59dc3c5 | 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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 | import asyncio
import json
import os
import random
import tempfile
import urllib.parse
import time
import logging
from datetime import datetime, timezone
import concurrent.futures
import re
from typing import Optional
from dotenv import load_dotenv
load_dotenv() # loads .env from project root β SERPER_API_KEY etc.
from openai import OpenAI
import httpx
from fastapi import FastAPI, HTTPException, Query, BackgroundTasks
from pydantic import BaseModel
from starlette.responses import StreamingResponse
from fastapi.middleware.cors import CORSMiddleware
from bs4 import BeautifulSoup
from school_classifier import classify_job, SCHOOLS, PROGRAM_KEYWORDS
from locations import INDIAN_METROS
from database import save_scraped_jobs, get_jobs_by_timeframe, get_jobs_in_timeframe, cleanup_old_jobs, get_binned_jobs, update_company_ratings, get_rated_companies, _connect
# Primary engine: Selenium with undetected-chromedriver
import undetected_chromedriver as uc
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
# Fallback engine: Playwright with stealth
from playwright.async_api import async_playwright
from playwright_stealth import Stealth
from apscheduler.schedulers.asyncio import AsyncIOScheduler
from apscheduler.triggers.interval import IntervalTrigger
scheduler = AsyncIOScheduler()
# ββ Logging setup βββββββββββββββββββββββββββββββββββββββββββββ
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s [%(levelname)s] %(name)s: %(message)s",
datefmt="%Y-%m-%d %H:%M:%S",
)
logger = logging.getLogger("internscrapper")
logger.setLevel(logging.INFO)
app = FastAPI(title="LinkedIn Public Job Scraper")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=False,
allow_methods=["*"],
allow_headers=["*"],
)
# ββ Shared resources ββββββββββββββββββββββββββββββββββββββββββ
class ScrapeSession:
def __init__(self):
self.history: list[str] = []
self.queues: list[asyncio.Queue] = []
self.is_active = False
self.task: Optional[asyncio.Task] = None
def cancel(self):
self.is_active = False
if self.task and not self.task.done():
self.task.cancel()
global_scrape = ScrapeSession()
executor = concurrent.futures.ThreadPoolExecutor(max_workers=6)
_scrape_lock = asyncio.Lock()
# ββ Auto-scrape state (updated live so the admin UI can poll progress) ββββ
_auto_scrape_state: dict = {
"is_running": False,
"current_school": None,
"completed": [],
"failed": [],
"started_at": None,
"finished_at": None,
"cancel_requested": False,
}
_auto_scrape_task: Optional[asyncio.Task] = None
# ββ Auto-scrape history (in-memory log of all sweep runs) βββββ
_auto_scrape_history: list[dict] = []
# HuggingFace Spaces sets PORT=7860 in its environment.
# Locally, uvicorn defaults to 8000 unless overridden.
_SELF_PORT = int(os.environ.get("PORT", "8000"))
_SELF_BASE_URL = f"http://localhost:{_SELF_PORT}"
se_driver = None # Selenium undetected-chromedriver
pw_browser = None # Playwright browser
pw_stealth_ctx = None # Playwright stealth context manager
# Cookie warm-up cache β browser-derived cookies with a TTL.
_warm_cookies: dict = {}
_warm_cookies_ts: float = 0.0
_COOKIE_TTL_SECONDS = 600 # 10-minute TTL before re-warming
# ββ Lifecycle βββββββββββββββββββββββββββββββββββββββββββββββββ
def _get_chrome_major_version() -> Optional[int]:
"""Helper to detect the installed Chrome major version on Windows/Linux to prevent driver mismatch."""
try:
import winreg
# Check user-level install / BLBeacon first
try:
with winreg.OpenKey(winreg.HKEY_CURRENT_USER, r"Software\Google\Chrome\BLBeacon") as key:
version, _ = winreg.QueryValueEx(key, "version")
return int(version.split(".")[0])
except Exception:
pass
# Check system-level WOW64 install
try:
with winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, r"SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Google Chrome") as key:
version, _ = winreg.QueryValueEx(key, "DisplayVersion")
return int(version.split(".")[0])
except Exception:
pass
# Check system-level 64-bit install
try:
with winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Google Chrome") as key:
version, _ = winreg.QueryValueEx(key, "DisplayVersion")
return int(version.split(".")[0])
except Exception:
pass
except ImportError:
# Linux/macOS
import subprocess
import re
for cmd in ["google-chrome", "google-chrome-stable", "chromium", "chromium-browser"]:
try:
output = subprocess.check_output([cmd, "--version"], stderr=subprocess.DEVNULL)
version_str = output.decode("utf-8").strip()
match = re.search(r"(\d+)\.", version_str)
if match:
return int(match.group(1))
except Exception:
continue
return None
# ββ User-Agent helpers ββββββββββββββββββββββββββββββββββββββββ
def _build_user_agent(chrome_version: Optional[int] = None) -> str:
"""Build a realistic Chrome User-Agent string using the installed version."""
v = chrome_version or _get_chrome_major_version() or 131
return (
f"Mozilla/5.0 (Windows NT 10.0; Win64; x64) "
f"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{v}.0.0.0 Safari/537.36"
)
def _build_ua_pool() -> list[str]:
"""Build a pool of realistic User-Agent strings for rotation."""
v = _get_chrome_major_version() or 131
return [
# Windows Chrome (primary β matches our Selenium fingerprint)
f"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{v}.0.0.0 Safari/537.36",
# Windows Chrome (slightly older minor)
f"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{v-1}.0.0.0 Safari/537.36",
# macOS Chrome
f"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{v}.0.0.0 Safari/537.36",
# Linux Chrome
f"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{v}.0.0.0 Safari/537.36",
# Windows Edge (Chromium-based, same engine)
f"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{v}.0.0.0 Safari/537.36 Edg/{v}.0.0.0",
]
_UA_POOL: list[str] = [] # populated at startup
# ββ Response validation helpers βββββββββββββββββββββββββββββββ
def _is_empty_stub(html: str) -> bool:
"""Detect LinkedIn's known empty/blocked response patterns.
Returns True if the response is the 26-byte empty stub, a login wall,
a CAPTCHA page, or any other pattern that indicates zero real content.
"""
stripped = html.strip()
# 26-byte empty stub: '<!DOCTYPE html> <!----> '
if len(stripped) < 60 and "<!--" in stripped:
return True
# Login/signup redirect pages
lower = stripped[:2000].lower()
if any(sig in lower for sig in [
"login", "sign in", "signup", "sign up",
"authwall", "auth_wall", "checkpoint",
]):
return True
return False
def _create_selenium_driver():
"""Create an undetected Chrome instance (runs in thread pool)."""
options = uc.ChromeOptions()
options.add_argument("--headless=new")
options.add_argument("--no-sandbox")
options.add_argument("--disable-dev-shm-usage")
options.add_argument("--disable-gpu")
options.add_argument("--disable-blink-features=AutomationControlled")
options.add_argument("--window-size=1920,1080")
options.add_argument(f"user-agent={_build_user_agent()}")
version_main = _get_chrome_major_version()
if version_main:
driver = uc.Chrome(options=options, version_main=version_main)
else:
driver = uc.Chrome(options=options)
driver.set_page_load_timeout(30)
return driver
_AUTO_SCRAPE_SCHOOLS = ["socse", "sob", "sodi", "soepp", "solaw", "sofmca", "solas", "soahp"]
async def _auto_scrape_all_schools():
global _auto_scrape_state, _auto_scrape_history
logger.info("β° Auto-scrape: starting school sweep")
_auto_scrape_state = {
"is_running": True,
"current_school": None,
"completed": [],
"failed": [],
"started_at": time.time(),
"finished_at": None,
"cancel_requested": False,
}
# ββ Create a history entry for this sweep run ββββββββββββββ
sweep_entry = {
"sweep_id": len(_auto_scrape_history) + 1,
"is_running": True,
"current_school": None,
"completed": [],
"failed": [],
"started_at": time.time(),
"finished_at": None,
"cancelled": False,
}
_auto_scrape_history.append(sweep_entry)
all_scraped_companies = set()
for school in _AUTO_SCRAPE_SCHOOLS:
if _auto_scrape_state.get("cancel_requested"):
logger.info("β° Auto-scrape: cancelled by user")
sweep_entry["cancelled"] = True
break
_auto_scrape_state["current_school"] = school
sweep_entry["current_school"] = school
try:
logger.info(f"β° Auto-scrape: triggering [{school}]")
params = {
"keywords": school,
"freshness": "r86400",
"work_types": ["onsite", "remote", "hybrid"],
"job_types": ["internship"],
}
async with httpx.AsyncClient(
base_url=_SELF_BASE_URL,
timeout=None,
) as client:
async with client.stream(
"POST",
"/scrape-internships",
params=params,
) as resp:
total = 0
async for line in resp.aiter_lines():
if not line.strip():
continue
try:
event = json.loads(line)
etype = event.get("type")
if etype == "info":
logger.info(f"β° [{school}] {event.get('message')}")
elif etype == "jobs":
jobs_data = event.get("data", [])
total += len(jobs_data)
for j in jobs_data:
if j.get("company"):
all_scraped_companies.add(j["company"])
logger.info(f"β° [{school}] +{len(jobs_data)} jobs streamed")
elif etype == "done":
total = event.get("total", total)
logger.info(
f"β° [{school}] done β total={total} "
f"engine={event.get('engine')} "
f"filtered_out={event.get('filtered_out')}"
)
elif etype == "error":
logger.error(f"β° [{school}] error: {event.get('message')}")
except Exception:
pass
_auto_scrape_state["completed"].append({"school": school, "jobs": total})
sweep_entry["completed"].append({"school": school, "jobs": total})
await asyncio.sleep(random.uniform(10.0, 20.0))
except Exception as e:
logger.error(f"β° Auto-scrape [{school}]: failed β {e}")
_auto_scrape_state["failed"].append({"school": school, "error": str(e)})
sweep_entry["failed"].append({"school": school, "error": str(e)})
continue
_auto_scrape_state["is_running"] = False
_auto_scrape_state["current_school"] = None
_auto_scrape_state["finished_at"] = time.time()
# ββ Finalize the history entry βββββββββββββββββββββββββββββ
sweep_entry["is_running"] = False
sweep_entry["current_school"] = None
sweep_entry["finished_at"] = time.time()
logger.info("β° Auto-scrape: sweep complete")
if all_scraped_companies and not _auto_scrape_state.get("cancel_requested"):
try:
loop = asyncio.get_event_loop()
already_rated = await loop.run_in_executor(executor, get_rated_companies)
unrated_companies = [
c for c in all_scraped_companies
if c.lower() not in already_rated
]
logger.info(
f"β° Auto-scrape: {len(all_scraped_companies)} companies scraped, "
f"{len(already_rated)} already rated in DB, "
f"rating {len(unrated_companies)} new ones..."
)
if unrated_companies:
ratings = await process_company_ratings(unrated_companies)
await loop.run_in_executor(executor, _persist_ratings, ratings)
else:
logger.info("β° Auto-scrape: all companies already rated β skipping Serper search")
except Exception as e:
logger.error(f"β° Auto-scrape: failed to rate companies: {e}")
@app.on_event("startup")
async def startup_event():
global se_driver, pw_browser, pw_stealth_ctx, _UA_POOL
loop = asyncio.get_event_loop()
# 0. Build the UA rotation pool
_UA_POOL = _build_ua_pool()
logger.info(f"β UA pool built ({len(_UA_POOL)} variants, Chrome v{_get_chrome_major_version() or '?'})")
# 1. Primary: Selenium (best anti-detection for LinkedIn)
try:
se_driver = await loop.run_in_executor(executor, _create_selenium_driver)
logger.info("β Selenium undetected-chromedriver ready")
except Exception as e:
logger.warning(f"β Selenium init failed (Chrome installed?): {e}")
# 2. Fallback: Playwright + Stealth
try:
stealth = Stealth()
pw_stealth_ctx = stealth.use_async(async_playwright())
pw = await pw_stealth_ctx.__aenter__()
pw_browser = await pw.chromium.launch(
headless=True,
args=["--disable-blink-features=AutomationControlled"],
)
logger.info("β Playwright stealth browser ready")
except Exception as e:
logger.warning(f"β Playwright init failed: {e}")
if not scheduler.running:
scheduler.start()
logger.info("β Scheduler started (awaiting manual trigger)")
else:
logger.info("β Scheduler already running, skipping start")
@app.on_event("shutdown")
async def shutdown_event():
global se_driver, pw_browser, pw_stealth_ctx
scheduler.shutdown(wait=False)
loop = asyncio.get_event_loop()
if se_driver:
await loop.run_in_executor(executor, se_driver.quit)
if pw_browser:
await pw_browser.close()
if pw_stealth_ctx:
await pw_stealth_ctx.__aexit__(None, None, None)
# ββ Cookie warm-up ββββββββββββββββββββββββββββββββββββββββββββ
def _selenium_get_cookies(driver, url: str) -> dict:
"""Navigate to a URL and extract cookies (runs in executor thread)."""
driver.get(url)
time.sleep(random.uniform(2.0, 4.0)) # let LinkedIn set session cookies
try:
return {c["name"]: c["value"] for c in driver.get_cookies()}
except Exception:
return {}
async def _warm_up_cookies(force: bool = False) -> dict:
"""Obtain fresh LinkedIn session cookies via a browser visit.
Uses Selenium (preferred) or Playwright to visit a simple LinkedIn
guest page, allowing LinkedIn to set its session/tracking cookies
(JSESSIONID, bcookie, li_gc, etc.). These cookies are then forwarded
to the httpx HTTP client for API requests.
Results are cached for _COOKIE_TTL_SECONDS (10 min) to avoid
redundant browser visits on consecutive scrapes.
"""
global _warm_cookies, _warm_cookies_ts, se_driver
# Return cached cookies if still fresh
if not force and _warm_cookies and (time.time() - _warm_cookies_ts) < _COOKIE_TTL_SECONDS:
logger.info("cookie warm-up: using cached cookies (still fresh)")
return _warm_cookies
warm_url = "https://www.linkedin.com/jobs/search/?keywords=intern&f_TPR=r86400"
cookies: dict = {}
# Try Selenium first
if se_driver:
try:
loop = asyncio.get_event_loop()
cookies = await loop.run_in_executor(
executor, _selenium_get_cookies, se_driver, warm_url
)
if cookies:
logger.info(f"cookie warm-up: got {len(cookies)} cookies via Selenium")
except Exception as e:
logger.warning(f"cookie warm-up: Selenium failed: {e}")
err_str = str(e).lower()
if "window" in err_str or "closed" in err_str or "view" in err_str:
logger.info("cookie warm-up: Recreating crashed Selenium driver...")
try:
loop = asyncio.get_event_loop()
try:
await loop.run_in_executor(executor, se_driver.quit)
except Exception:
pass
se_driver = await loop.run_in_executor(executor, _create_selenium_driver)
cookies = await loop.run_in_executor(
executor, _selenium_get_cookies, se_driver, warm_url
)
if cookies:
logger.info(f"cookie warm-up: got {len(cookies)} cookies via recreated Selenium")
except Exception as e2:
logger.warning(f"cookie warm-up: Selenium recreation failed: {e2}")
# Fall back to Playwright
if not cookies and pw_browser:
try:
ctx = await pw_browser.new_context(user_agent=_build_user_agent())
page = await ctx.new_page()
await page.goto(warm_url, wait_until="domcontentloaded", timeout=20000)
await asyncio.sleep(random.uniform(2.0, 4.0))
cookies = {c["name"]: c["value"] for c in await ctx.cookies()}
await page.close()
await ctx.close()
if cookies:
logger.info(f"cookie warm-up: got {len(cookies)} cookies via Playwright")
except Exception as e:
logger.warning(f"cookie warm-up: Playwright failed: {e}")
if cookies:
_warm_cookies = cookies
_warm_cookies_ts = time.time()
else:
logger.warning("cookie warm-up: no cookies obtained from any engine")
return cookies
# ββ URL builder βββββββββββββββββββββββββββββββββββββββββββββββ
#
# Reference: https://www.linkedin.com/jobs/search/ guest-search parameter spec
# sortBy : R = relevance (fixed)
# f_E : 1 = Internship experience level (fixed)
# geoId : LinkedIn region id β narrows location (fixed, Bengaluru region)
# f_PP : comma-joined Primary-Place ids β UI-only narrowing (fixed)
# f_TPR : r<seconds> freshness β variable (dropdown)
# f_WT : comma-joined work-type codes β variable (3-checkbox group)
# f_JT : comma-joined job-type codes β variable (2-checkbox group)
#
# Per project spec, location is fixed (no city picker) and we only expose
# three user-visible filters: work-type, job-type, freshness.
#
# IMPORTANT β geoId vs f_PP split:
# β’ The full UI page at /jobs/search/ respects BOTH geoId AND f_PP and uses
# f_PP to narrow within a broader geoId. We keep both on the UI URL so the
# "Open in LinkedIn" link matches the user's reference URL.
# β’ The guest /jobs-guest/jobs/api/seeMoreJobPostings/search endpoint
# SILENTLY returns an empty 26-byte stub when f_PP is present (it does
# not support the f_PP filter), so the HTTP-pagination path strips f_PP
# and relies on geoId only. See _PAGINATION_PARAM_KEYS below.
# Always-on params. geoId 90009633 = "Bengaluru" (covers Bengaluru metro on
# the guest API). f_PP narrows further on the UI URL for the "Open in
# LinkedIn" link; the API silently ignores it so we strip it for pagination.
_FIXED_PARAMS: dict[str, str] = {
"sortBy": "R",
"f_E": "1",
"geoId": "90009633",
}
# Work-type checkbox options (label β LinkedIn f_WT code).
WORK_TYPES: dict[str, str] = {
"onsite": "1",
"remote": "2",
"hybrid": "3",
}
# Job-type checkbox options (label β LinkedIn f_JT code) β spec restricts to
# these two only.
JOB_TYPES: dict[str, str] = {
"internship": "I",
"full_time": "F",
}
# Freshness dropdown presets (label β LinkedIn f_TPR code).
FRESHNESS_PRESETS: dict[str, str] = {
"hour": "r3600",
"day": "r86400",
"week": "r604800",
"month": "r2592000",
}
# ββ School-based search term generation βββββββββββββββββββββββ
#
# Convenient shortcut keywords that resolve to a specific school.
# The user specifically requested that searches for a school (e.g. "SOB")
# should search EXACTLY these keywords on LinkedIn.
KEYWORD_TO_SCHOOL: dict[str, str] = {
# [[SOCSE]] β Computer Science & Engineering
"software": "SOCSE",
"cs": "SOCSE",
"computer science": "SOCSE",
"programming": "SOCSE",
"coding": "SOCSE",
"data": "SOCSE",
"data science": "SOCSE",
"machine learning": "SOCSE",
"ai": "SOCSE",
"cyber": "SOCSE",
"cybersecurity": "SOCSE",
"qa": "SOCSE",
"devops": "SOCSE",
"frontend": "SOCSE",
"backend": "SOCSE",
"fullstack": "SOCSE",
"cloud": "SOCSE",
"developer": "SOCSE",
"engineer": "SOCSE",
"sde": "SOCSE",
"swe": "SOCSE",
"it": "SOCSE",
"web development": "SOCSE",
"app development": "SOCSE",
"mobile development": "SOCSE",
"android": "SOCSE",
"ios": "SOCSE",
"react": "SOCSE",
"node": "SOCSE",
"python": "SOCSE",
"java": "SOCSE",
"c++": "SOCSE",
"golang": "SOCSE",
"flutter": "SOCSE",
"aws": "SOCSE",
"azure": "SOCSE",
"gcp": "SOCSE",
"data analyst": "SOCSE",
"data engineer": "SOCSE",
"nlp": "SOCSE",
"computer vision": "SOCSE",
"quality assurance": "SOCSE",
"testing": "SOCSE",
"blockchain": "SOCSE",
"web3": "SOCSE",
"systems engineer": "SOCSE",
"network engineer": "SOCSE",
"site reliability": "SOCSE",
"sre": "SOCSE",
"hardware": "SOCSE",
"embedded": "SOCSE",
# SODI β Design & Innovation
"designing": "SOCSE,SODI",
"ui ux": "SOCSE,SODI",
"graphic designer": "SOCSE,SODI",
"ui designer": "SOCSE,SODI",
"ux designer": "SOCSE,SODI",
"product designer": "SOCSE,SODI",
"product design": "SODI",
"industrial design":"SODI",
"interaction design":"SODI",
"visual design": "SODI",
# SOB β Business
"business": "SOB",
"marketing": "SOB",
"finance": "SOB",
"hr": "SOB",
"accounting": "SOB",
"commerce": "SOB",
"mba": "SOB",
"sales": "SOB",
"strategy": "SOB",
"operations": "SOB",
"management": "SOB",
"consulting": "SOB",
"analyst": "SOB",
"business analyst": "SOB",
"business development": "SOB",
"bda": "SOB",
"bde": "SOB",
"sales intern": "SOB",
"marketing intern": "SOB",
"hr intern": "SOB",
"finance intern": "SOB",
"investment banking": "SOB",
"venture capital": "SOB",
"private equity": "SOB",
"digital marketing": "SOB",
"seo": "SOB",
"content writer": "SOB",
"social media": "SOB",
"growth": "SOB",
"product manager": "SOB",
"project manager": "SOB",
# SoEPP β Economics & Public Policy
"economics": "SoEPP",
"policy": "SoEPP",
"governance": "SoEPP",
"public policy": "SoEPP",
"research": "SoEPP",
"development studies":"SoEPP",
"economist": "SoEPP",
"policy analyst": "SoEPP",
"public relations": "SoEPP",
"government": "SoEPP",
# SOLaw β Law
"law": "SOLaw",
"legal": "SOLaw",
"paralegal": "SOLaw",
"attorney": "SOLaw",
"counsel": "SOLaw",
"cyber law": "SOLaw",
"law intern": "SOLaw",
"legal intern": "SOLaw",
"litigation": "SOLaw",
"corporate law": "SOLaw",
"ipr": "SOLaw",
# SOFMCA β Film, Media & Creative Arts
"media": "SOFMCA",
"film": "SOFMCA",
"journalism": "SOFMCA",
"animation": "SOFMCA",
"vfx": "SOFMCA",
"gaming": "SOFMCA",
"content creation": "SOFMCA",
"acting": "SOFMCA",
"editor": "SOFMCA",
"video editor": "SOFMCA",
"cinematographer": "SOFMCA",
"copywriter": "SOFMCA",
"media intern": "SOFMCA",
"pr intern": "SOFMCA",
"producer": "SOFMCA",
# SOLAS β Liberal Arts & Sciences
"psychology": "SOLAS",
"environment": "SOLAS",
"liberal arts": "SOLAS",
"sociology": "SOLAS",
"history": "SOLAS",
"behavioral science":"SOLAS",
"psychology intern": "SOLAS",
"counseling": "SOLAS",
"sociologist": "SOLAS",
"research assistant":"SOLAS",
# SOAHP β Allied & Healthcare
"healthcare": "SOAHP",
"medical": "SOAHP",
"clinical": "SOAHP",
"laboratory": "SOAHP",
"nursing": "SOAHP",
"public health": "SOAHP",
"clinical research": "SOAHP",
"public health intern": "SOAHP",
"hospital administration": "SOAHP",
"pharma": "SOAHP",
}
# Build SCHOOL_SEARCH_TERMS directly from KEYWORD_TO_SCHOOL.
# The user explicitly wants us to search *exactly* these keywords.
SCHOOL_SEARCH_TERMS: dict[str, list[str]] = {}
for kw, school_str in KEYWORD_TO_SCHOOL.items():
for school in school_str.split(","):
school_lower = school.strip().lower()
if school_lower not in SCHOOL_SEARCH_TERMS:
SCHOOL_SEARCH_TERMS[school_lower] = []
SCHOOL_SEARCH_TERMS[school_lower].append(kw)
def build_search_params(
keywords: str,
freshness: str = "r86400",
work_types: Optional[list[str]] = None,
job_types: Optional[list[str]] = None,
) -> dict[str, str]:
"""Build the LinkedIn guest search query-param dict.
Fixed params (sortBy, f_E, f_PP) are always present.
Variable params reflect user-selected checkboxes / dropdown:
- f_TPR : freshness (raw "r<seconds>" code)
- f_WT : comma-joined work-type codes (only when any box ticked)
- f_JT : comma-joined job-type codes (only when any box ticked)
"""
params: dict[str, str] = {
"keywords": keywords,
**_FIXED_PARAMS,
"f_TPR": freshness,
}
if work_types:
codes = [WORK_TYPES[k] for k in work_types if k in WORK_TYPES]
if codes:
params["f_WT"] = ",".join(codes)
if job_types:
codes = [JOB_TYPES[k] for k in job_types if k in JOB_TYPES]
if codes:
params["f_JT"] = ",".join(codes)
return params
def build_search_url(
keywords: str,
freshness: str = "r86400",
work_types: Optional[list[str]] = None,
job_types: Optional[list[str]] = None,
) -> str:
"""Builds a fully-parameterised LinkedIn guest search URL.
Shape matches LinkedIn's UI-canonical form, e.g.:
https://www.linkedin.com/jobs/search/?keywords=intern&sortBy=R&f_E=1
&f_PP=105214831,113968072,112565523,119634689&f_TPR=r86400&f_WT=1,2&f_JT=I
"""
params = build_search_params(
keywords=keywords,
freshness=freshness,
work_types=work_types,
job_types=job_types,
)
# Trailing slash on /jobs/search/ matches LinkedIn's UI-canonical URL.
return f"https://www.linkedin.com/jobs/search/?{urllib.parse.urlencode(params)}"
# ββ Shared HTML parser ββββββββββββββββββββββββββββββββββββββββ
def _parse_jobs_from_html(html: str) -> list[dict]:
"""Extract job listings from raw HTML using BeautifulSoup.
Cascading selectors handle multiple LinkedIn page variants.
NOTE: contact_details (hiring team links) are NOT extracted here.
They live on each job's *detail* page, not the search results list.
Use _fetch_hiring_links_for_jobs() after collection to enrich jobs.
"""
soup = BeautifulSoup(html, "html.parser")
jobs = []
# Primary selector: public guest search results
cards = soup.select("ul.jobs-search__results-list > li")
# Fallback selectors for alternate page states + seeMoreJobPostings fragments
# (the paginated endpoint returns bare <li> elements with no wrapping <ul>).
if not cards:
cards = soup.select("li.job-search-card, li.result-card")
if not cards:
cards = soup.select("div.base-card.base-search-card")
if not cards:
cards = soup.select("[data-entity-urn*='jobPosting']")
for card in cards:
try:
# Title
title_el = (
card.select_one(".base-search-card__title")
or card.select_one("h3")
or card.select_one("[class*='title']")
)
# Company
company_el = (
card.select_one(".base-search-card__subtitle a")
or card.select_one(".base-search-card__subtitle")
or card.select_one("h4 a")
)
# Location
loc_el = (
card.select_one(".job-search-card__location")
or card.select_one("[class*='location']")
)
# Link
link_el = (
card.select_one("a.base-card__full-link")
or card.select_one("a[href*='/jobs/view/']")
or card.select_one("a[href*='linkedin.com/jobs']")
)
# Posted date
date_el = (
card.select_one("time.job-search-card__listdate")
or card.select_one("time.job-search-card__listdate--new")
or card.select_one("time")
)
title = title_el.get_text(strip=True) if title_el else None
company = company_el.get_text(strip=True) if company_el else None
location = loc_el.get_text(strip=True) if loc_el else None
raw_link = link_el.get("href", "") if link_el else ""
link = raw_link.split("?")[0] if raw_link else None
posted = date_el.get_text(strip=True) if date_el else None
posted_dt = date_el.get("datetime") if date_el else None
# At least title or company must exist for a valid card
if title or company:
classification = classify_job(title or "", company or "")
jobs.append({
"title": title,
"company": company,
"location": location,
"link": link,
"posted": posted,
"posted_datetime": posted_dt,
"programs": classification["programs"],
"schools": classification["schools"],
"contact_details": [], # enriched later by _fetch_hiring_links_for_jobs
})
except Exception:
continue
return jobs
# ββ Serper-based hiring manager search βββββββββββββββββββββββ
_SERPER_API_KEY = os.environ.get("SERPER_API_KEY", "0820e51e9080c289b3849e30189e023774fdad87")
_SERPER_URL = "https://google.serper.dev/search"
# Semaphore: at most 3 concurrent Serper requests
_SERPER_SEM = asyncio.Semaphore(3)
_LINKEDIN_IN_RE = re.compile(r'https?://(?:[\w-]+\.)?linkedin\.com/in/([\w%-]+)', re.IGNORECASE)
def _extract_linkedin_profile_from_serper(data: dict) -> dict | None:
"""Parse a Serper JSON response and return the first LinkedIn /in/ profile found.
Priority order:
1. answerBox.link (Google AI / Featured Snippet)
2. answerBox.snippet (text contains a linkedin.com/in/ URL)
3. organic[0].link (first organic result)
4. organic[].link (first organic result that is a /in/ URL)
Returns:
{"name": "<person_slug_or_extracted_name>", "url": "<linkedin_profile_url>"}
or None if nothing found.
"""
# 1. answerBox direct link
ab = data.get("answerBox", {})
ab_link = ab.get("link", "")
if ab_link and "linkedin.com/in/" in ab_link:
slug = ab_link.rstrip("/").split("/in/")[-1].split("?")[0]
name = ab.get("title") or slug.replace("-", " ").title()
return {"name": name, "url": ab_link.split("?")[0]}
# 2. answerBox snippet contains a URL
ab_snippet = ab.get("snippet", "") or ab.get("answer", "")
m = _LINKEDIN_IN_RE.search(ab_snippet)
if m:
url = m.group(0).split("?")[0]
slug = m.group(1)
name = ab.get("title") or slug.replace("-", " ").title()
return {"name": name, "url": url}
# 3 & 4. Organic results β prefer linkedin.com/in/ links
for result in data.get("organic", []):
link = result.get("link", "")
if "linkedin.com/in/" in link:
slug = link.rstrip("/").split("/in/")[-1].split("?")[0]
name = result.get("title", slug).split(" - ")[0].split(" | ")[0].strip()
return {"name": name, "url": link.split("?")[0]}
return None
async def _fetch_hiring_contacts_via_serper(jobs: list[dict]) -> None:
"""Enrich each job dict in-place with contact_details via Serper Google search.
For each job, searches:
site:linkedin.com/in "{company}" "hiring" OR "recruiter" OR "HR"
contact_details becomes a list with at most 1 entry:
[{"name": "Person Name", "url": "https://linkedin.com/in/slug"}]
Jobs where no profile is found keep contact_details as [].
Requires SERPER_API_KEY in environment.
"""
if not _SERPER_API_KEY:
logger.warning("serper: SERPER_API_KEY not set β skipping hiring contact search")
return
async def _search_one(job: dict) -> None:
company = job.get("company") or ""
if not company:
return
# Build a targeted query: site operator + company + hiring signals
query = f'site:linkedin.com/in "{company}" hiring OR recruiter OR "HR"'
try:
async with _SERPER_SEM:
await asyncio.sleep(random.uniform(0.2, 0.6))
async with httpx.AsyncClient(timeout=10.0) as client:
resp = await client.post(
_SERPER_URL,
json={"q": query, "num": 5, "gl": "in", "hl": "en"},
headers={
"X-API-KEY": _SERPER_API_KEY,
"Content-Type": "application/json",
},
)
if resp.status_code != 200:
logger.debug(
f"serper: HTTP {resp.status_code} for company={company!r}"
)
return
data = resp.json()
profile = _extract_linkedin_profile_from_serper(data)
if profile:
job["contact_details"] = [profile]
logger.info(
f"serper: β {job.get('title','?')} @ {company} β "
f"{profile['name']} ({profile['url']})"
)
else:
logger.debug(f"serper: no profile found for company={company!r}")
except Exception as e:
logger.debug(f"serper: error searching for {company!r}: {e}")
await asyncio.gather(*[_search_one(j) for j in jobs])
# ββ Paginated HTTP fetcher (seeMoreJobPostings) βββββββββββββββ
_SEE_MORE_URL = (
"https://www.linkedin.com/jobs-guest/jobs/api/seeMoreJobPostings/search"
)
# Keys forwarded to the seeMoreJobPostings endpoint.
# NOTE: f_PP is intentionally EXCLUDED here β the guest API returns an empty
# 26-byte stub whenever f_PP is present (verified 2026-05-20). geoId provides
# equivalent narrowing. f_PP stays on the UI URL only.
_PAGINATION_PARAM_KEYS = {
"keywords", "sortBy", "f_E", "geoId", "f_TPR", "f_WT", "f_JT",
}
async def _fetch_more_pages(
base_params: dict,
cookies: dict,
headers: dict,
max_pages: int = 20,
start_offset: int = 25,
) -> list[dict]:
"""Page through LinkedIn's guest seeMoreJobPostings endpoint.
The endpoint returns ~25 job cards as a raw HTML fragment per call.
Stops on: 4xx/5xx (rate limit, with retry on 429), empty body,
empty stub detection, or empty parsed result. Returns whatever was
collected before stopping β never raises.
Retries on transient network errors (DNS, connection timeouts) with
exponential backoff to handle temporary infrastructure issues.
"""
params_clean = {
k: v for k, v in base_params.items()
if k in _PAGINATION_PARAM_KEYS and v not in (None, "")
}
collected: list[dict] = []
rate_limit_retries_left = 2 # total 429s tolerated across the whole loop
first_response_dumped = False
dump_path = os.path.join(tempfile.gettempdir(), "linkedin_pagination_first_response.html")
try:
async with httpx.AsyncClient(
timeout=20.0,
cookies=cookies,
headers=headers,
follow_redirects=True,
http2=False,
) as client:
# Brief settle before first request β reduced from 3s for speed.
await asyncio.sleep(random.uniform(1.0, 2.0))
start = start_offset
for page_idx in range(max_pages):
url = f"{_SEE_MORE_URL}?{urllib.parse.urlencode({**params_clean, 'start': start})}"
logger.info(f"pagination: GET {url}")
# Retry loop for transient network errors
max_network_retries = 3
for attempt in range(1, max_network_retries + 1):
try:
resp = await client.get(url)
break # Success, exit retry loop
except (httpx.TimeoutException, httpx.NetworkError, OSError) as e:
# Transient network errors: DNS (getaddrinfo), timeout, connection reset
if attempt < max_network_retries:
backoff = min(2 ** attempt, 10.0) * random.uniform(1.0, 1.5)
logger.warning(
f"pagination: transient network error at start={start} "
f"(attempt {attempt}/{max_network_retries}): {type(e).__name__}. "
f"Retrying in {backoff:.1f}s..."
)
await asyncio.sleep(backoff)
else:
logger.warning(
f"pagination: network error at start={start} after "
f"{max_network_retries} attempts: {e}; stopping with {len(collected)} jobs"
)
return collected
except httpx.HTTPError as e:
logger.warning(
f"pagination: HTTP error at start={start}: {e}; "
f"stopping with {len(collected)} extra jobs"
)
return collected
# Retry on 429 with longer backoff β LinkedIn's rate limits
# are usually short-lived and clear after ~10s.
if resp.status_code == 429 and rate_limit_retries_left > 0:
rate_limit_retries_left -= 1
backoff = random.uniform(15.0, 25.0)
logger.warning(
f"pagination: 429 at start={start}; backing off {backoff:.1f}s "
f"and retrying ({rate_limit_retries_left} retries left)"
)
await asyncio.sleep(backoff)
try:
resp = await client.get(url)
except (httpx.TimeoutException, httpx.NetworkError, OSError, httpx.HTTPError) as e:
logger.warning(f"pagination: retry HTTP error: {e}; stopping")
return collected
html = resp.text or ""
body_len = len(resp.content) if resp.content is not None else 0
li_count = html.lower().count("<li")
logger.info(
f"pagination: start={start} status={resp.status_code} "
f"bytes={body_len} <li>={li_count}"
)
if not first_response_dumped:
try:
with open(dump_path, "w", encoding="utf-8") as f:
f.write(html)
logger.info(f"pagination: dumped first response β {dump_path}")
except Exception as e:
logger.warning(f"pagination: could not dump response: {e}")
first_response_dumped = True
if resp.status_code >= 400:
logger.warning(
f"pagination: status {resp.status_code} at start={start} "
f"(likely rate-limit); stopping with {len(collected)} extra jobs"
)
break
if not html.strip():
logger.info(
f"pagination: empty body at start={start}; end of results "
f"(+{len(collected)} extra jobs)"
)
break
# ββ Early stub detection ββββββββββββββββββββββββββ
# Detect the 26-byte empty stub and login walls before
# wasting time on HTML parsing. On the very first page
# this signals "HTTP path is blocked" so we can bail fast.
if _is_empty_stub(html):
logger.warning(
f"pagination: empty stub/block detected at start={start} "
f"(bytes={body_len}); stopping with {len(collected)} extra jobs"
)
break
page_jobs = _parse_jobs_from_html(html)
logger.info(
f"pagination: start={start} parser returned {len(page_jobs)} jobs"
)
if not page_jobs:
snippet = html[:500].replace("\n", " ")
logger.warning(
f"pagination: parser returned 0 jobs from a non-empty body "
f"(bytes={body_len}, <li>={li_count}). First 500 chars: {snippet!r}"
)
logger.info(
f"pagination: no jobs parsed at start={start}; end of results "
f"(+{len(collected)} extra jobs)"
)
break
collected.extend(page_jobs)
logger.info(
f"pagination: start={start} β +{len(page_jobs)} jobs "
f"(running paginated total {len(collected)})"
)
# Advance by the actual page size LinkedIn returned.
start += len(page_jobs)
# Human-like inter-page jitter β varied enough to avoid
# pattern detection.
await asyncio.sleep(random.uniform(3.5, 6.0))
except Exception as e:
logger.warning(
f"pagination: unexpected error: {e}; returning {len(collected)} extra jobs"
)
return collected
# ββ Scraping engines ββββββββββββββββββββββββββββββββββββββββββ
_JOB_CARD_CSS = (
"ul.jobs-search__results-list > li, "
"div.base-card.base-search-card, "
"[data-entity-urn*='jobPosting']"
)
def _selenium_scrape(driver, url: str) -> tuple[list[dict], dict]:
"""Synchronous Selenium scrape β executed inside executor thread.
Returns (jobs, cookies) so the async caller can paginate over HTTP."""
driver.get(url)
# Wait up to 15 s for at least one job card β if nothing loads, bail so
# Playwright fallback can try instead.
try:
WebDriverWait(driver, 15).until(
EC.presence_of_element_located((By.CSS_SELECTOR, _JOB_CARD_CSS))
)
except Exception:
logger.warning("Selenium: no job cards appeared within 15 s")
return [], {}
# Scroll to bottom repeatedly; break after 3 consecutive unchanged heights.
no_change = 0
for _ in range(15):
prev_height = driver.execute_script("return document.body.scrollHeight")
driver.execute_script("window.scrollTo(0, document.body.scrollHeight)")
time.sleep(1.5)
# Click "See more jobs" / "Show more results" if present
try:
btn = driver.find_element(
By.XPATH,
"//button[contains(translate(., 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'), 'see more')"
" or contains(translate(., 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'), 'show more')]"
)
btn.click()
time.sleep(1.0)
except Exception:
pass
new_height = driver.execute_script("return document.body.scrollHeight")
if new_height == prev_height:
no_change += 1
if no_change >= 3:
break
else:
no_change = 0
jobs = _parse_jobs_from_html(driver.page_source)
try:
cookies = {c["name"]: c["value"] for c in driver.get_cookies()}
except Exception as e:
logger.warning(f"Selenium: could not extract cookies for pagination: {e}")
cookies = {}
return jobs, cookies
async def _playwright_scrape(browser, url: str) -> tuple[list[dict], dict]:
"""Async Playwright scrape β fallback engine.
Returns (jobs, cookies) so the caller can paginate over HTTP."""
context = await browser.new_context(
user_agent=_build_user_agent()
)
page = await context.new_page()
try:
await page.goto(url, wait_until="domcontentloaded", timeout=30000)
# Wait up to 15 s for at least one job card
try:
await page.wait_for_selector(_JOB_CARD_CSS, timeout=15000)
except Exception:
logger.warning("Playwright: no job cards appeared within 15 s")
return [], {}
# Scroll to bottom repeatedly; break after 3 consecutive unchanged heights.
no_change = 0
for _ in range(15):
prev_height = await page.evaluate("document.body.scrollHeight")
await page.evaluate("window.scrollTo(0, document.body.scrollHeight)")
await asyncio.sleep(1.5)
# Click "See more jobs" button if present
try:
await page.locator("button:has-text('See more')").click(timeout=1000)
await asyncio.sleep(1.0)
except Exception:
pass
new_height = await page.evaluate("document.body.scrollHeight")
if new_height == prev_height:
no_change += 1
if no_change >= 3:
break
else:
no_change = 0
html = await page.content()
jobs = _parse_jobs_from_html(html)
try:
cookies = {c["name"]: c["value"] for c in await context.cookies()}
except Exception as e:
logger.warning(f"Playwright: could not extract cookies for pagination: {e}")
cookies = {}
return jobs, cookies
finally:
await page.close()
await context.close()
# ββ Single-URL scrape helper (Selenium β Playwright) βββββββββ
def _build_pagination_headers(referer_url: str) -> dict:
"""Browser-realistic headers for the seeMoreJobPostings endpoint.
Uses a random UA from the rotation pool and matches the installed
Chrome version for Sec-Ch-Ua consistency."""
v = _get_chrome_major_version() or 131
ua = random.choice(_UA_POOL) if _UA_POOL else _build_user_agent()
return {
"User-Agent": ua,
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Accept-Language": "en-US,en;q=0.9",
"Accept-Encoding": "gzip, deflate, br",
"Referer": referer_url,
"Sec-Fetch-Dest": "empty",
"Sec-Fetch-Mode": "cors",
"Sec-Fetch-Site": "same-origin",
"Sec-Ch-Ua": f'"Chromium";v="{v}", "Not_A Brand";v="24"',
"Sec-Ch-Ua-Mobile": "?0",
"Sec-Ch-Ua-Platform": '"Windows"',
"Connection": "keep-alive",
}
async def _scrape_one_url(
url: str,
params: Optional[dict] = None,
paginate: bool = False,
) -> tuple[list[dict], str]:
"""Scrape one URL with cookie warm-up, exponential-backoff retry,
and smarter browser fallback.
Pipeline:
1. Warm up cookies via browser visit (cached for 10 min).
2. Try HTTP pagination with warm cookies (up to 3 attempts
with exponential backoff on failure).
3. If HTTP fails after all retries, fall back to Selenium
then Playwright to scrape the UI page directly.
4. If a browser engine succeeds, try one more HTTP pagination
pass using the browser's fresh cookies to extend the results.
Returns (jobs, engine_used) where engine_used is one of
'http' / 'selenium' / 'playwright' / 'none'.
"""
global se_driver
jobs: list[dict] = []
engine_used = "none"
browser_cookies: dict = {}
# ββ Phase 1 β HTTP with warm cookies + retry loop βββββββββββββ
if paginate and params:
max_http_attempts = 3
for attempt in range(1, max_http_attempts + 1):
# Warm up cookies (uses cache if fresh; force re-warm on retries)
cookies = await _warm_up_cookies(force=(attempt > 1))
logger.info(
f"HTTP attempt {attempt}/{max_http_attempts} "
f"(cookies={'warm' if cookies else 'cold'})"
)
http_jobs = await _fetch_more_pages(
base_params=params,
cookies=cookies,
headers=_build_pagination_headers(referer_url=url),
max_pages=40,
start_offset=0,
)
if http_jobs:
jobs = http_jobs
engine_used = "http"
logger.info(
f"HTTP scraped {len(jobs)} jobs on attempt {attempt}"
)
break
# Exponential backoff before next attempt
if attempt < max_http_attempts:
backoff = (2 ** attempt) * random.uniform(2.0, 4.0)
logger.warning(
f"HTTP attempt {attempt} returned 0 jobs; "
f"backing off {backoff:.1f}s before retry"
)
await asyncio.sleep(backoff)
if not jobs:
logger.warning(
f"HTTP pagination failed after {max_http_attempts} attempts "
"β falling back to browser engines"
)
# ββ Phase 2 β Browser fallback (Selenium β Playwright) ββββββββ
if not jobs and se_driver:
try:
async with _scrape_lock:
loop = asyncio.get_event_loop()
jobs, browser_cookies = await loop.run_in_executor(
executor, _selenium_scrape, se_driver, url
)
if jobs:
engine_used = "selenium"
logger.info(f"Selenium scraped {len(jobs)} jobs (fallback)")
except Exception as e:
logger.warning(f"Selenium fallback failed: {e}")
err_str = str(e).lower()
if "window" in err_str or "closed" in err_str or "view" in err_str:
logger.info("Selenium fallback: Recreating crashed driver...")
try:
async with _scrape_lock:
loop = asyncio.get_event_loop()
try:
await loop.run_in_executor(executor, se_driver.quit)
except Exception:
pass
se_driver = await loop.run_in_executor(executor, _create_selenium_driver)
jobs, browser_cookies = await loop.run_in_executor(
executor, _selenium_scrape, se_driver, url
)
if jobs:
engine_used = "selenium"
logger.info(f"Selenium scraped {len(jobs)} jobs via recreated driver")
except Exception as e2:
logger.warning(f"Selenium fallback recreation failed: {e2}")
if not jobs and pw_browser:
try:
jobs, browser_cookies = await _playwright_scrape(pw_browser, url)
if jobs:
engine_used = "playwright"
logger.info(f"Playwright scraped {len(jobs)} jobs (fallback)")
except Exception as e:
logger.warning(f"Playwright fallback failed: {e}")
# ββ Phase 3 β Post-browser HTTP extension βββββββββββββββββββββ
# If a browser engine got results, try HTTP pagination with its
# fresh cookies to collect additional pages beyond what the browser
# initially loaded (the browser typically only sees page 1).
if jobs and browser_cookies and paginate and params:
logger.info(
f"Extending {len(jobs)} browser results via HTTP with "
f"{len(browser_cookies)} fresh browser cookies"
)
extra_jobs = await _fetch_more_pages(
base_params=params,
cookies=browser_cookies,
headers=_build_pagination_headers(referer_url=url),
max_pages=20,
start_offset=len(jobs), # continue from where the browser left off
)
if extra_jobs:
jobs.extend(extra_jobs)
logger.info(
f"HTTP extension added {len(extra_jobs)} jobs "
f"(total now {len(jobs)})"
)
return jobs, engine_used
# ββ API endpoints βββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/schools")
async def get_schools():
"""Return the full school registry used for job classification."""
return SCHOOLS
@app.get("/locations")
async def get_locations():
"""Return the city β geoId mapping used for location checkboxes."""
return INDIAN_METROS
# ββ Parallel multi-keyword HTTP scraper βββββββββββββββββββββββ
# Concurrency limiter β at most 1 parallel HTTP scrape to avoid
# triggering LinkedIn's rate limiter. Sequential is safer and still fast.
_PARALLEL_SEMAPHORE = asyncio.Semaphore(1)
async def _fetch_all_pages_for_keyword(
keyword: str,
base_params: dict,
cookies: dict,
max_pages: int = 10,
) -> list[dict]:
"""Fast HTTP-only scraper for a single keyword.
Designed for parallel fan-out: lightweight, no browser, shorter
inter-page delays. Uses the shared semaphore to throttle concurrency.
Retries on transient network errors with exponential backoff to handle
temporary infrastructure issues.
"""
params = {
k: v for k, v in base_params.items()
if k in _PAGINATION_PARAM_KEYS and v not in (None, "")
}
params["keywords"] = keyword # override with this specific keyword
referer_url = f"https://www.linkedin.com/jobs/search/?{urllib.parse.urlencode(params)}"
headers = _build_pagination_headers(referer_url=referer_url)
collected: list[dict] = []
async with _PARALLEL_SEMAPHORE:
try:
async with httpx.AsyncClient(
timeout=20.0,
cookies=cookies,
headers=headers,
follow_redirects=True,
http2=False,
) as client:
# Brief initial settle
await asyncio.sleep(random.uniform(2.0, 4.0))
start = 0
consecutive_empty = 0
for page_idx in range(max_pages):
url = f"{_SEE_MORE_URL}?{urllib.parse.urlencode({**params, 'start': start})}"
logger.info(f"parallel[{keyword[:30]}]: GET start={start}")
# Retry loop for transient network errors
max_network_retries = 3
resp = None
for attempt in range(1, max_network_retries + 1):
try:
resp = await client.get(url)
break # Success, exit retry loop
except (httpx.TimeoutException, httpx.NetworkError, OSError) as e:
# Transient network errors
if attempt < max_network_retries:
backoff = min(2 ** attempt, 10.0) * random.uniform(1.0, 1.5)
logger.warning(
f"parallel[{keyword[:30]}]: transient network error "
f"(attempt {attempt}/{max_network_retries}): {type(e).__name__}. "
f"Retrying in {backoff:.1f}s..."
)
await asyncio.sleep(backoff)
else:
logger.warning(
f"parallel[{keyword[:30]}]: network error at start={start} "
f"after {max_network_retries} attempts: {e}; "
f"stopping with {len(collected)} jobs"
)
break
except httpx.HTTPError as e:
logger.warning(
f"parallel[{keyword[:30]}]: HTTP error at start={start}: {e}; stopping"
)
break
if resp is None:
break # All retries failed, stop pagination
# Handle rate limits
if resp.status_code == 429:
backoff = random.uniform(15.0, 25.0)
logger.warning(
f"parallel[{keyword[:30]}]: 429 at start={start}; "
f"backing off {backoff:.1f}s"
)
await asyncio.sleep(backoff)
try:
resp = await client.get(url)
except (httpx.TimeoutException, httpx.NetworkError, OSError, httpx.HTTPError):
break
if resp.status_code >= 400:
logger.warning(
f"parallel[{keyword[:30]}]: status {resp.status_code}; stopping"
)
break
html = resp.text or ""
if not html.strip() or _is_empty_stub(html):
consecutive_empty += 1
if consecutive_empty >= 2:
break
# One empty might be transient β try next offset
start += 25
await asyncio.sleep(random.uniform(0.5, 1.0))
continue
consecutive_empty = 0
page_jobs = _parse_jobs_from_html(html)
logger.info(
f"parallel[{keyword[:30]}]: start={start} β {len(page_jobs)} jobs"
)
if not page_jobs:
break
collected.extend(page_jobs)
start += len(page_jobs)
# Human-like delays between pages
await asyncio.sleep(random.uniform(4.0, 7.0))
except Exception as e:
logger.warning(
f"parallel[{keyword[:30]}]: unexpected error: {e}; "
f"returning {len(collected)} jobs"
)
# Cool-down before releasing semaphore to next keyword
await asyncio.sleep(random.uniform(4.0, 8.0))
logger.info(f"parallel[{keyword[:30]}]: done β {len(collected)} jobs total")
return collected
def _resolve_search(user_keyword: str) -> tuple[list[str], Optional[str]]:
"""Resolve user input into expanded search keywords + optional school filter.
Resolution order:
1. Exact school code (case-insensitive): "SOCSE" β all SOCSE terms
2. Shortcut keyword: "software" β SOCSE terms
3. Direct passthrough: "Data Analyst" β ["Data Analyst"], no filter
Returns:
(search_keywords, school_code_to_filter_by_or_None)
"""
key = user_keyword.strip().lower()
# 1. Exact school code match (SOCSE, solas, SOB, etc.)
school_lower_map = {code.lower(): code for code in SCHOOLS}
if key in school_lower_map:
code = school_lower_map[key]
terms = SCHOOL_SEARCH_TERMS.get(key, [])
logger.info(
f"resolve_search: school code '{code}' β {len(terms)} search terms"
)
return terms if terms else [user_keyword], code
# 2. Shortcut keyword β school (e.g. "software" β SOCSE)
if key in KEYWORD_TO_SCHOOL:
school_code = KEYWORD_TO_SCHOOL[key]
terms = []
for school in school_code.split(","):
for t in SCHOOL_SEARCH_TERMS.get(school.strip().lower(), []).copy():
if t not in terms:
terms.append(t)
# Guarantee the user's explicit shortcut keyword is also searched!
# Sometimes shortcuts are exact job titles (e.g. "marketing", "data").
if key not in [t.lower() for t in terms]:
# Insert at the beginning so it's prioritized
terms.insert(0, user_keyword.strip())
logger.info(
f"resolve_search: shortcut '{key}' β school {school_code} "
f"({len(terms)} search terms including shortcut)"
)
return terms if terms else [user_keyword], school_code
# 3. Direct keyword β no expansion, no school filter
logger.info(f"resolve_search: direct keyword '{user_keyword}' (no expansion)")
return [user_keyword], None
def _deduplicate_jobs(jobs: list[dict]) -> tuple[list[dict], int]:
"""Deduplicate jobs by canonical link. Returns (deduped_list, num_removed)."""
seen: dict[str, dict] = {}
untagged: list[dict] = []
for job in jobs:
key = job.get("link")
if key:
if key not in seen:
seen[key] = job
else:
untagged.append(job)
deduped = list(seen.values()) + untagged
return deduped, len(jobs) - len(deduped)
@app.post("/scrape-internships")
async def scrape_internships(
keywords: str = Query("Software Engineer", description="Job search keywords"),
freshness: str = Query("r86400", description="Posting age: r3600=1h r86400=24h r604800=week r2592000=month"),
work_types: Optional[list[str]] = Query(
default=None,
description="Work-type checkboxes β repeat per selection: onsite | remote | hybrid",
),
job_types: Optional[list[str]] = Query(
default=None,
description="Job-type checkboxes β repeat per selection: internship | full_time",
),
):
# ββ Resolve keywords + optional school filter ββββββββββββββ
all_keywords, school_filter = _resolve_search(keywords)
if job_types and any(jt.lower() == "internship" for jt in job_types):
all_keywords = [f"{kw} intern" for kw in all_keywords]
keywords = f"{keywords} intern"
is_multi = len(all_keywords) > 1
# Build the "primary" URL (used for the "Open in LinkedIn" link)
primary_url = build_search_url(
keywords=keywords,
freshness=freshness,
work_types=work_types,
job_types=job_types,
)
primary_params = build_search_params(
keywords=keywords,
freshness=freshness,
work_types=work_types,
job_types=job_types,
)
async def _stream_generator():
"""NDJSON streaming generator.
Emits lines of JSON, one per event:
{"type": "start", ...}
{"type": "info", "message": ...}
{"type": "jobs", "data": [...], ...}
{"type": "done", ...}
{"type": "error", "message": ...}
"""
all_jobs: list[dict] = []
engine_used = "http"
total_dupes_removed = 0
total_filtered_out = 0
try:
# ββ Emit start event ββββββββββββββββββββββββββββββ
yield json.dumps({
"type": "start",
"engine": "http",
"total_searches": len(all_keywords) if is_multi else 1,
}) + "\n"
if is_multi:
school_label = f" (school: {school_filter})" if school_filter else ""
yield json.dumps({
"type": "info",
"message": f"Expanding '{keywords}' β {len(all_keywords)} parallel searches{school_label}",
}) + "\n"
# ββ Warm up cookies once ββββββββββββββββββββββββββ
cookies = await _warm_up_cookies(force=False)
if not cookies:
yield json.dumps({
"type": "info",
"message": "Cookie warm-up: re-warming...",
}) + "\n"
cookies = await _warm_up_cookies(force=True)
if is_multi:
# ββ PARALLEL MULTI-KEYWORD PATH ββββββββββββββ
# Fan out all keywords as concurrent tasks.
# As each completes, stream its results immediately.
seen_links: set = set()
async def _scrape_and_collect(kw: str, index: int):
"""Scrape one keyword with a stagger delay to avoid 429s."""
# Stagger: each task waits before starting so requests are spread out.
stagger = index * random.uniform(3.0, 6.0)
if stagger > 0:
await asyncio.sleep(stagger)
jobs = await _fetch_all_pages_for_keyword(
keyword=kw,
base_params=primary_params,
cookies=cookies,
max_pages=10,
)
return kw, jobs
# Create all tasks
tasks = [
asyncio.create_task(_scrape_and_collect(kw, i))
for i, kw in enumerate(all_keywords)
]
completed = 0
for coro in asyncio.as_completed(tasks):
try:
kw, kw_jobs = await coro
completed += 1
# Deduplicate against already-seen links
new_jobs = []
for job in kw_jobs:
link = job.get("link")
if link:
if link not in seen_links:
seen_links.add(link)
new_jobs.append(job)
else:
total_dupes_removed += 1
else:
new_jobs.append(job)
if school_filter and new_jobs:
pre = len(new_jobs)
filter_schools = [s.strip() for s in school_filter.split(",")]
new_jobs = [
j for j in new_jobs
if any(sf in j.get("schools", []) for sf in filter_schools)
]
total_filtered_out += pre - len(new_jobs)
# Strict internship title filter if only internship is selected
if job_types and "internship" in job_types and "full_time" not in job_types:
pre = len(new_jobs)
intern_kw = ["intern", "trainee", "student", "co-op", "apprentice", "fellow"]
new_jobs = [
j for j in new_jobs
if any(ik in (j.get("title") or "").lower() for ik in intern_kw)
]
total_filtered_out += pre - len(new_jobs)
all_jobs.extend(new_jobs)
logger.info(
f"multi-search [{completed}/{len(all_keywords)}]: "
f"'{kw}' β {len(kw_jobs)} raw, {len(new_jobs)} new "
f"(total {len(all_jobs)})"
)
# Stream the batch
if new_jobs:
yield json.dumps({
"type": "jobs",
"data": new_jobs,
"keyword": kw,
"engine": "http",
"deduplicated": total_dupes_removed,
}) + "\n"
yield json.dumps({
"type": "info",
"message": (
f"[{completed}/{len(all_keywords)}] "
f"'{kw}' β {len(new_jobs)} new jobs "
f"(total: {len(all_jobs)})"
),
}) + "\n"
except Exception as e:
completed += 1
logger.warning(f"multi-search: task error: {e}")
yield json.dumps({
"type": "info",
"message": f"[{completed}/{len(all_keywords)}] Search failed: {e}",
}) + "\n"
engine_used = "http"
else:
# ββ SINGLE-KEYWORD PATH ββββββββββββββββββββββ
# Original flow: HTTP β Selenium β Playwright
jobs, engine_used = await _scrape_one_url(
primary_url, params=primary_params, paginate=True
)
if jobs:
jobs, dupes = _deduplicate_jobs(jobs)
total_dupes_removed = dupes
if school_filter:
pre = len(jobs)
filter_schools = [s.strip() for s in school_filter.split(",")]
jobs = [
j for j in jobs
if any(sf in j.get("schools", []) for sf in filter_schools)
]
total_filtered_out += pre - len(jobs)
# Strict internship title filter if only internship is selected
if job_types and "internship" in job_types and "full_time" not in job_types:
pre = len(jobs)
intern_kw = ["intern", "trainee", "student", "co-op", "apprentice", "fellow"]
jobs = [
j for j in jobs
if any(ik in (j.get("title") or "").lower() for ik in intern_kw)
]
total_filtered_out += pre - len(jobs)
all_jobs = jobs
yield json.dumps({
"type": "jobs",
"data": all_jobs,
"engine": engine_used,
"deduplicated": total_dupes_removed,
}) + "\n"
# ββ Emit done event βββββββββββββββββββββββββββββββ
if not all_jobs:
yield json.dumps({
"type": "error",
"message": "All scraping engines failed β 0 results",
}) + "\n"
else:
try:
logger.info(
f"serper: Searching hiring contacts for {len(all_jobs)} companies..."
)
yield json.dumps({
"type": "info",
"message": f"Searching for hiring contacts via Google for {len(all_jobs)} companies...",
}) + "\n"
await _fetch_hiring_contacts_via_serper(all_jobs)
found_count = sum(
1 for j in all_jobs if j.get("contact_details")
)
logger.info(
f"serper: Hiring contact search done β "
f"{found_count}/{len(all_jobs)} jobs have a contact"
)
# ββ VERIFICATION PRINT (visible in terminal logs) ββββββ
print(f"\n{'='*60}")
print(f"[SERPER HIRING CONTACTS] {found_count}/{len(all_jobs)} jobs enriched")
for j in all_jobs:
contacts = j.get("contact_details") or []
if contacts:
for c in contacts:
if isinstance(c, dict):
print(
f" β {j.get('title','?')} @ {j.get('company','?')}: "
f"{c.get('name','?')} β {c.get('url','?')}"
)
else:
print(f" β {j.get('title','?')} @ {j.get('company','?')}: {c}")
print(f"{'='*60}\n")
# ββ Stream enriched jobs back to frontend ββββββββββββββ
enriched_jobs = [j for j in all_jobs if j.get("contact_details")]
if enriched_jobs:
yield json.dumps({
"type": "jobs",
"data": enriched_jobs,
"engine": engine_used,
"deduplicated": 0,
"is_contact_update": True,
}) + "\n"
logger.info(
f"serper: Streamed {len(enriched_jobs)} enriched jobs back to frontend"
)
except Exception as e:
logger.warning(f"serper: Hiring contact search failed: {e}")
# Save jobs to database for student dashboard
search_params = {
'keywords': keywords,
'freshness': freshness,
'work_types': work_types or [],
'job_types': job_types or []
}
try:
saved_count = save_scraped_jobs(all_jobs, search_params)
logger.info(f"Saved {saved_count} jobs to database")
except Exception as e:
logger.warning(f"Failed to save jobs to database: {e}")
yield json.dumps({
"type": "done",
"total": len(all_jobs),
"engine": engine_used,
"url": primary_url,
"deduplicated": total_dupes_removed,
"filtered_out": total_filtered_out,
"school_filter": school_filter,
"searches_completed": len(all_keywords),
}) + "\n"
except Exception as e:
logger.exception(f"scrape-internships stream error: {e}")
# If we have collected any jobs, emit them first with partial results notification
if all_jobs:
yield json.dumps({
"type": "info",
"message": f"Stream interrupted after collecting {len(all_jobs)} jobs",
}) + "\n"
yield json.dumps({
"type": "done",
"total": len(all_jobs),
"engine": engine_used,
"partial": True,
"error": str(e),
"url": primary_url,
"deduplicated": total_dupes_removed,
"filtered_out": total_filtered_out,
"school_filter": school_filter,
"searches_completed": len(all_keywords),
}) + "\n"
else:
# Only emit error if we have no jobs
yield json.dumps({
"type": "error",
"message": str(e),
}) + "\n"
global global_scrape
if global_scrape.is_active:
global_scrape.cancel()
session = ScrapeSession()
session.is_active = True
global_scrape = session
async def _pump():
search_params_for_db = {
'keywords': keywords,
'freshness': freshness,
'work_types': work_types or [],
'job_types': job_types or []
}
try:
async for item in _stream_generator():
# Intercept and incrementally save jobs to DB so they appear in student portal mid-scrape
try:
data = json.loads(item.strip())
if data.get("type") == "jobs" and data.get("data"):
save_scraped_jobs(data["data"], search_params_for_db)
except Exception as e:
logger.warning(f"Incremental save failed: {e}")
# Save to history and broadcast to active queues
session.history.append(item)
for q in session.queues:
await q.put(item)
except Exception as e:
logger.error(f"Background scraper error: {e}")
finally:
session.is_active = False
for q in session.queues:
await q.put(None)
session.queues.clear()
# Start the background task so it continues even if the HTTP connection drops
session.task = asyncio.create_task(_pump())
async def _consumer():
q = asyncio.Queue()
session.queues.append(q)
try:
while True:
item = await q.get()
if item is None:
break
yield item
except asyncio.CancelledError:
logger.info("Client disconnected, background scraper will continue.")
raise
finally:
if q in session.queues:
session.queues.remove(q)
return StreamingResponse(
_consumer(),
media_type="application/x-ndjson",
headers={
"Cache-Control": "no-cache",
"X-Accel-Buffering": "no",
},
)
@app.get("/scrape-internships/status")
async def scrape_status():
"""Return whether a scrape session is currently active or has history."""
return {
"is_active": global_scrape.is_active,
"has_history": len(global_scrape.history) > 0
}
@app.get("/scrape-internships/stream")
async def stream_scrape():
"""Reconnect to the active scrape session or replay the last session's history."""
async def _reconnect_consumer():
# Yield all past events instantly
for item in global_scrape.history:
yield item
# If the session is still active, listen for new events
if global_scrape.is_active:
q = asyncio.Queue()
global_scrape.queues.append(q)
try:
while True:
item = await q.get()
if item is None:
break
yield item
except asyncio.CancelledError:
raise
finally:
if q in global_scrape.queues:
global_scrape.queues.remove(q)
return StreamingResponse(
_reconnect_consumer(),
media_type="application/x-ndjson",
headers={
"Cache-Control": "no-cache",
"X-Accel-Buffering": "no",
},
)
# ββ Student Dashboard Endpoints βββββββββββββββββββββββββββββββ
@app.get("/student/jobs/recent")
def get_recent_jobs(hours: int = Query(1, description="Hours ago (1 or 24)")):
"""Get jobs scraped within the last N hours for student dashboard"""
try:
if hours == 1:
# Jobs from the last 1 hour
jobs = get_jobs_in_timeframe(1, 0)
elif hours == 24:
# Jobs from 1-24 hours ago (excluding the last hour to avoid overlap)
jobs = get_jobs_in_timeframe(24, 1)
else:
raise HTTPException(status_code=400, detail="Only 1 or 24 hours supported")
return {
"jobs": jobs,
"count": len(jobs),
"timeframe": f"{hours} hour{'s' if hours > 1 else ''} ago"
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.get("/student/jobs/all-timeframes")
def get_all_timeframes(background_tasks: BackgroundTasks):
"""Get jobs for all timeframes for student dashboard and auto-cleanup old jobs"""
try:
# Auto-delete jobs older than 30 days in the background
background_tasks.add_task(cleanup_old_jobs, 30)
# Fetch all jobs in one query and bin them to save DB roundtrips
return get_binned_jobs()
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.post("/admin/cleanup")
def cleanup_old_data(days: int = Query(7, description="Remove jobs older than N days")):
"""Admin endpoint to cleanup old job data"""
try:
deleted_count = cleanup_old_jobs(days)
return {
"message": f"Cleaned up {deleted_count} jobs older than {days} days",
"deleted_count": deleted_count
}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.post("/admin/trigger-scrape")
async def trigger_auto_scrape():
"""
Manually kick off the full school sweep. Returns immediately;
progress can be polled at GET /admin/scrape-status.
If a sweep is already running, returns 409.
"""
global _auto_scrape_task
if _auto_scrape_state.get("is_running"):
return {
"status": "already_running",
"message": "Auto-scrape is already in progress.",
"state": _auto_scrape_state,
}
scheduler.add_job(
_auto_scrape_all_schools,
trigger=IntervalTrigger(hours=1),
id="hourly_school_scrape",
replace_existing=True,
next_run_time=datetime.now(timezone.utc),
misfire_grace_time=300,
)
return {
"status": "started",
"message": f"Auto-scrape started for {len(_AUTO_SCRAPE_SCHOOLS)} schools (running hourly).",
"schools": _AUTO_SCRAPE_SCHOOLS,
}
@app.post("/admin/stop-scrape")
async def stop_auto_scrape():
"""
Stop the currently running auto-scrape sweep and remove the hourly scheduled job.
"""
if scheduler.get_job("hourly_school_scrape"):
scheduler.remove_job("hourly_school_scrape")
_auto_scrape_state["cancel_requested"] = True
global global_scrape
if global_scrape.is_active:
global_scrape.cancel()
return {"status": "stopped", "message": "Auto-scrape has been stopped and scheduled jobs removed."}
@app.get("/admin/scrape-status")
async def get_scrape_status():
"""Poll the live progress of the currently-running (or last) auto-scrape sweep."""
state = dict(_auto_scrape_state)
if state.get("started_at"):
elapsed = (state.get("finished_at") or time.time()) - state["started_at"]
state["elapsed_seconds"] = round(elapsed)
total_done = len(state.get("completed", [])) + len(state.get("failed", []))
state["progress"] = f"{total_done}/{len(_AUTO_SCRAPE_SCHOOLS)}"
return state
@app.get("/admin/scrape-history")
async def get_scrape_history():
"""Return the full history of all auto-scrape sweep runs (newest first).
Each entry has: sweep_id, is_running, current_school, completed, failed,
started_at, finished_at, cancelled, elapsed_seconds, progress.
"""
history = []
for entry in reversed(_auto_scrape_history):
item = dict(entry)
# Compute elapsed seconds
if item.get("started_at"):
elapsed = (item.get("finished_at") or time.time()) - item["started_at"]
item["elapsed_seconds"] = round(elapsed)
# Compute progress string
total_done = len(item.get("completed", [])) + len(item.get("failed", []))
item["progress"] = f"{total_done}/{len(_AUTO_SCRAPE_SCHOOLS)}"
item["total_schools"] = len(_AUTO_SCRAPE_SCHOOLS)
item["schools"] = _AUTO_SCRAPE_SCHOOLS
history.append(item)
return {"history": history, "total_runs": len(history)}
async def process_company_ratings(companies: list[str]) -> dict:
if not companies:
return {}
SERPER_API_KEY = os.environ.get("SERPER_API_KEY", "0820e51e9080c289b3849e30189e023774fdad87")
ratings = {}
async def _fetch_company_rating(client: httpx.AsyncClient, company: str, semaphore: asyncio.Semaphore) -> tuple[str, float]:
async with semaphore:
await asyncio.sleep(random.uniform(0.5, 1.5))
query = f'"{company}" reviews Bangalore site:glassdoor.co.in OR site:ambitionbox.com'
try:
resp = await client.post(
"https://google.serper.dev/search",
json={"q": query},
headers={"X-API-KEY": SERPER_API_KEY, "Content-Type": "application/json"}
)
data = resp.json()
for org in data.get("organic", []):
# Try Serper's built-in rating first
if "rating" in org and isinstance(org["rating"], (int, float)):
return company, float(org["rating"])
# Fallback to regex on snippet
snippet = org.get("snippet", "")
match = re.search(r"Rating:\s*([\d\.]+)", snippet, re.IGNORECASE)
if match:
return company, float(match.group(1))
except Exception as e:
logger.warning(f"rate-companies: Serper search failed for {company}: {repr(e)}")
return company, 2.5
try:
# We limit concurrency to 3 to avoid overwhelming the network or API limits
semaphore = asyncio.Semaphore(3)
async with httpx.AsyncClient(timeout=15.0) as client:
tasks = [_fetch_company_rating(client, c, semaphore) for c in companies]
results = await asyncio.gather(*tasks)
for company, rating in results:
# Clamp to [1, 5] just in case
ratings[company] = round(max(1.0, min(5.0, rating)), 1)
# Fill in any companies missed with a neutral score
for company in companies:
if company not in ratings:
ratings[company] = 2.5
return ratings
except Exception as e:
logger.error(f"rate-companies: process_company_ratings failed: {repr(e)}")
raise e
class RateCompaniesRequest(BaseModel):
companies: list[str]
@app.post("/rate-companies")
async def rate_companies(req: RateCompaniesRequest, background_tasks: BackgroundTasks):
"""
Use Serper.dev (Google Search API) to estimate a reputation/internship
quality rating (1.0β5.0) for each submitted company name (Bangalore context).
A concurrent search is made for each company, extracting the rating from
Glassdoor/Ambitionbox search snippets.
"""
try:
ratings = await process_company_ratings(req.companies)
# Persist ratings to DB in the background (non-blocking)
background_tasks.add_task(_persist_ratings, ratings)
logger.info(f"rate-companies: successfully rated {len(ratings)} companies via Search API")
return {"ratings": ratings}
except Exception as e:
logger.error(f"rate-companies: Search API call failed: {repr(e)}")
raise HTTPException(status_code=500, detail=f"Search rating failed: {str(e)}")
def _persist_ratings(ratings: dict):
"""Write company ratings back to the DB (called as a background task)."""
try:
updated = update_company_ratings(ratings)
logger.info(f"rate-companies: persisted ratings for {updated} job rows in DB")
except Exception as e:
logger.error(f"rate-companies: DB persist failed: {e}")
# ββ Manual Rating Management βββββββββββββββββββββββββββββββββββββ
class SetRatingRequest(BaseModel):
company: str
rating: float
@app.post("/set-company-rating")
async def set_company_rating(req: SetRatingRequest):
"""Manually set a rating for a specific company (for testing/admin purposes)."""
try:
# Validate rating range
rating = max(1.0, min(5.0, req.rating))
# Update the database
updated = update_company_ratings({req.company: rating})
return {
"message": f"Updated rating for '{req.company}' to {rating}",
"company": req.company,
"rating": rating,
"rows_updated": updated
}
except Exception as e:
logger.error(f"set-company-rating: failed: {e}")
raise HTTPException(status_code=500, detail=str(e))
@app.get("/get-company-ratings")
async def get_company_ratings():
"""Get all companies and their current ratings from the database."""
try:
conn = _connect()
try:
with conn.cursor() as cur:
cur.execute(
"""
SELECT DISTINCT company, company_rating
FROM scraped_jobs
WHERE company IS NOT NULL AND company_rating IS NOT NULL
ORDER BY company
"""
)
rows = cur.fetchall()
finally:
conn.close()
ratings = {row[0]: row[1] for row in rows}
return {"ratings": ratings}
except Exception as e:
logger.error(f"get-company-ratings: failed: {e}")
raise HTTPException(status_code=500, detail=str(e))
|