Maharashtra — List of 285 centrally protected and 244 state protected archaeological monuments and heritage sites in Maharashtra maintained by the Archaeological Survey of India
# Download from https://asi.nic.in/
import pandas as pd
df = pd.read_csv('asi_monuments.csv')
mh = df[df['State'] == 'Maharashtra']
print(f'Maharashtra monuments: {len(mh)}')
print(mh['Category'].value_counts().head())| Field | Type | Description |
|---|---|---|
| monument_name | string | Name of the protected monument |
| state | string | State location |
| district | string | District location |
| period | string | Historical period |
| category | string | Monument type (fort, temple, cave, etc.) |