File size: 608 Bytes
9f4dbc4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | """
locations.py — LinkedIn geoId mapping for major Indian metros.
GeoIds sourced from LinkedIn's guest search URL parameter spec.
Import INDIAN_METROS wherever the city list is needed; do not duplicate this dict.
"""
INDIAN_METROS: dict[str, int] = {
"All India": 102713980,
"Bengaluru": 90009633,
"Mumbai": 90009639,
"Delhi": 106187582,
"Gurugram": 115884833,
"Noida": 104869687,
"Hyderabad": 90009650,
"Chennai": 106888327,
"Pune": 114806696,
"Kolkata": 111795395,
"Ahmedabad": 90009627,
}
|