| """ | |
| 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, | |
| } | |