├── helpers ├── __init__.py ├── requirements.txt ├── law_participated.py ├── dental_participated.py ├── college_participated.py ├── medical_participated.py ├── overall_participated.py ├── pharmacy_participated.py ├── management_participated.py ├── engineering_participated.py ├── architecture_participated.py ├── law_ranking.py ├── dental_ranking.py ├── college_ranking.py ├── medical_ranking.py ├── overall_ranking.py ├── pharmacy_ranking.py ├── research_ranking.py ├── management_ranking.py ├── university_ranking.py ├── engineering_ranking.py └── architecture_ranking.py ├── src ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── filters.cpython-310.pyc │ ├── filters.cpython-38.pyc │ ├── filters.cpython-39.pyc │ └── __init__.cpython-310.pyc └── filters.py ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── other.yml │ ├── bug.yml │ ├── docs.yml │ └── feature_request.yml └── PULL_REQUEST_TEMPLATE.md ├── .vscode └── settings.json ├── requirements.txt ├── CONTRIBUTING.md ├── .gitignore ├── data ├── allAgriculture.json ├── law_ranking.json ├── architecture_ranking.json ├── dental_ranking.json ├── medical_ranking.json ├── research_ranking.json ├── architecture_participated.json ├── college_ranking.json ├── university_ranking.json ├── overall_ranking.json ├── management_ranking.json ├── pharmacy_ranking.json ├── law_participated.json └── dental_participated.json ├── CODE_OF_CONDUCT.md └── README.md /helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | from . import filters -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clueless-Community/collegeAPI/HEAD/requirements.txt -------------------------------------------------------------------------------- /helpers/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clueless-Community/collegeAPI/HEAD/helpers/requirements.txt -------------------------------------------------------------------------------- /src/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clueless-Community/collegeAPI/HEAD/src/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /src/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clueless-Community/collegeAPI/HEAD/src/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/filters.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clueless-Community/collegeAPI/HEAD/src/__pycache__/filters.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/filters.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clueless-Community/collegeAPI/HEAD/src/__pycache__/filters.cpython-38.pyc -------------------------------------------------------------------------------- /src/__pycache__/filters.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clueless-Community/collegeAPI/HEAD/src/__pycache__/filters.cpython-39.pyc -------------------------------------------------------------------------------- /src/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Clueless-Community/collegeAPI/HEAD/src/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /helpers/law_participated.py: -------------------------------------------------------------------------------- 1 | # Participated Institutes: Law 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/LawRankingALL.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | result = df.to_json(orient="records") 13 | parsed = json.loads(result) 14 | law_participated = json.dumps(parsed, indent=4) 15 | 16 | # Writing the json formatted data to a file 17 | with open("./data/law_participated.json", "w") as f: 18 | f.write(law_participated) 19 | f.close() 20 | -------------------------------------------------------------------------------- /helpers/dental_participated.py: -------------------------------------------------------------------------------- 1 | # Participated Institutes: Dental 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/DentalRankingALL.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | result = df.to_json(orient="records") 13 | parsed = json.loads(result) 14 | dental_participated = json.dumps(parsed, indent=4) 15 | 16 | # Writing the json formatted data to a file 17 | with open("./data/dental_participated.json", "w") as f: 18 | f.write(dental_participated) 19 | f.close() 20 | -------------------------------------------------------------------------------- /helpers/college_participated.py: -------------------------------------------------------------------------------- 1 | # Participated Institutes: College 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/CollegeRankingALL.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | result = df.to_json(orient="records") 13 | parsed = json.loads(result) 14 | college_participated = json.dumps(parsed, indent=4) 15 | 16 | # Writing the json formatted data to a file 17 | with open("./data/college_participated.json", "w") as f: 18 | f.write(college_participated) 19 | f.close() 20 | -------------------------------------------------------------------------------- /helpers/medical_participated.py: -------------------------------------------------------------------------------- 1 | # Participated Institutes: Medical 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/MedicalRankingALL.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | result = df.to_json(orient="records") 13 | parsed = json.loads(result) 14 | medical_participated = json.dumps(parsed, indent=4) 15 | 16 | # Writing the json formatted data to a file 17 | with open("./data/medical_participated.json", "w") as f: 18 | f.write(medical_participated) 19 | f.close() 20 | -------------------------------------------------------------------------------- /helpers/overall_participated.py: -------------------------------------------------------------------------------- 1 | # Participated Institutes: Overall 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/OverallRankingALL.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | result = df.to_json(orient="records") 13 | parsed = json.loads(result) 14 | overall_participated = json.dumps(parsed, indent=4) 15 | 16 | # Writing the json formatted data to a file 17 | with open("./data/overall_participated.json", "w") as f: 18 | f.write(overall_participated) 19 | f.close() 20 | -------------------------------------------------------------------------------- /helpers/pharmacy_participated.py: -------------------------------------------------------------------------------- 1 | # Participated Institutes: Pharmacy 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/PharmacyRankingALL.html" 7 | 8 | # Scraping the html document to load the tabular list of universities 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | result = df.to_json(orient="records") 13 | parsed = json.loads(result) 14 | pharmacy_participated = json.dumps(parsed, indent=4) 15 | 16 | # Writing the json formatted data to a file 17 | with open("./data/pharmacy_participated.json", "w") as f: 18 | f.write(pharmacy_participated) 19 | f.close() 20 | -------------------------------------------------------------------------------- /helpers/management_participated.py: -------------------------------------------------------------------------------- 1 | # Participated Institutes: Management 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/ManagementRankingALL.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | result = df.to_json(orient="records") 13 | parsed = json.loads(result) 14 | management_participated = json.dumps(parsed, indent=4) 15 | 16 | # Writing the json formatted data to a file 17 | with open("./data/management_participated.json", "w") as f: 18 | f.write(management_participated) 19 | f.close() 20 | -------------------------------------------------------------------------------- /helpers/engineering_participated.py: -------------------------------------------------------------------------------- 1 | # Participated Institutes: Engineering 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/EngineeringRankingALL.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | result = df.to_json(orient="records") 13 | parsed = json.loads(result) 14 | engineering_participated = json.dumps(parsed, indent=4) 15 | 16 | # Writing the json formatted data to a file 17 | with open("./data/engineering_participated.json", "w") as f: 18 | f.write(engineering_participated) 19 | f.close() 20 | -------------------------------------------------------------------------------- /helpers/architecture_participated.py: -------------------------------------------------------------------------------- 1 | # Participated Institutes: Architecture 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/ArchitectureRankingALL.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | result = df.to_json(orient="records") 13 | parsed = json.loads(result) 14 | architecture_participated = json.dumps(parsed, indent=4) 15 | 16 | # Writing the json formatted data to a file 17 | with open("./data/architecture_participated.json", "w") as f: 18 | f.write(architecture_participated) 19 | f.close() 20 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- 1 | name: Other 2 | description: Use this for any other issues. Please do NOT create blank issues 3 | title: "[OTHER] " 4 | 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: "# Other issue" 9 | - type: textarea 10 | id: issuedescription 11 | attributes: 12 | label: What would you like to share? 13 | description: Provide a clear and concise explanation of your issue. 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: extrainfo 18 | attributes: 19 | label: Additional information 20 | description: Is there anything else we should know about this issue? 21 | validations: 22 | required: false 23 | -------------------------------------------------------------------------------- /helpers/law_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: Engineering 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/LawRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | law_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/law_ranking.json", "w") as f: 21 | f.write(law_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/dental_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: Dental 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/DentalRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | dental_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/dental_ranking.json", "w") as f: 21 | f.write(dental_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/college_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: College 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/CollegeRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | college_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/college_ranking.json", "w") as f: 21 | f.write(college_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/medical_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: Medical 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/MedicalRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | medical_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/medical_ranking.json", "w") as f: 21 | f.write(medical_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/overall_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: Overall 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/OverallRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | overall_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/overall_ranking.json", "w") as f: 21 | f.write(overall_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/pharmacy_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: Pharmacy 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/PharmacyRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | pharmacy_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/pharmacy_ranking.json", "w") as f: 21 | f.write(pharmacy_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/research_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: Research 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/ResearchRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | research_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/research_ranking.json", "w") as f: 21 | f.write(research_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/management_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: Management 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/ManagementRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | management_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/management_ranking.json", "w") as f: 21 | f.write(management_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/university_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: University 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/UniversityRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | university_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/university_ranking.json", "w") as f: 21 | f.write(university_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/engineering_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: Egineering 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/EngineeringRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | engineering_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/engineering_ranking.json", "w") as f: 21 | f.write(engineering_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /helpers/architecture_ranking.py: -------------------------------------------------------------------------------- 1 | # Ranking: Architecture 2 | 3 | import pandas as pd 4 | import json 5 | 6 | url = "https://www.nirfindia.org/2022/ArchitectureRanking.html" 7 | 8 | # Scraping the html document to load the tabular list of institutes 9 | df: pd.DataFrame = pd.read_html(url)[0][["Name", "City", "Rank", "State"]] 10 | df.columns = df.columns.str.lower() 11 | 12 | # Removing "More Details |" from institute names 13 | df['name'] = df['name'].str.replace('More Details |', '', regex=False) 14 | 15 | result = df.to_json(orient="records") 16 | parsed = json.loads(result) 17 | architecture_ranking = json.dumps(parsed, indent=4) 18 | 19 | # Writing the json formatted data to a file 20 | with open("./data/architecture_ranking.json", "w") as f: 21 | f.write(architecture_ranking) 22 | f.close() 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug 2 | description: Report an issue to help improve the project. 3 | labels: ["bug"] 4 | body: 5 | - type: textarea 6 | id: description 7 | attributes: 8 | label: Description 9 | description: A brief description of the question or issue, also include what you tried and what didn't work 10 | validations: 11 | required: true 12 | - type: textarea 13 | id: screenshots 14 | attributes: 15 | label: Screenshots 16 | description: Please add screenshots if applicable 17 | validations: 18 | required: false 19 | - type: textarea 20 | id: extrainfo 21 | attributes: 22 | label: Additional information 23 | description: Is there anything else we should know about this bug? 24 | validations: 25 | required: false 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.yml: -------------------------------------------------------------------------------- 1 | name: 📄 Documentation issue 2 | description: Found an issue in the documentation? You can use this one! 3 | title: "[DOCS] " 4 | labels: ["documentation"] 5 | body: 6 | - type: textarea 7 | id: description 8 | attributes: 9 | label: Description 10 | description: A brief description of the question or issue, also include what you tried and what didn't work 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: screenshots 15 | attributes: 16 | label: Screenshots 17 | description: Please add screenshots if applicable 18 | validations: 19 | required: false 20 | - type: textarea 21 | id: extrainfo 22 | attributes: 23 | label: Additional information 24 | description: Is there anything else we should know about this issue? 25 | validations: 26 | required: false 27 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: 💡 General Feature Request 2 | description: Have a new idea/feature for collegeAPI? Please suggest! 3 | title: "[FEATURE] " 4 | labels: ["enhancement"] 5 | body: 6 | - type: textarea 7 | id: description 8 | attributes: 9 | label: Description 10 | description: A brief description of the enhancement you propose, also include what you tried and what worked. 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: screenshots 15 | attributes: 16 | label: Screenshots 17 | description: Please add screenshots if applicable 18 | validations: 19 | required: false 20 | - type: textarea 21 | id: extrainfo 22 | attributes: 23 | label: Additional information 24 | description: Is there anything else we should know about this idea? 25 | validations: 26 | required: false 27 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | 4 | --- 5 | ## Issue Ticket Number 6 | Fixes #(issue_number) 7 | 8 | --- 9 | ## Type of change 10 | 11 | - [ ] Bug fix (non-breaking change which fixes an issue) 12 | - [ ] New feature (non-breaking change which adds functionality) 13 | - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) 14 | - [ ] This change requires a documentation update 15 | 16 | --- 17 | # Checklist: 18 | - [ ] I have followed the contributing guidelines of this project as mentioned in [CONTRIBUTING.md](/CONTRIBUTING.md) 19 | - [ ] I have checked to ensure there aren't other open [Pull Requests](https://github.com/Clueless-Community/collegeAPI/pulls) for the same update/change? 20 | - [ ] I have performed a self-review of my own code 21 | - [ ] I have commented my code, particularly in hard-to-understand areas 22 | - [ ] I have made corresponding changes needed to the documentation -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 |

For the contributors 🫂

2 | 3 | ### Haven't made your first-contribution yet? 😢 4 | Do check our [First Contribution](https://github.com/Clueless-Community/first-contribution) repository, where we have provided the guidelines to set up Git and how to make a pull request ! 5 | 6 | # Project setup 7 | ## Fork and clone the repository 8 | ```bash 9 | git clone https://github.com/nikhil25803/collegeAPI.git 10 | ``` 11 | 12 | ## Change the directory 13 | ```bash 14 | cd collegeAPI 15 | ``` 16 | 17 | > Folder Structure 18 | ``` 19 | 📂project 20 | │ 21 | └───📂data 22 | │ │ { JSON files of the data collected } 23 | │ 24 | └───📂env 25 | | │ { For virtual environment configuration } 26 | | 27 | └───📂helpers 28 | | │ { Python Scripts to fetch data } 29 | | 30 | └───📂src 31 | | { Python funnctions to filter the data } 32 | 33 | 34 | 📄.gitignore 35 | 📄CONTRIBUTING.md 36 | 📄main.py 37 | 📄README.md 38 | 📄requirements.txt 39 | ``` 40 | 41 | ## Activate the virtual environment 42 | > For windows 43 | ```bash 44 | env\Scripts\Activate.ps1 45 | ``` 46 | > For Linux 47 | ```bash 48 | source env/scripts/activate 49 | ``` 50 | 51 | ## Install the dependencies 52 | ```powershell 53 | pip install -r requirements.txt 54 | ``` 55 | 56 | ## Run the FastAPI server 57 | ```powershell 58 | uvicorn main:app --reload 59 | ``` 60 | 61 | Once you are done with the changes you wanted to add. Follow the steps to make the pull request. 62 | ## Create and checkout to the new branch. 63 | ```powershell 64 | git checkout -b 65 | ``` 66 | ## Add the changes 67 | ``` 68 | git add . 69 | ``` 70 | 71 | ## Commit your change with a proper messagge 72 | ``` 73 | git commit -m "Enter your message here" 74 | ``` 75 | 76 | ## Make the Pull Request 77 | ``` 78 | git push origin 79 | ``` 80 | --- 81 | 82 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | 131 | # Text editor 132 | .vscode 133 | .idea -------------------------------------------------------------------------------- /data/allAgriculture.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Name": "TAMIL NADU AGRICULTURAL UNIVERSITY", 4 | "City": "COIMBATORE", 5 | "State": "TAMIL NADU" 6 | }, 7 | { 8 | "Name": "ACHARYA NG RANGA AGRICULTURAL UNIVERSITY ", 9 | "City": "GUNTUR", 10 | "State": "ANDHRA PRADESH" 11 | }, 12 | { 13 | "Name": "PUNJAB AGRICULTURAL UNIVERSITY -", 14 | "City": "LUDHIANA", 15 | "State": "PUNJAB" 16 | }, 17 | { 18 | "Name": "ANBIL DHARMALINGAM AGRICULTURAL COLLEGE AND RESEARCH INSTITUTE ", 19 | "City": "TIRUCHIRAPPALLI,", 20 | "State": "TAMIL NADU" 21 | }, 22 | { 23 | "Name": "GOVIND BALLABH PANT UNIVERSITY OF AGRICULTURE AND TECHNOLOGY", 24 | "City": "PANTNAGAR", 25 | "State": "UTTARAKHAND" 26 | }, 27 | { 28 | "Name": "MAHATMA PHULE KRISHI VIDYAPEETH", 29 | "City": "PUNE", 30 | "State": "MAHARASHTRA" 31 | }, 32 | { 33 | "Name": "BIRSA AGRICULTURAL UNIVERSITY", 34 | "City": "RANCHI", 35 | "State": "JHARKHAND" 36 | }, 37 | { 38 | "Name": "DR. RAJENDRA PRASAD CENTRAL AGRICULTURAL UNIVERSITY", 39 | "City": "SAMASTIPUR", 40 | "State": "BIHAR" 41 | }, 42 | { 43 | "Name": "JUNAGADH AGRICULTURAL UNIVERSITY", 44 | "City": "JUNAGADH", 45 | "State": "GUJARAT " 46 | }, 47 | { 48 | "Name": "DR DY PATIL COLLEGE OF AGRICULTURE BUSINESS MANAGEMENT", 49 | "City": "PUNE", 50 | "State": "MAHARASHTRA" 51 | }, 52 | { 53 | "Name": "SAM HIGGINBOTTOM UNIVERSITY OF AGRICULTURE TECHNOLOGY AND SCIENCES", 54 | "City": "ALLAHABAD", 55 | "State": "UTTAR PRADESH" 56 | }, 57 | { 58 | "Name": "MAHATMA JYOTI RAO PHOOLE UNIVERSITY ", 59 | "City": "JAIPUR", 60 | "State": "RAJASTHAN" 61 | }, 62 | { 63 | "Name": "JAWAHARLAL NEHRU KRISHI VISHWA VIDYALAYA ", 64 | "City": "JABALPUR", 65 | "State": "MADHYA PRADESH" 66 | }, 67 | { 68 | "Name": "KHALSA COLLEGE", 69 | "City": "AMRITSAR", 70 | "State": "PUNJAB" 71 | }, 72 | { 73 | "Name": "INDIRA GANDHI KRISHI VISHWAVIDYALAYA ", 74 | "City": "RAIPUR", 75 | "State": "CHHATTISGARH" 76 | }, 77 | { 78 | "Name": "YASHWANTRAO CHAVAN MAHARASHTRA OPEN UNIVERSITY", 79 | "City": "NASHIK", 80 | "State": "MAHARASHTRA" 81 | }, 82 | { 83 | "Name": "VANAVARAYAR INSTITUTE OF AGRICULTURE", 84 | "City": "POLLACHI", 85 | "State": "TAMIL NADU" 86 | }, 87 | { 88 | "Name": "ANAND NIKETAN COLLEGE OF AGRICULTURE", 89 | "City": "CHANDRAPUR", 90 | "State": "MAHARASHTRA" 91 | }, 92 | { 93 | "Name": "UTTAR BANGA KRISHI VISHWAVIDYALAYA ", 94 | "City": "COOCH BEHAR", 95 | "State": "WEST BENGAL" 96 | } 97 | ] -------------------------------------------------------------------------------- /data/law_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "National Law School of India University", 4 | "city": "Bengaluru", 5 | "rank": 1, 6 | "state": "Karnataka" 7 | }, 8 | { 9 | "name": "National Law University", 10 | "city": "New Delhi", 11 | "rank": 2, 12 | "state": "Delhi" 13 | }, 14 | { 15 | "name": "Symbiosis Law School", 16 | "city": "Pune", 17 | "rank": 3, 18 | "state": "Maharashtra" 19 | }, 20 | { 21 | "name": "Nalsar University of Law", 22 | "city": "Hyderabad", 23 | "rank": 4, 24 | "state": "Telangana" 25 | }, 26 | { 27 | "name": "The West Bengal National University of Juridicial Sciences", 28 | "city": "Kolkata", 29 | "rank": 5, 30 | "state": "West Bengal" 31 | }, 32 | { 33 | "name": "Indian Institute of Technology, Kharagpur", 34 | "city": "Kharagpur", 35 | "rank": 6, 36 | "state": "West Bengal" 37 | }, 38 | { 39 | "name": "Jamia Millia Islamia, New Delhi", 40 | "city": "New Delhi", 41 | "rank": 7, 42 | "state": "Delhi" 43 | }, 44 | { 45 | "name": "Gujarat National Law University", 46 | "city": "Gandhinagar", 47 | "rank": 8, 48 | "state": "Gujarat" 49 | }, 50 | { 51 | "name": "Siksha `O` Anusandhan", 52 | "city": "Bhubaneswar", 53 | "rank": 9, 54 | "state": "Odisha" 55 | }, 56 | { 57 | "name": "National Law University, Jodhpur", 58 | "city": "Jodhpur", 59 | "rank": 10, 60 | "state": "Rajasthan" 61 | }, 62 | { 63 | "name": "Kalinga Institute of Industrial Technology", 64 | "city": "Bhubaneswar", 65 | "rank": 11, 66 | "state": "Odisha" 67 | }, 68 | { 69 | "name": "Aligarh Muslim University", 70 | "city": "Aligarh", 71 | "rank": 12, 72 | "state": "Uttar Pradesh" 73 | }, 74 | { 75 | "name": "Lovely Professional University", 76 | "city": "Phagwara", 77 | "rank": 13, 78 | "state": "Punjab" 79 | }, 80 | { 81 | "name": "Saveetha Institute of Medical and Technical Sciences", 82 | "city": "Chennai", 83 | "rank": 14, 84 | "state": "Tamil Nadu" 85 | }, 86 | { 87 | "name": "National Law Institute University, Bhopal", 88 | "city": "Bhopal", 89 | "rank": 15, 90 | "state": "Madhya Pradesh" 91 | }, 92 | { 93 | "name": "Christ University", 94 | "city": "Bengaluru", 95 | "rank": 16, 96 | "state": "Karnataka" 97 | }, 98 | { 99 | "name": "Dr. Ram Manohar Lohiya National Law University, Lucknow", 100 | "city": "Lucknow", 101 | "rank": 17, 102 | "state": "Uttar Pradesh" 103 | }, 104 | { 105 | "name": "The Rajiv Gandhi National University of Law, Patiala", 106 | "city": "Patiala", 107 | "rank": 18, 108 | "state": "Punjab" 109 | }, 110 | { 111 | "name": "Shanmugha Arts Science Technology & Research Academy", 112 | "city": "Thanjavur", 113 | "rank": 19, 114 | "state": "Tamil Nadu" 115 | }, 116 | { 117 | "name": "Banaras Hindu University", 118 | "city": "Varanasi", 119 | "rank": 20, 120 | "state": "Uttar Pradesh" 121 | }, 122 | { 123 | "name": "University of Petroleum and Energy Studies", 124 | "city": "Dehradun", 125 | "rank": 21, 126 | "state": "Uttarakhand" 127 | }, 128 | { 129 | "name": "National University of Study & Research in Law, Ranchi", 130 | "city": "Ranchi", 131 | "rank": 22, 132 | "state": "Jharkhand" 133 | }, 134 | { 135 | "name": "Guru Gobind Singh Indraprastha University", 136 | "city": "New Delhi", 137 | "rank": 23, 138 | "state": "Delhi" 139 | }, 140 | { 141 | "name": "National Law University and Judicial Academy", 142 | "city": "Kamrup", 143 | "rank": 24, 144 | "state": "Assam" 145 | }, 146 | { 147 | "name": "National Law University", 148 | "city": "Cuttack", 149 | "rank": 25, 150 | "state": "Odisha" 151 | }, 152 | { 153 | "name": "Army Institute of Law, Mohali", 154 | "city": "Mohali", 155 | "rank": 26, 156 | "state": "Punjab" 157 | }, 158 | { 159 | "name": "Amity University Haryana, Gurgaon", 160 | "city": "Gurugram", 161 | "rank": 27, 162 | "state": "Haryana" 163 | }, 164 | { 165 | "name": "Sikkim Government Law College, Burtuk", 166 | "city": "Gangtok", 167 | "rank": 28, 168 | "state": "Sikkim" 169 | }, 170 | { 171 | "name": "Indian Law Institute", 172 | "city": "New Delhi", 173 | "rank": 29, 174 | "state": "Delhi" 175 | }, 176 | { 177 | "name": "Panjab University", 178 | "city": "Chandigarh", 179 | "rank": 30, 180 | "state": "Chandigarh" 181 | } 182 | ] -------------------------------------------------------------------------------- /src/filters.py: -------------------------------------------------------------------------------- 1 | import os 2 | import json 3 | from typing import Generator, Iterable 4 | 5 | 6 | class InvalidFieldPassedError(ValueError): 7 | """ 8 | Exception class to raise if invalid field passed. 9 | """ 10 | 11 | 12 | class InvalidRegionPassedError(ValueError): 13 | """ 14 | Exception class to raise if invalid field passed. 15 | """ 16 | 17 | 18 | DATA_PATH = os.path.join(os.getcwd(), "data") 19 | 20 | FIELD_FILES = { 21 | "law": "law_participated.json", 22 | "nirf": "college_participated.json", 23 | "research": "research_ranking.json", 24 | "dental": "dental_participated.json", 25 | "medical": "medical_participated.json", 26 | "pharmacy": "pharmacy_participated.json", 27 | "universities": "university_ranking.json", 28 | "management": "management_participated.json", 29 | "engineering": "engineering_participated.json", 30 | "architecture": "architecture_participated.json", 31 | } 32 | 33 | 34 | def check_values(*, 35 | data: Iterable, 36 | value: str, 37 | value_type: str | None = None, 38 | error_msg: str | None = None 39 | ) -> None: 40 | """ 41 | Check if the provided value present in the data. 42 | If not present, 43 | it raises the `value_type` matched ERROR with msg. 44 | `value_type` current matches with: 45 | - "region" : InvalidRegionPassedError 46 | - "field" : InvalidFieldPassedError 47 | """ 48 | if value in data: 49 | return 50 | 51 | match value_type: 52 | case "region": 53 | ERROR = InvalidRegionPassedError 54 | case "field": 55 | ERROR = InvalidFieldPassedError 56 | raise ERROR(error_msg) 57 | 58 | 59 | def get_data(field: str) -> list: 60 | """ 61 | Takes the field, 62 | If field is correct, return the data mapped to it. 63 | Else, raises InvalidFieldPassedError from `check_values()` 64 | """ 65 | print("get_data", field) 66 | check_values( 67 | data=FIELD_FILES, 68 | value=field, 69 | value_type="field", 70 | error_msg=("Invalid Field passed.\n" 71 | "Run `field_files.keys()` to get a set of all available fields." 72 | ) 73 | ) 74 | print("done") 75 | file = FIELD_FILES.get(field) 76 | file_path = os.path.join(DATA_PATH, file) 77 | return json.load(open(file_path)) 78 | 79 | 80 | def fetch_details(data: list, 81 | region: str = "state", 82 | region_required: str = "state" 83 | ) -> Generator[dict | int, None, None]: 84 | """ 85 | Generates the details of specified `region`. 86 | If no details found, gives `-1` 87 | """ 88 | data_is_available = False 89 | for detail in range(len(data)): 90 | region_name = data[detail][region].replace(" ", '').lower() 91 | if region_name == region_required: 92 | data_is_available = True 93 | yield data[detail] 94 | 95 | if not data_is_available: 96 | yield -1 97 | 98 | 99 | def get_colleges(field: str, 100 | region: str = "state", 101 | region_required: str = "state" 102 | ) -> Generator[dict | int, None, None]: 103 | """ 104 | Generates details of college/universities 105 | of specified field and region. 106 | If field is not correct, InvalidFieldPassedError 107 | If region is not correct, raises InvalidRegionPassedError 108 | from `check_values()`. 109 | """ 110 | print("get_collegs") 111 | check_values( 112 | data=("state", "city"), 113 | value=region, 114 | value_type="region", 115 | error_msg=('Invalid Region passed.\n' 116 | 'Region either be "state" or "city".' 117 | ) 118 | ) 119 | print("done") 120 | data = get_data(field) 121 | print("data", data) 122 | return fetch_details(data, region, region_required) 123 | 124 | 125 | # Filter Function 126 | def filter_colleges(field: str, 127 | region_list: list[str], 128 | region: str = "state") -> list[int | str]: 129 | 130 | response = [] 131 | for i in region_list: 132 | region_req = i.replace(" ", "").lower() 133 | print(region_req) 134 | response.extend(get_colleges(field, region, region_req)) 135 | return response 136 | 137 | 138 | def get_response(field: str, 139 | **regions: str) -> list[int | str]: 140 | 141 | region = set(regions.keys()).pop() 142 | 143 | region_list = [i.strip() for i in regions[region].split('&')] 144 | print(regions, region, region_list) 145 | try: 146 | output = filter_colleges(field, region_list, region) 147 | print(output) 148 | if output[0] == -1: 149 | output = -1 150 | except: 151 | output = -1 152 | 153 | return output 154 | 155 | 156 | def get_field_data(file: str) -> str | int: 157 | file_path = os.path.join(DATA_PATH, file) 158 | try: 159 | with open(file_path) as file: 160 | output = file.read() 161 | except: 162 | output = -1 163 | return output 164 | -------------------------------------------------------------------------------- /data/architecture_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Indian Institute of Technology, Roorkee", 4 | "city": "Roorkee", 5 | "rank": 1, 6 | "state": "Uttarakhand" 7 | }, 8 | { 9 | "name": "National Institute of Technology, Calicut", 10 | "city": "Kozhikode", 11 | "rank": 2, 12 | "state": "Kerala" 13 | }, 14 | { 15 | "name": "Indian Institute of Technology, Kharagpur", 16 | "city": "Kharagpur", 17 | "rank": 3, 18 | "state": "West Bengal" 19 | }, 20 | { 21 | "name": "School of Planning and Architecture, New Delhi", 22 | "city": "New Delhi", 23 | "rank": 4, 24 | "state": "Delhi" 25 | }, 26 | { 27 | "name": "National Institute of Technology, Tiruchirappalli", 28 | "city": "Tiruchirappalli", 29 | "rank": 5, 30 | "state": "Tamil Nadu" 31 | }, 32 | { 33 | "name": "Indian Institute of Engineering Science and Technology, Shibpur", 34 | "city": "Howrah", 35 | "rank": 6, 36 | "state": "West Bengal" 37 | }, 38 | { 39 | "name": "School of Planning & Architecture, Vijayawada", 40 | "city": "Vijayawada", 41 | "rank": 7, 42 | "state": "Andhra Pradesh" 43 | }, 44 | { 45 | "name": "Visvesvaraya National Institute of Technology, Nagpur", 46 | "city": "Nagpur", 47 | "rank": 8, 48 | "state": "Maharashtra" 49 | }, 50 | { 51 | "name": "Jamia Millia Islamia, New Delhi", 52 | "city": "New Delhi", 53 | "rank": 9, 54 | "state": "Delhi" 55 | }, 56 | { 57 | "name": "School of Planning and Architecture, Bhopal", 58 | "city": "Bhopal", 59 | "rank": 10, 60 | "state": "Madhya Pradesh" 61 | }, 62 | { 63 | "name": "S.R.M. Institute of Science and Technology", 64 | "city": "Chennai", 65 | "rank": 11, 66 | "state": "Tamil Nadu" 67 | }, 68 | { 69 | "name": "Lovely Professional University", 70 | "city": "Phagwara", 71 | "rank": 12, 72 | "state": "Punjab" 73 | }, 74 | { 75 | "name": "Aligarh Muslim University", 76 | "city": "Aligarh", 77 | "rank": 13, 78 | "state": "Uttar Pradesh" 79 | }, 80 | { 81 | "name": "College of Engineering, Trivandrum", 82 | "city": "Thiruvananthapuram", 83 | "rank": 14, 84 | "state": "Kerala" 85 | }, 86 | { 87 | "name": "Manipal School of Architecture and Planning, Mahe", 88 | "city": "Udupi", 89 | "rank": 15, 90 | "state": "Karnataka" 91 | }, 92 | { 93 | "name": "Shri Mata Vaishno Devi University", 94 | "city": "Katra", 95 | "rank": 16, 96 | "state": "Jammu and Kashmir" 97 | }, 98 | { 99 | "name": "M. S. Ramaiah Institute of Technology", 100 | "city": "Bengaluru", 101 | "rank": 17, 102 | "state": "Karnataka" 103 | }, 104 | { 105 | "name": "BMS College of Arhitecture", 106 | "city": "Bengaluru", 107 | "rank": 18, 108 | "state": "Karnataka" 109 | }, 110 | { 111 | "name": "Chandigarh University", 112 | "city": "Mohali", 113 | "rank": 19, 114 | "state": "Punjab" 115 | }, 116 | { 117 | "name": "Maulana Azad National Institute of Technology", 118 | "city": "Bhopal", 119 | "rank": 20, 120 | "state": "Madhya Pradesh" 121 | }, 122 | { 123 | "name": "Nirma University", 124 | "city": "Ahmedabad", 125 | "rank": 21, 126 | "state": "Gujarat" 127 | }, 128 | { 129 | "name": "Chitkara University", 130 | "city": "Rajpura", 131 | "rank": 22, 132 | "state": "Punjab" 133 | }, 134 | { 135 | "name": "Thiagarajar College of Engineering", 136 | "city": "Madurai", 137 | "rank": 23, 138 | "state": "Tamil Nadu" 139 | }, 140 | { 141 | "name": "Guru Gobind Singh Indraprastha University", 142 | "city": "New Delhi", 143 | "rank": 24, 144 | "state": "Delhi" 145 | }, 146 | { 147 | "name": "Birla Institute of Technology", 148 | "city": "Ranchi", 149 | "rank": 25, 150 | "state": "Jharkhand" 151 | }, 152 | { 153 | "name": "National Institute of Technology, Hamirpur", 154 | "city": "Hamirpur", 155 | "rank": 26, 156 | "state": "Himachal Pradesh" 157 | }, 158 | { 159 | "name": "Hindustan Institute of Technology and Science (HITS)", 160 | "city": "Chennai", 161 | "rank": 27, 162 | "state": "Tamil Nadu" 163 | }, 164 | { 165 | "name": "Dr. M. G. R. Educational and Research Institute", 166 | "city": "Chennai", 167 | "rank": 28, 168 | "state": "Tamil Nadu" 169 | }, 170 | { 171 | "name": "Anna University", 172 | "city": "Chennai", 173 | "rank": 29, 174 | "state": "Tamil Nadu" 175 | }, 176 | { 177 | "name": "National Institute of Technology, Patna", 178 | "city": "Patna", 179 | "rank": 30, 180 | "state": "Bihar" 181 | } 182 | ] -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | . 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /data/dental_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Saveetha Institute of Medical and Technical Sciences", 4 | "city": "Chennai", 5 | "rank": 1, 6 | "state": "Tamil Nadu" 7 | }, 8 | { 9 | "name": "Manipal College of Dental Sciences, Manipal", 10 | "city": "Udupi", 11 | "rank": 2, 12 | "state": "Karnataka" 13 | }, 14 | { 15 | "name": "Dr. D. Y. Patil Vidyapeeth", 16 | "city": "Pune", 17 | "rank": 3, 18 | "state": "Maharashtra" 19 | }, 20 | { 21 | "name": "Maulana Azad Institute of Dental Sciences", 22 | "city": "Delhi", 23 | "rank": 4, 24 | "state": "Delhi" 25 | }, 26 | { 27 | "name": "King George`s Medical University", 28 | "city": "Lucknow", 29 | "rank": 5, 30 | "state": "Uttar Pradesh" 31 | }, 32 | { 33 | "name": "A.B.Shetty Memorial Institute of Dental Sciences", 34 | "city": "Mangaluru", 35 | "rank": 6, 36 | "state": "Karnataka" 37 | }, 38 | { 39 | "name": "Manipal College of Dental Sciences, Mangalore", 40 | "city": "Mangalore", 41 | "rank": 7, 42 | "state": "Karnataka" 43 | }, 44 | { 45 | "name": "SRM Dental College", 46 | "city": "Chennai", 47 | "rank": 8, 48 | "state": "Tamil Nadu" 49 | }, 50 | { 51 | "name": "Govt. Dental College, Nagpur", 52 | "city": "Nagpur", 53 | "rank": 9, 54 | "state": "Maharashtra" 55 | }, 56 | { 57 | "name": "Siksha `O` Anusandhan", 58 | "city": "Bhubaneswar", 59 | "rank": 10, 60 | "state": "Odisha" 61 | }, 62 | { 63 | "name": "Datta Meghe Institute of Medical Sciences", 64 | "city": "Wardha", 65 | "rank": 11, 66 | "state": "Maharashtra" 67 | }, 68 | { 69 | "name": "JSS Dental College and Hospital", 70 | "city": "Mysuru", 71 | "rank": 12, 72 | "state": "Karnataka" 73 | }, 74 | { 75 | "name": "Sri Ramachandra Institute of Higher Education and Research", 76 | "city": "Chennai", 77 | "rank": 13, 78 | "state": "Tamil Nadu" 79 | }, 80 | { 81 | "name": "M.S. Ramaiah University of Applied Sciences", 82 | "city": "Bangalore", 83 | "rank": 14, 84 | "state": "Karnataka" 85 | }, 86 | { 87 | "name": "Postgraduate Institute of Dental Sciences", 88 | "city": "Rohtak", 89 | "rank": 15, 90 | "state": "Haryana" 91 | }, 92 | { 93 | "name": "Jamia Millia Islamia, New Delhi", 94 | "city": "New Delhi", 95 | "rank": 16, 96 | "state": "Delhi" 97 | }, 98 | { 99 | "name": "Nair Hospital Dental College", 100 | "city": "Mumbai", 101 | "rank": 17, 102 | "state": "Maharashtra" 103 | }, 104 | { 105 | "name": "Government Dental College, Bangalore", 106 | "city": "Bangalore", 107 | "rank": 18, 108 | "state": "Karnataka" 109 | }, 110 | { 111 | "name": "Amrita Vishwa Vidyapeetham", 112 | "city": "Coimbatore", 113 | "rank": 19, 114 | "state": "Tamil Nadu" 115 | }, 116 | { 117 | "name": "SDM College of Dental Sciences & Hospital", 118 | "city": "Dharwad", 119 | "rank": 20, 120 | "state": "Karnataka" 121 | }, 122 | { 123 | "name": "Banaras Hindu University", 124 | "city": "Varanasi", 125 | "rank": 21, 126 | "state": "Uttar Pradesh" 127 | }, 128 | { 129 | "name": "Meenakshi Academy of Higher Education and Research", 130 | "city": "Chennai", 131 | "rank": 22, 132 | "state": "Tamil Nadu" 133 | }, 134 | { 135 | "name": "Yenepoya Dental College", 136 | "city": "Mangaluru", 137 | "rank": 23, 138 | "state": "Karnataka" 139 | }, 140 | { 141 | "name": "Vishnu Dental College, Bheemavaram", 142 | "city": "Bhimavaram", 143 | "rank": 24, 144 | "state": "Andhra Pradesh" 145 | }, 146 | { 147 | "name": "Dr. M. G. R. Educational and Research Institute", 148 | "city": "Chennai", 149 | "rank": 25, 150 | "state": "Tamil Nadu" 151 | }, 152 | { 153 | "name": "Kalinga Institute of Industrial Technology", 154 | "city": "Bhubaneswar", 155 | "rank": 26, 156 | "state": "Odisha" 157 | }, 158 | { 159 | "name": "Chettinad Dental College and Research Institute ", 160 | "city": "Kelambakkam", 161 | "rank": 27, 162 | "state": "Tamil Nadu" 163 | }, 164 | { 165 | "name": "K L E Society's Institute of Dental Sciences", 166 | "city": "Bengaluru", 167 | "rank": 28, 168 | "state": "Karnataka" 169 | }, 170 | { 171 | "name": "Sree Balaji Dental College & Hospital", 172 | "city": "Chennai", 173 | "rank": 29, 174 | "state": "Tamil Nadu" 175 | }, 176 | { 177 | "name": "Government Dental College", 178 | "city": "Thiruvananthapuram", 179 | "rank": 30, 180 | "state": "Kerala" 181 | }, 182 | { 183 | "name": "Karnavati University", 184 | "city": "Gandhinagar", 185 | "rank": 31, 186 | "state": "Gujarat" 187 | }, 188 | { 189 | "name": "Ragas Dental College & Hospital, Chennai", 190 | "city": "Chennai", 191 | "rank": 32, 192 | "state": "Tamil Nadu" 193 | }, 194 | { 195 | "name": "Gitam Dental College & Hospital", 196 | "city": "Vishakhapatnam", 197 | "rank": 33, 198 | "state": "Andhra Pradesh" 199 | }, 200 | { 201 | "name": "Raja Rajeswari Dental College & Hospital", 202 | "city": "Bengaluru", 203 | "rank": 34, 204 | "state": "Karnataka" 205 | }, 206 | { 207 | "name": "MGM Dental College and Hospital, Navi Mumbai", 208 | "city": "Navi Mumbai", 209 | "rank": 35, 210 | "state": "Maharashtra" 211 | }, 212 | { 213 | "name": "Government Dental College", 214 | "city": "Ahmedabad", 215 | "rank": 36, 216 | "state": "Gujarat" 217 | }, 218 | { 219 | "name": "MGVs Karmaveer Bhausaheb Hire Dental College, Nashik", 220 | "city": "Nashik", 221 | "rank": 37, 222 | "state": "Maharashtra" 223 | }, 224 | { 225 | "name": "Aligarh Muslim University", 226 | "city": "Aligarh", 227 | "rank": 38, 228 | "state": "Uttar Pradesh" 229 | }, 230 | { 231 | "name": "Govt. Dental College, Indore", 232 | "city": "Indore", 233 | "rank": 39, 234 | "state": "Madhya Pradesh" 235 | }, 236 | { 237 | "name": "Guru nanak Institute of Dental Sciences & Research", 238 | "city": "Kolkata", 239 | "rank": 40, 240 | "state": "West Bengal" 241 | } 242 | ] -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

CollegeAPI

2 | 3 |

Ever faced a problem while collecting the data of Indian Colleges? Here we are with the solution, College API.
An API that helps you to fetch the data of Indian Colleges.⚡

4 | 5 | ---- 6 | 7 |

8 |    9 |    10 |    11 |    12 |

13 | 14 | --- 15 | 16 | ## Tech Stack 💻 17 | 18 | ![Python](https://img.shields.io/badge/python-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54) 19 | ![FastAPI](https://img.shields.io/badge/FastAPI-005571?style=for-the-badge&logo=fastapi) 20 | 21 | --- 22 | 23 | 24 | ## What do we exactly do? 25 | The ambition of this project is to provide data of Indian Colleges from all the categories listed in NIRF through different endpoints. We also enable the user to filter the college by the desired city and state. 26 | 27 | ## Wants to contribute?👀 28 | 29 | We recommend you to go through the [CONTRIBUTING.md](https://github.com/Clueless-Community/collegeAPI/blob/main/CONTRIBUTING.md) where we have mentioned all the guidelines that help you to set up the project and make some awesome contributions 😄 30 | 31 | --- 32 | 33 | ## Endpoints 34 | 35 | | Method | Path | Description | 36 | |----------|:-------------:|------:| 37 | | **GET** | `/` | Gives a description of the API | 38 | | **GET** | `/all` | Fetch the list of all participating collges ranked by NIRF | 39 | | **GET** | `/all/nirf` | Fetch the list of overall colleges ranked by NIRF | 40 | | **GET** | `/all/nirf/state={state}` | Fetch the list of colleges ranked by NIRF in the state(s) passed by the user as a `parameter` | 41 | | **GET** | `/all/nirf/city={city}` | Fetch the list of colleges ranked by NIRF in the city(ies) passed by the user as a `parameter` | 42 | | **GET** | `/engineering_colleges` | Fetch the list of all the engineering colleges in India. | 43 | | **GET** | `/engineering_colleges/nirf` | Fetch the list of all the 300 engineering colleges ranked by NIRF. In this endpoint, the rank of the colleges will be provided along with the other details. | 44 | | **GET** | `/engineering_colleges/state={state}` | Fetch the list of all the engineering colleges in the state passed by the user as a `parameter`. | 45 | | **GET** | `/engineering_colleges/city={city}` | Fetch the list of all the engineering colleges in the city passed by the user as a `parameter`. | 46 | | **GET** | `/medical_colleges` | Fetch the list of all the medical colleges in India. | 47 | | **GET** | `/medical_colleges/nirf` | Fetch the list of all the medical colleges ranked by NIRF. | 48 | | **GET** | `/medical_colleges/state={state}` | Fetch the list of all the medical colleges in the state passed by the user as a `parameter`. | 49 | | **GET** | `/medical_colleges/city={city}` | Fetch the list of all the medical colleges in the city passed by the user as a `parameter`. | 50 | | **GET** | `/management_colleges` | Fetch the list of all the management colleges in India. | 51 | | **GET** | `/management_colleges/nirf` | Fetch the list of all the 300 management colleges ranked by NIRF. In this endpoint, the rank of the colleges will be provided along with the other details. | 52 | | **GET** | `/management_colleges/state={state}` | Fetch the list of all the management colleges in the state passed by the user as a `parameter`. | 53 | | **GET** | `/management_colleges/city={city}` | Fetch the list of all the management colleges in the city passed by the user as a `parameter`. | 54 | | **GET** | `/colleges` | Fetch the list of all the colleges in India. | 55 | | **GET** | `/colleges/nirf` | Fetch the list of all the colleges ranked by NIRF. | 56 | | **GET** | `/colleges/state={state}` | Fetch the list of colleges in the state passed by the user as a `parameter`. | 57 | | **GET** | `/colleges/city={city}` | Fetch the list of colleges in the city passed by the user as a `parameter`. | 58 | | **GET** | `/pharmacy_colleges` | Fetch the list of all the pharmacy colleges. | 59 | | **GET** | `/pharmacy_colleges/nirf` | Fetch the list of all the pharmacy colleges listed in NIRF. | 60 | | **GET** | `/pharmacy_colleges/state={state}` | Fetch the list of pharmacy colleges in the state passed by the user as a `parameter`. | 61 | | **GET** | `/pharmacy_colleges/city={city}` | Fetch the list of pharmacy colleges in the city passed by the user as a `parameter`. | 62 | | **GET** | `/dental_colleges` | Fetch the list of all the dental colleges in India. | 63 | | **GET** | `/dental_colleges/nirf` | Fetch the list of dental colleges listed in NIRF. | 64 | | **GET** | `/dental_colleges/state={state}` | Fetch the list of all the dental colleges in the state passed by the user as a `parameter`. | 65 | | **GET** | `/dental_colleges/city={city}` | Fetch the list of all the dental colleges in the city passed by the user as a `parameter`. | 66 | | **GET** | `/law_colleges/nirf` | Fetch the list of law colleges listed in NIRF. | 67 | | **GET** | `/architecture_colleges` | Fetch the list of all architecture colleges. | 68 | | **GET** | `/architecture_colleges/nirf` | Fetch the list of architecture colleges listed in NIRF. | 69 | | **GET** | `/architecture_colleges/state={state}` | Fetch the list of all the architecture colleges in the state passed by the user as a `parameter`. | 70 | | **GET** | `/architecture_colleges/city={city}` | Fetch the list of all the architecture colleges in the city passed by the user as a `parameter`. | 71 | | **GET** | `/research_colleges` | Fetch the list of all research colleges. | 72 | | **GET** | `/research_colleges/nirf` | Fetch the list of research colleges listed in NIRF. | 73 | | **GET** | `/research_colleges/state={state}` | Fetch the list of all the research colleges in the state passed by the user as a `parameter`. | 74 | | **GET** | `/research_colleges/city={city}` | Fetch the list of all the research colleges in the city passed by the user as a `parameter`. | 75 | | **GET** | `/universities` | Fetch the list of all the universities in India. | 76 | | **GET** | `/universities/state={state}` | Fetch the list of all the universities in the state passed by the user as a `parameter`. | 77 | | **GET** | `/universities/city={city}` | Fetch the list of all the universities in the city passed by the user as a `parameter`. | 78 | 79 | ---- 80 | 81 | > For pagination add page and limit as query params i.e. `/all/?page=1&limit=10` 82 | 83 |

Project maintainers

84 | 85 | 86 | 93 | 94 |
87 | 88 | Nikhil Raj 89 |
90 | Nikhil Raj 91 |
92 |
95 | 96 | --- 97 | -------------------------------------------------------------------------------- /data/medical_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "All India Institute of Medical Sciences, Delhi", 4 | "city": "New Delhi", 5 | "rank": 1, 6 | "state": "Delhi" 7 | }, 8 | { 9 | "name": "Post Graduate Institute of Medical Education and Research", 10 | "city": "Chandigarh", 11 | "rank": 2, 12 | "state": "Chandigarh" 13 | }, 14 | { 15 | "name": "Christian Medical College", 16 | "city": "Vellore", 17 | "rank": 3, 18 | "state": "Tamil Nadu" 19 | }, 20 | { 21 | "name": "National Institute of Mental Health & Neuro Sciences, Bangalore", 22 | "city": "Bangalore", 23 | "rank": 4, 24 | "state": "Karnataka" 25 | }, 26 | { 27 | "name": "Banaras Hindu University", 28 | "city": "Varanasi", 29 | "rank": 5, 30 | "state": "Uttar Pradesh" 31 | }, 32 | { 33 | "name": "Jawaharlal Institute of Post Graduate Medical Education & Research", 34 | "city": "Puducherry", 35 | "rank": 6, 36 | "state": "Pondicherry" 37 | }, 38 | { 39 | "name": "Sanjay Gandhi Postgraduate Institute of Medical Sciences", 40 | "city": "Lucknow", 41 | "rank": 7, 42 | "state": "Uttar Pradesh" 43 | }, 44 | { 45 | "name": "Amrita Vishwa Vidyapeetham", 46 | "city": "Coimbatore", 47 | "rank": 8, 48 | "state": "Tamil Nadu" 49 | }, 50 | { 51 | "name": "Sree Chitra Tirunal Institute for Medical Sciences and Technology, Thiruvananthapuram", 52 | "city": "Thiruvananthapuram", 53 | "rank": 9, 54 | "state": "Kerala" 55 | }, 56 | { 57 | "name": "Kasturba Medical College, Manipal", 58 | "city": "Manipal", 59 | "rank": 10, 60 | "state": "Karnataka" 61 | }, 62 | { 63 | "name": "King George`s Medical University", 64 | "city": "Lucknow", 65 | "rank": 11, 66 | "state": "Uttar Pradesh" 67 | }, 68 | { 69 | "name": "Madras Medical College & Government General Hospital, Chennai", 70 | "city": "Chennai", 71 | "rank": 12, 72 | "state": "Tamil Nadu" 73 | }, 74 | { 75 | "name": "Institute of Liver and Biliary Sciences", 76 | "city": "New Delhi", 77 | "rank": 13, 78 | "state": "Delhi" 79 | }, 80 | { 81 | "name": "St. John's Medical College", 82 | "city": "Bengaluru", 83 | "rank": 14, 84 | "state": "Karnataka" 85 | }, 86 | { 87 | "name": "Sri Ramachandra Institute of Higher Education and Research", 88 | "city": "Chennai", 89 | "rank": 15, 90 | "state": "Tamil Nadu" 91 | }, 92 | { 93 | "name": "All India Institute of Medical Sciences Jodhpur", 94 | "city": "Jodhpur", 95 | "rank": 16, 96 | "state": "Rajasthan" 97 | }, 98 | { 99 | "name": "Dr. D. Y. Patil Vidyapeeth", 100 | "city": "Pune", 101 | "rank": 17, 102 | "state": "Maharashtra" 103 | }, 104 | { 105 | "name": "Siksha `O` Anusandhan", 106 | "city": "Bhubaneswar", 107 | "rank": 18, 108 | "state": "Odisha" 109 | }, 110 | { 111 | "name": "Vardhman Mahavir Medical College & Safdarjung Hospital", 112 | "city": "New Delhi", 113 | "rank": 19, 114 | "state": "Delhi" 115 | }, 116 | { 117 | "name": "S.R.M. Institute of Science and Technology", 118 | "city": "Chennai", 119 | "rank": 20, 120 | "state": "Tamil Nadu" 121 | }, 122 | { 123 | "name": "Institute of Post Graduate Medical Education & Research", 124 | "city": "Kolkata", 125 | "rank": 21, 126 | "state": "West Bengal" 127 | }, 128 | { 129 | "name": "Aligarh Muslim University", 130 | "city": "Aligarh", 131 | "rank": 22, 132 | "state": "Uttar Pradesh" 133 | }, 134 | { 135 | "name": "Maulana Azad Medical College", 136 | "city": "Delhi", 137 | "rank": 23, 138 | "state": "Delhi" 139 | }, 140 | { 141 | "name": "Datta Meghe Institute of Medical Sciences", 142 | "city": "Wardha", 143 | "rank": 24, 144 | "state": "Maharashtra" 145 | }, 146 | { 147 | "name": "Saveetha Institute of Medical and Technical Sciences", 148 | "city": "Chennai", 149 | "rank": 25, 150 | "state": "Tamil Nadu" 151 | }, 152 | { 153 | "name": "All India Institute of Medical Sciences Bhubaneswar", 154 | "city": "Khordha", 155 | "rank": 26, 156 | "state": "Odisha" 157 | }, 158 | { 159 | "name": "Govt. Medical College & Hospital", 160 | "city": "Chandigarh", 161 | "rank": 27, 162 | "state": "Chandigarh" 163 | }, 164 | { 165 | "name": "University College of Medical Sciences", 166 | "city": "Delhi", 167 | "rank": 28, 168 | "state": "Delhi" 169 | }, 170 | { 171 | "name": "Lady Hardinge Medical College", 172 | "city": "New Delhi", 173 | "rank": 29, 174 | "state": "Delhi" 175 | }, 176 | { 177 | "name": "Kalinga Institute of Industrial Technology", 178 | "city": "Bhubaneswar", 179 | "rank": 30, 180 | "state": "Odisha" 181 | }, 182 | { 183 | "name": "Kasturba Medical College, Mangalore", 184 | "city": "Mangaluru", 185 | "rank": 31, 186 | "state": "Karnataka" 187 | }, 188 | { 189 | "name": "Maharishi Markandeshwar", 190 | "city": "Ambala", 191 | "rank": 32, 192 | "state": "Haryana" 193 | }, 194 | { 195 | "name": "Jamia Hamdard", 196 | "city": "New Delhi", 197 | "rank": 33, 198 | "state": "Delhi" 199 | }, 200 | { 201 | "name": "JSS Medical College, Mysore", 202 | "city": "Mysore", 203 | "rank": 34, 204 | "state": "Karnataka" 205 | }, 206 | { 207 | "name": "PSG Institute of Medical Sciences & Research, Coimbatore", 208 | "city": "Coimbatore", 209 | "rank": 35, 210 | "state": "Tamil Nadu" 211 | }, 212 | { 213 | "name": "Christian Medical College, Ludhiana", 214 | "city": "Ludhiana", 215 | "rank": 36, 216 | "state": "Punjab" 217 | }, 218 | { 219 | "name": "Gujarat Cancer & Research Institute", 220 | "city": "Ahmadabad", 221 | "rank": 37, 222 | "state": "Gujarat" 223 | }, 224 | { 225 | "name": "M. S. Ramaiah Medical College", 226 | "city": "Bengaluru", 227 | "rank": 38, 228 | "state": "Karnataka" 229 | }, 230 | { 231 | "name": "Chettinad Academy of Research and Education", 232 | "city": "Kelambakkam, Chengalpattu District", 233 | "rank": 39, 234 | "state": "Tamil Nadu" 235 | }, 236 | { 237 | "name": "Dayanand Medical College", 238 | "city": "Ludhiana", 239 | "rank": 40, 240 | "state": "Punjab" 241 | }, 242 | { 243 | "name": "Sawai Man Singh Medical College", 244 | "city": "Jaipur", 245 | "rank": 41, 246 | "state": "Rajasthan" 247 | }, 248 | { 249 | "name": "Krishna Institute of Medical Sciences Deemed University, Karad", 250 | "city": "Karad", 251 | "rank": 42, 252 | "state": "Maharashtra" 253 | }, 254 | { 255 | "name": "Medical College", 256 | "city": "Kolkata", 257 | "rank": 43, 258 | "state": "West Bengal" 259 | }, 260 | { 261 | "name": "SCB Medical College and Hospital", 262 | "city": "Cuttack", 263 | "rank": 44, 264 | "state": "Odisha" 265 | }, 266 | { 267 | "name": "Padmashree Dr. D. Y. Patil Vidyapeeth, Mumbai", 268 | "city": "Mumbai", 269 | "rank": 45, 270 | "state": "Maharashtra" 271 | }, 272 | { 273 | "name": "Regional Institute of Medical Sciences", 274 | "city": "Imphal West", 275 | "rank": 46, 276 | "state": "Manipur" 277 | }, 278 | { 279 | "name": "Mahatma Gandhi Medical College and Research Institute", 280 | "city": "Puducherry", 281 | "rank": 47, 282 | "state": "Pondicherry" 283 | }, 284 | { 285 | "name": "All India Institute of Medical Sciences, Rishikesh", 286 | "city": "Rishikesh", 287 | "rank": 48, 288 | "state": "Uttarakhand" 289 | }, 290 | { 291 | "name": "All India Institute of Medical Sciences, Raipur", 292 | "city": "Raipur", 293 | "rank": 49, 294 | "state": "Chhattisgarh" 295 | }, 296 | { 297 | "name": "B. J. Medical College", 298 | "city": "Ahmadabad", 299 | "rank": 50, 300 | "state": "Gujarat" 301 | } 302 | ] -------------------------------------------------------------------------------- /data/research_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Indian Institute of ScienceMore Details", 4 | "city": "Bengaluru", 5 | "rank": 1, 6 | "state": "Karnataka" 7 | }, 8 | { 9 | "name": "Indian Institute of Technology MadrasMore Details", 10 | "city": "Chennai", 11 | "rank": 2, 12 | "state": "Tamil Nadu" 13 | }, 14 | { 15 | "name": "Indian Institute of Technology, DelhiMore Details", 16 | "city": "New Delhi", 17 | "rank": 3, 18 | "state": "Delhi" 19 | }, 20 | { 21 | "name": "Indian Institute of Technology, BombayMore Details", 22 | "city": "Mumbai", 23 | "rank": 4, 24 | "state": "Maharashtra" 25 | }, 26 | { 27 | "name": "Indian Institute of Technology, KharagpurMore Details", 28 | "city": "Kharagpur", 29 | "rank": 5, 30 | "state": "West Bengal" 31 | }, 32 | { 33 | "name": "Indian Institute of Technology KanpurMore Details", 34 | "city": "Kanpur", 35 | "rank": 6, 36 | "state": "Uttar Pradesh" 37 | }, 38 | { 39 | "name": "Tata Institute of Fundamental ResearchMore Details", 40 | "city": "Mumbai", 41 | "rank": 7, 42 | "state": "Maharashtra" 43 | }, 44 | { 45 | "name": "Indian Institute of Technology, RoorkeeMore Details", 46 | "city": "Roorkee", 47 | "rank": 8, 48 | "state": "Uttarakhand" 49 | }, 50 | { 51 | "name": "All India Institute of Medical Sciences, DelhiMore Details", 52 | "city": "New Delhi", 53 | "rank": 9, 54 | "state": "Delhi" 55 | }, 56 | { 57 | "name": "Vellore Institute of TechnologyMore Details", 58 | "city": "Vellore", 59 | "rank": 10, 60 | "state": "Tamil Nadu" 61 | }, 62 | { 63 | "name": "Homi Bhabha National InstituteMore Details", 64 | "city": "Mumbai", 65 | "rank": 11, 66 | "state": "Maharashtra" 67 | }, 68 | { 69 | "name": "Indian Institute of Technology HyderabadMore Details", 70 | "city": "Hyderabad", 71 | "rank": 12, 72 | "state": "Telangana" 73 | }, 74 | { 75 | "name": "Jadavpur UniversityMore Details", 76 | "city": "Kolkata", 77 | "rank": 13, 78 | "state": "West Bengal" 79 | }, 80 | { 81 | "name": "Jawaharlal Nehru UniversityMore Details", 82 | "city": "New Delhi", 83 | "rank": 14, 84 | "state": "Delhi" 85 | }, 86 | { 87 | "name": "Banaras Hindu UniversityMore Details", 88 | "city": "Varanasi", 89 | "rank": 15, 90 | "state": "Uttar Pradesh" 91 | }, 92 | { 93 | "name": "University of DelhiMore Details", 94 | "city": "Delhi", 95 | "rank": 16, 96 | "state": "Delhi" 97 | }, 98 | { 99 | "name": "Indian Institute of Science Education & Research, PuneMore Details", 100 | "city": "Pune", 101 | "rank": 17, 102 | "state": "Maharashtra" 103 | }, 104 | { 105 | "name": "Academy of Scientific & Innovative ResearchMore Details", 106 | "city": "Ghaziabad", 107 | "rank": 18, 108 | "state": "Uttar Pradesh" 109 | }, 110 | { 111 | "name": "Jamia Millia Islamia, New DelhiMore Details", 112 | "city": "New Delhi", 113 | "rank": 19, 114 | "state": "Delhi" 115 | }, 116 | { 117 | "name": "Indian Institute of Technology (Indian School of Mines)More Details", 118 | "city": "Dhanbad", 119 | "rank": 20, 120 | "state": "Jharkhand" 121 | }, 122 | { 123 | "name": "Anna UniversityMore Details", 124 | "city": "Chennai", 125 | "rank": 21, 126 | "state": "Tamil Nadu" 127 | }, 128 | { 129 | "name": "Bharathiar UniversityMore Details", 130 | "city": "Coimbatore", 131 | "rank": 22, 132 | "state": "Tamil Nadu" 133 | }, 134 | { 135 | "name": "National Institute of Technology, TiruchirappalliMore Details", 136 | "city": "Tiruchirappalli", 137 | "rank": 23, 138 | "state": "Tamil Nadu" 139 | }, 140 | { 141 | "name": "National Institute of Technology RourkelaMore Details", 142 | "city": "Rourkela", 143 | "rank": 24, 144 | "state": "Odisha" 145 | }, 146 | { 147 | "name": "Institute of Chemical TechnologyMore Details", 148 | "city": "Mumbai", 149 | "rank": 25, 150 | "state": "Maharashtra" 151 | }, 152 | { 153 | "name": "Indian Institute of Technology IndoreMore Details", 154 | "city": "Indore", 155 | "rank": 26, 156 | "state": "Madhya Pradesh" 157 | }, 158 | { 159 | "name": "University of HyderabadMore Details", 160 | "city": "Hyderabad", 161 | "rank": 27, 162 | "state": "Telangana" 163 | }, 164 | { 165 | "name": "Aligarh Muslim UniversityMore Details", 166 | "city": "Aligarh", 167 | "rank": 28, 168 | "state": "Uttar Pradesh" 169 | }, 170 | { 171 | "name": "Panjab UniversityMore Details", 172 | "city": "Chandigarh", 173 | "rank": 29, 174 | "state": "Chandigarh" 175 | }, 176 | { 177 | "name": "Manipal Academy of Higher Education, ManipalMore Details", 178 | "city": "Manipal", 179 | "rank": 30, 180 | "state": "Karnataka" 181 | }, 182 | { 183 | "name": "Amrita Vishwa VidyapeethamMore Details", 184 | "city": "Coimbatore", 185 | "rank": 31, 186 | "state": "Tamil Nadu" 187 | }, 188 | { 189 | "name": "Indian Institute of Science Education & Research, KolkataMore Details", 190 | "city": "Mohanpur", 191 | "rank": 32, 192 | "state": "West Bengal" 193 | }, 194 | { 195 | "name": "Birla Institute of Technology & Science - PilaniMore Details", 196 | "city": "Pilani", 197 | "rank": 33, 198 | "state": "Rajasthan" 199 | }, 200 | { 201 | "name": "Indian Institute of Technology, GandhinagarMore Details", 202 | "city": "Gandhinagar", 203 | "rank": 34, 204 | "state": "Gujarat" 205 | }, 206 | { 207 | "name": "Thapar Institute of Engineering and TechnologyMore Details", 208 | "city": "Patiala", 209 | "rank": 35, 210 | "state": "Punjab" 211 | }, 212 | { 213 | "name": "S.R.M. Institute of Science and TechnologyMore Details", 214 | "city": "Chennai", 215 | "rank": 36, 216 | "state": "Tamil Nadu" 217 | }, 218 | { 219 | "name": "Indian Institute of Technology BhubaneswarMore Details", 220 | "city": "Bhubaneswar", 221 | "rank": 37, 222 | "state": "Odisha" 223 | }, 224 | { 225 | "name": "Amity UniversityMore Details", 226 | "city": "Gautam Budh Nagar", 227 | "rank": 38, 228 | "state": "Uttar Pradesh" 229 | }, 230 | { 231 | "name": "Indian Institute of Technology, MandiMore Details", 232 | "city": "Mandi", 233 | "rank": 39, 234 | "state": "Himachal Pradesh" 235 | }, 236 | { 237 | "name": "Indian Institute of Engineering Science and Technology, ShibpurMore Details", 238 | "city": "Howrah", 239 | "rank": 40, 240 | "state": "West Bengal" 241 | }, 242 | { 243 | "name": "Indian Institute of Technology, PatnaMore Details", 244 | "city": "Patna", 245 | "rank": 41, 246 | "state": "Bihar" 247 | }, 248 | { 249 | "name": "National Institute of Mental Health & Neuro Sciences, BangaloreMore Details", 250 | "city": "Bangalore", 251 | "rank": 42, 252 | "state": "Karnataka" 253 | }, 254 | { 255 | "name": "Alagappa UniversityMore Details", 256 | "city": "Karaikudi", 257 | "rank": 43, 258 | "state": "Tamil Nadu" 259 | }, 260 | { 261 | "name": "Shanmugha Arts Science Technology & Research AcademyMore Details", 262 | "city": "Thanjavur", 263 | "rank": 44, 264 | "state": "Tamil Nadu" 265 | }, 266 | { 267 | "name": "Siksha `O` AnusandhanMore Details", 268 | "city": "Bhubaneswar", 269 | "rank": 45, 270 | "state": "Odisha" 271 | }, 272 | { 273 | "name": "Malaviya National Institute of TechnologyMore Details", 274 | "city": "Jaipur", 275 | "rank": 46, 276 | "state": "Rajasthan" 277 | }, 278 | { 279 | "name": "Kalinga Institute of Industrial TechnologyMore Details", 280 | "city": "Bhubaneswar", 281 | "rank": 47, 282 | "state": "Odisha" 283 | }, 284 | { 285 | "name": "Saveetha Institute of Medical and Technical SciencesMore Details", 286 | "city": "Chennai", 287 | "rank": 48, 288 | "state": "Tamil Nadu" 289 | }, 290 | { 291 | "name": "Indian Institute of Science Education & Research BhopalMore Details", 292 | "city": "Bhopal", 293 | "rank": 49, 294 | "state": "Madhya Pradesh" 295 | }, 296 | { 297 | "name": "National Institute of Technology, SilcharMore Details", 298 | "city": "Silchar", 299 | "rank": 50, 300 | "state": "Assam" 301 | } 302 | ] -------------------------------------------------------------------------------- /data/architecture_participated.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Accurate Institute of Architecture & Planning", 4 | "city": "Greater Noida", 5 | "state": "Uttar Pradesh" 6 | }, 7 | { 8 | "name": "Acharyar NRV School of Architecture, Bangalore", 9 | "city": "Bangalore", 10 | "state": "Karnataka" 11 | }, 12 | { 13 | "name": "Aligarh Muslim University", 14 | "city": "Aligarh", 15 | "state": "Uttar Pradesh" 16 | }, 17 | { 18 | "name": "Angadi Instittute of Technology and Management", 19 | "city": "Belagavi", 20 | "state": "Karnataka" 21 | }, 22 | { 23 | "name": "Anjuman-I-Islam`s Kalsekar Technical Campus", 24 | "city": "New Panvel", 25 | "state": "Maharashtra" 26 | }, 27 | { 28 | "name": "Anna University", 29 | "city": "Chennai", 30 | "state": "Tamil Nadu" 31 | }, 32 | { 33 | "name": "Apeejay Institute of Technology-School of Architecture & Planning", 34 | "city": "Greater Noida", 35 | "state": "Uttar Pradesh" 36 | }, 37 | { 38 | "name": "B. S. Abdur Rahman Crescent Institute of Science and Technology", 39 | "city": "Chennai", 40 | "state": "Tamil Nadu" 41 | }, 42 | { 43 | "name": "Bharati Vidyapeeth`s College of Architecture", 44 | "city": "Navi Mumbai", 45 | "state": "Maharashtra" 46 | }, 47 | { 48 | "name": "Bharati Vidyapeeth?s College of Architecture", 49 | "city": "Pune", 50 | "state": "Maharashtra" 51 | }, 52 | { 53 | "name": "Birla Institute of Technology", 54 | "city": "Ranchi", 55 | "state": "Jharkhand" 56 | }, 57 | { 58 | "name": "BMS College of Arhitecture", 59 | "city": "Bengaluru", 60 | "state": "Karnataka" 61 | }, 62 | { 63 | "name": "BMS School of Architecture, Yelahanka", 64 | "city": "Bangalore", 65 | "state": "Karnataka" 66 | }, 67 | { 68 | "name": "Bundelkhand University", 69 | "city": "Jhansi", 70 | "state": "Uttar Pradesh" 71 | }, 72 | { 73 | "name": "C.A.R.E School of Architecture (New)", 74 | "city": "TRICHY", 75 | "state": "Tamil Nadu" 76 | }, 77 | { 78 | "name": "Chandigarh University", 79 | "city": "Mohali", 80 | "state": "Punjab" 81 | }, 82 | { 83 | "name": "Chitkara University", 84 | "city": "Rajpura", 85 | "state": "Punjab" 86 | }, 87 | { 88 | "name": "College of Engineering & Technology", 89 | "city": "Akola", 90 | "state": "Maharashtra" 91 | }, 92 | { 93 | "name": "College of Engineering, Trivandrum", 94 | "city": "Thiruvananthapuram", 95 | "state": "Kerala" 96 | }, 97 | { 98 | "name": "CT Institute of Architecture and Planning", 99 | "city": "Jalandhar", 100 | "state": "Punjab" 101 | }, 102 | { 103 | "name": "D. Y. Patil College of Engineering & Technology Department of Architecture", 104 | "city": "Kolhapur", 105 | "state": "Maharashtra" 106 | }, 107 | { 108 | "name": "Deenbandhu Chhotu Ram University of Science & Technology", 109 | "city": "Sonipat", 110 | "state": "Haryana" 111 | }, 112 | { 113 | "name": "Faculty of Architecture and Planning, Dr APJ Abbdul Kalam Technical University, Lucknow", 114 | "city": "Lucknow", 115 | "state": "Uttar Pradesh" 116 | }, 117 | { 118 | "name": "Gandhi Institute of Technology and Management", 119 | "city": "Visakhapatnam", 120 | "state": "Andhra Pradesh" 121 | }, 122 | { 123 | "name": "Government Engineering College, Thrissur", 124 | "city": "Thrissur", 125 | "state": "Kerala" 126 | }, 127 | { 128 | "name": "Guru Gobind Singh Indraprastha University", 129 | "city": "New Delhi", 130 | "state": "Delhi" 131 | }, 132 | { 133 | "name": "Hindustan Institute of Technology and Science (HITS)", 134 | "city": "Chennai", 135 | "state": "Tamil Nadu" 136 | }, 137 | { 138 | "name": "IDEAS-Institute of Design Education & Architectural Studies", 139 | "city": "Nagpur", 140 | "state": "Maharashtra" 141 | }, 142 | { 143 | "name": "Indian Institute of Engineering Science and Technology, Shibpur", 144 | "city": "HOWRAH", 145 | "state": "West Bengal" 146 | }, 147 | { 148 | "name": "Indian Institute of Technology, Kharagpur", 149 | "city": "Kharagpur", 150 | "state": "West Bengal" 151 | }, 152 | { 153 | "name": "Indian Institute of Technology, Roorkee", 154 | "city": "Roorkee", 155 | "state": "Uttarakhand" 156 | }, 157 | { 158 | "name": "Indus University", 159 | "city": "Gandhinagar", 160 | "state": "Gujarat" 161 | }, 162 | { 163 | "name": "Integral University", 164 | "city": "Lucknow", 165 | "state": "Uttar Pradesh" 166 | }, 167 | { 168 | "name": "Jamia Millia Islamia, New Delhi", 169 | "city": "New Delhi", 170 | "state": "Delhi" 171 | }, 172 | { 173 | "name": "JNAFAU School of Planning and Architecture", 174 | "city": "Hyderabad", 175 | "state": "Telangana" 176 | }, 177 | { 178 | "name": "Kamala Raheja Vidyanidhi Institute of Architecture and Environmental Studies, Mumbai", 179 | "city": "Mumbai", 180 | "state": "Maharashtra" 181 | }, 182 | { 183 | "name": "Kavikulguru Institute of Technology and Science", 184 | "city": "Ramtek", 185 | "state": "Maharashtra" 186 | }, 187 | { 188 | "name": "Lovely Professional University", 189 | "city": "Phagwara", 190 | "state": "Punjab" 191 | }, 192 | { 193 | "name": "M. G. R. Educational and Research Institute", 194 | "city": "Chennai", 195 | "state": "Tamil Nadu" 196 | }, 197 | { 198 | "name": "M. S. Ramaiah Institute of Technology", 199 | "city": "Bengaluru", 200 | "state": "Karnataka" 201 | }, 202 | { 203 | "name": "Madhav Institute of Technology and Science, Gwalior", 204 | "city": "Gwalior", 205 | "state": "Madhya Pradesh" 206 | }, 207 | { 208 | "name": "Mahatma Education Society's Pillai's College of Architecture", 209 | "city": "New Panvel", 210 | "state": "Maharashtra" 211 | }, 212 | { 213 | "name": "Mahatma Gandhi Mission`s Jawaharlal Nehru Engineering College", 214 | "city": "Aurangabad", 215 | "state": "Maharashtra" 216 | }, 217 | { 218 | "name": "Manipal School of Architecture and Planning, Mahe", 219 | "city": "Udupi", 220 | "state": "Karnataka" 221 | }, 222 | { 223 | "name": "Marathwada Institute of Technology", 224 | "city": "Aurangabad", 225 | "state": "Maharashtra" 226 | }, 227 | { 228 | "name": "Marathwada Mitra Mandal`s College of Architecture, Pune", 229 | "city": "Pune", 230 | "state": "Maharashtra" 231 | }, 232 | { 233 | "name": "Maulana Azad National Institute of Technology", 234 | "city": "Bhopal", 235 | "state": "Madhya Pradesh" 236 | }, 237 | { 238 | "name": "MES Engineering College", 239 | "city": "Malappuram District", 240 | "state": "Kerala" 241 | }, 242 | { 243 | "name": "MIT Art, Design and Technology University, Pune", 244 | "city": "Pune", 245 | "state": "Maharashtra" 246 | }, 247 | { 248 | "name": "Moradabad Educational Trust, Group of Institutions, Faculty of B. Architecture", 249 | "city": "Moradabad", 250 | "state": "Uttar Pradesh" 251 | }, 252 | { 253 | "name": "N.D.M.V.P.Samajs College of Architecture, Nashik", 254 | "city": "NASHIK", 255 | "state": "Maharashtra" 256 | }, 257 | { 258 | "name": "National Institute of Technology, Calicut", 259 | "city": "Kozhikode", 260 | "state": "Kerala" 261 | }, 262 | { 263 | "name": "National Institute of Technology, Hamirpur", 264 | "city": "Hamirpur", 265 | "state": "Himachal Pradesh" 266 | }, 267 | { 268 | "name": "National Institute of Technology, Patna", 269 | "city": "Patna", 270 | "state": "Bihar" 271 | }, 272 | { 273 | "name": "National Institute of Technology, Raipur", 274 | "city": "Raipur", 275 | "state": "Chhattisgarh" 276 | }, 277 | { 278 | "name": "National Institute of Technology, Tiruchirappalli", 279 | "city": "Tiruchirappalli", 280 | "state": "Tamil Nadu" 281 | }, 282 | { 283 | "name": "Navrachana University", 284 | "city": "Vadodara", 285 | "state": "Gujarat" 286 | }, 287 | { 288 | "name": "Nirma University", 289 | "city": "Ahmedabad", 290 | "state": "Gujarat" 291 | }, 292 | { 293 | "name": "Om Institute of Technology & Management", 294 | "city": "HISAR", 295 | "state": "Haryana" 296 | }, 297 | { 298 | "name": "Omdayal Group of Institutions", 299 | "city": "Howrah", 300 | "state": "West Bengal" 301 | }, 302 | { 303 | "name": "P D A College of Engineering, Gulbarga", 304 | "city": "Kalaburagi", 305 | "state": "Karnataka" 306 | }, 307 | { 308 | "name": "P.P. Savani University", 309 | "city": "Surat", 310 | "state": "Gujarat" 311 | }, 312 | { 313 | "name": "Parul University", 314 | "city": "Vadodara", 315 | "state": "Gujarat" 316 | }, 317 | { 318 | "name": "Periyar Manaimmai Institute of Science & Technology (PMIST)", 319 | "city": "Vallam Thanjavur", 320 | "state": "Tamil Nadu" 321 | }, 322 | { 323 | "name": "Pimpri Chinchwad Education Trust S.B Patil College of Architecture and Design", 324 | "city": "PUNE", 325 | "state": "Maharashtra" 326 | }, 327 | { 328 | "name": "Poornima University", 329 | "city": "Jaipur", 330 | "state": "Rajasthan" 331 | }, 332 | { 333 | "name": "R R School of Architecture", 334 | "city": "Bengaluru", 335 | "state": "Karnataka" 336 | }, 337 | { 338 | "name": "R. R. Institute of Modern Technology", 339 | "city": "Lucknow", 340 | "state": "Uttar Pradesh" 341 | }, 342 | { 343 | "name": "Rajiv Gandhi Government Engineering College", 344 | "city": "Kangra", 345 | "state": "Himachal Pradesh" 346 | }, 347 | { 348 | "name": "Rajiv Gandhi Institute of Technology", 349 | "city": "Kottayam", 350 | "state": "Kerala" 351 | }, 352 | { 353 | "name": "Reva University", 354 | "city": "Bengaluru", 355 | "state": "Karnataka" 356 | }, 357 | { 358 | "name": "RV College of Architecture", 359 | "city": "Bangalore", 360 | "state": "Karnataka" 361 | }, 362 | { 363 | "name": "S.R.M. Institute of Science and Technology", 364 | "city": "Chennai", 365 | "state": "Tamil Nadu" 366 | }, 367 | { 368 | "name": "Sanskar College of Architecture and Planning", 369 | "city": "Hapur", 370 | "state": "Uttar Pradesh" 371 | }, 372 | { 373 | "name": "Sarvajanik College of Engineering & Technology, Faculty of Architecture", 374 | "city": "Surat-", 375 | "state": "Gujarat" 376 | }, 377 | { 378 | "name": "Sasi Creative School of Architecture", 379 | "city": "Coimbatore", 380 | "state": "Tamil Nadu" 381 | }, 382 | { 383 | "name": "School of Architecture, Indore", 384 | "city": "Indore", 385 | "state": "Madhya Pradesh" 386 | }, 387 | { 388 | "name": "School of Planning & Architecture, Vijayawada", 389 | "city": "Vijayawada", 390 | "state": "Andhra Pradesh" 391 | }, 392 | { 393 | "name": "School of Planning and Architecture, Bhopal", 394 | "city": "Bhopal", 395 | "state": "Madhya Pradesh" 396 | }, 397 | { 398 | "name": "School of Planning and Architecture, New Delhi", 399 | "city": "New Delhi", 400 | "state": "Delhi" 401 | }, 402 | { 403 | "name": "Shaheed Bhagat Singh State University", 404 | "city": "Firozepur", 405 | "state": "Punjab" 406 | }, 407 | { 408 | "name": "Shantaben Manubhai Patel Institute Architecture and Interior Design", 409 | "city": "Anand", 410 | "state": "Gujarat" 411 | }, 412 | { 413 | "name": "Shri Mata Vaishno Devi University", 414 | "city": "Katra", 415 | "state": "Jammu and Kashmir" 416 | }, 417 | { 418 | "name": "SJB School of Aarchitecture and Planning, Kengeri", 419 | "city": "Bengaluru", 420 | "state": "Karnataka" 421 | }, 422 | { 423 | "name": "Smt. Manoramabai Mundle College of Architecture", 424 | "city": "Nagpur", 425 | "state": "Maharashtra" 426 | }, 427 | { 428 | "name": "Sushant University", 429 | "city": "Gurugram", 430 | "state": "Haryana" 431 | }, 432 | { 433 | "name": "Thakur School of Architecture & Planning", 434 | "city": "MUMBAI", 435 | "state": "Maharashtra" 436 | }, 437 | { 438 | "name": "The Oxford College of Engineering", 439 | "city": "Bengaluru", 440 | "state": "Karnataka" 441 | }, 442 | { 443 | "name": "Thiagarajar College of Engineering", 444 | "city": "Madurai", 445 | "state": "Tamil Nadu" 446 | }, 447 | { 448 | "name": "TKM College of Engineering", 449 | "city": "Kollam", 450 | "state": "Kerala" 451 | }, 452 | { 453 | "name": "Visvesvaraya National Institute of Technology, Nagpur", 454 | "city": "Nagpur", 455 | "state": "Maharashtra" 456 | } 457 | ] -------------------------------------------------------------------------------- /data/college_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Miranda House", 4 | "city": "Delhi", 5 | "rank": 1, 6 | "state": "Delhi" 7 | }, 8 | { 9 | "name": "Hindu College", 10 | "city": "Delhi", 11 | "rank": 2, 12 | "state": "Delhi" 13 | }, 14 | { 15 | "name": "Presidency College", 16 | "city": "Chennai", 17 | "rank": 3, 18 | "state": "Tamil Nadu" 19 | }, 20 | { 21 | "name": "Loyola College", 22 | "city": "Chennai", 23 | "rank": 4, 24 | "state": "Tamil Nadu" 25 | }, 26 | { 27 | "name": "Lady Shri Ram College For Women", 28 | "city": "New Delhi", 29 | "rank": 5, 30 | "state": "Delhi" 31 | }, 32 | { 33 | "name": "PSGR Krishnammal College for Women", 34 | "city": "Coimbatore", 35 | "rank": 6, 36 | "state": "Tamil Nadu" 37 | }, 38 | { 39 | "name": "Atma Ram Sanatan Dharm College", 40 | "city": "New Delhi", 41 | "rank": 7, 42 | "state": "Delhi" 43 | }, 44 | { 45 | "name": "St. Xavier`s College", 46 | "city": "Kolkata", 47 | "rank": 8, 48 | "state": "West Bengal" 49 | }, 50 | { 51 | "name": "Ramakrishna Mission Vidyamandira", 52 | "city": "Howrah", 53 | "rank": 9, 54 | "state": "West Bengal" 55 | }, 56 | { 57 | "name": "Kirori Mal College", 58 | "city": "Delhi", 59 | "rank": 10, 60 | "state": "Delhi" 61 | }, 62 | { 63 | "name": "St. Stephens's College", 64 | "city": "Delhi", 65 | "rank": 11, 66 | "state": "Delhi" 67 | }, 68 | { 69 | "name": "Shri Ram College of Commerce", 70 | "city": "Delhi", 71 | "rank": 12, 72 | "state": "Delhi" 73 | }, 74 | { 75 | "name": "Rama Krishna Mission Vivekananda Centenary College", 76 | "city": "Rahara", 77 | "rank": 13, 78 | "state": "West Bengal" 79 | }, 80 | { 81 | "name": "Hans Raj College", 82 | "city": "Delhi", 83 | "rank": 14, 84 | "state": "Delhi" 85 | }, 86 | { 87 | "name": "Sri Venkateswara College", 88 | "city": "Delhi", 89 | "rank": 14, 90 | "state": "Delhi" 91 | }, 92 | { 93 | "name": "Lady Irwin College", 94 | "city": "Delhi", 95 | "rank": 16, 96 | "state": "Delhi" 97 | }, 98 | { 99 | "name": "Madras Christian College", 100 | "city": "Chennai", 101 | "rank": 17, 102 | "state": "Tamil Nadu" 103 | }, 104 | { 105 | "name": "Acharya Narendra Dev College", 106 | "city": "New Delhi", 107 | "rank": 18, 108 | "state": "Delhi" 109 | }, 110 | { 111 | "name": "Ramakrishna Mission Residential College", 112 | "city": "Kolkata", 113 | "rank": 19, 114 | "state": "West Bengal" 115 | }, 116 | { 117 | "name": "PSG College of Arts and Science", 118 | "city": "Coimbatore", 119 | "rank": 20, 120 | "state": "Tamil Nadu" 121 | }, 122 | { 123 | "name": "Deen Dayal Upadhyaya College", 124 | "city": "New Delhi", 125 | "rank": 21, 126 | "state": "Delhi" 127 | }, 128 | { 129 | "name": "Thiagarajar College", 130 | "city": "Madurai", 131 | "rank": 22, 132 | "state": "Tamil Nadu" 133 | }, 134 | { 135 | "name": "Gargi College", 136 | "city": "Delhi", 137 | "rank": 23, 138 | "state": "Delhi" 139 | }, 140 | { 141 | "name": "University College, Thiruvananthapuram", 142 | "city": "Thiruvananthapuram", 143 | "rank": 24, 144 | "state": "Kerala" 145 | }, 146 | { 147 | "name": "Bhaskaracharya College of Applied Sciences", 148 | "city": "New Delhi", 149 | "rank": 25, 150 | "state": "Delhi" 151 | }, 152 | { 153 | "name": "St. Joseph`s College, Tiruchirappalli", 154 | "city": "Tiruchirappalli", 155 | "rank": 26, 156 | "state": "Tamil Nadu" 157 | }, 158 | { 159 | "name": "Rajagiri College of Social Sciences", 160 | "city": "Ernakulam", 161 | "rank": 27, 162 | "state": "Kerala" 163 | }, 164 | { 165 | "name": "Deshbandhu College", 166 | "city": "New Delhi", 167 | "rank": 28, 168 | "state": "Delhi" 169 | }, 170 | { 171 | "name": "Daulat Ram College", 172 | "city": "Delhi", 173 | "rank": 29, 174 | "state": "Delhi" 175 | }, 176 | { 177 | "name": "V.O. Chidambaram College", 178 | "city": "Tuticorin", 179 | "rank": 30, 180 | "state": "Tamil Nadu" 181 | }, 182 | { 183 | "name": "Kongunadu Arts & Science College", 184 | "city": "Coimbatore", 185 | "rank": 31, 186 | "state": "Tamil Nadu" 187 | }, 188 | { 189 | "name": "Government Arts College", 190 | "city": "Coimbatore", 191 | "rank": 32, 192 | "state": "Tamil Nadu" 193 | }, 194 | { 195 | "name": "Sri Krishna Arts and Science College", 196 | "city": "Coimbatore", 197 | "rank": 33, 198 | "state": "Tamil Nadu" 199 | }, 200 | { 201 | "name": "Maitreyi College", 202 | "city": "New Delhi", 203 | "rank": 34, 204 | "state": "Delhi" 205 | }, 206 | { 207 | "name": "Dyal Singh College", 208 | "city": "New Delhi", 209 | "rank": 35, 210 | "state": "Delhi" 211 | }, 212 | { 213 | "name": "Shaheed Rajguru College of Applied Sciences for Women", 214 | "city": "Delhi", 215 | "rank": 36, 216 | "state": "Delhi" 217 | }, 218 | { 219 | "name": "St. Teresa`s College, Ernakulam", 220 | "city": "Ernakulam", 221 | "rank": 37, 222 | "state": "Kerala" 223 | }, 224 | { 225 | "name": "Madras School of Social Work", 226 | "city": "Chennai", 227 | "rank": 38, 228 | "state": "Tamil Nadu" 229 | }, 230 | { 231 | "name": "Sri Guru Tegh Bahadur Khalsa College", 232 | "city": "Delhi", 233 | "rank": 39, 234 | "state": "Delhi" 235 | }, 236 | { 237 | "name": "Kamala Nehru College", 238 | "city": "Delhi", 239 | "rank": 40, 240 | "state": "Delhi" 241 | }, 242 | { 243 | "name": "Ramanujan College", 244 | "city": "New Delhi", 245 | "rank": 41, 246 | "state": "Delhi" 247 | }, 248 | { 249 | "name": "I.C.College of Home Science", 250 | "city": "Hisar", 251 | "rank": 42, 252 | "state": "Haryana" 253 | }, 254 | { 255 | "name": "Bishop Heber College", 256 | "city": "Tiruchirappalli", 257 | "rank": 43, 258 | "state": "Tamil Nadu" 259 | }, 260 | { 261 | "name": "Jesus & Mary College", 262 | "city": "New Delhi", 263 | "rank": 44, 264 | "state": "Delhi" 265 | }, 266 | { 267 | "name": "Pachhunga University College", 268 | "city": "Aizawl", 269 | "rank": 45, 270 | "state": "Mizoram" 271 | }, 272 | { 273 | "name": "Government Home Science College,Sector-10", 274 | "city": "Chandigarh", 275 | "rank": 46, 276 | "state": "Chandigarh" 277 | }, 278 | { 279 | "name": "Queen Mary`s College", 280 | "city": "Chennai", 281 | "rank": 47, 282 | "state": "Tamil Nadu" 283 | }, 284 | { 285 | "name": "Maharaja Agrasen College", 286 | "city": "Delhi", 287 | "rank": 48, 288 | "state": "Delhi" 289 | }, 290 | { 291 | "name": "Virudhunagar Hindu Nadars Senthikumara Nadar College", 292 | "city": "Virudhunagar", 293 | "rank": 49, 294 | "state": "Tamil Nadu" 295 | }, 296 | { 297 | "name": "Mar Ivanios College, Thiruvananthapuram", 298 | "city": "Thiruvananthapuram", 299 | "rank": 50, 300 | "state": "Kerala" 301 | }, 302 | { 303 | "name": "Shaheed Sukhdev College of Business Studies", 304 | "city": "New Delhi", 305 | "rank": 51, 306 | "state": "Delhi" 307 | }, 308 | { 309 | "name": "St. Xavier's College", 310 | "city": "Ahmedabad", 311 | "rank": 52, 312 | "state": "Gujarat" 313 | }, 314 | { 315 | "name": "Government College for Women, Thiruvananthapuram", 316 | "city": "Thiruvananthapuram", 317 | "rank": 53, 318 | "state": "Kerala" 319 | }, 320 | { 321 | "name": "Alagappa Government Arts College, Karaikudi", 322 | "city": "Karaikudi", 323 | "rank": 54, 324 | "state": "Tamil Nadu" 325 | }, 326 | { 327 | "name": "M S Ramaiah College of Arts, Science, and Commerce", 328 | "city": "Bengaluru", 329 | "rank": 55, 330 | "state": "Karnataka" 331 | }, 332 | { 333 | "name": "Mar Athanasius College", 334 | "city": "Kothamangalam", 335 | "rank": 56, 336 | "state": "Kerala" 337 | }, 338 | { 339 | "name": "Ferugusson College(Autonomous)", 340 | "city": "Pune", 341 | "rank": 57, 342 | "state": "Maharashtra" 343 | }, 344 | { 345 | "name": "Bishop Moore College, Mavelikkara, Alappuzha", 346 | "city": "Alappuzha", 347 | "rank": 58, 348 | "state": "Kerala" 349 | }, 350 | { 351 | "name": "Sacred Heart College", 352 | "city": "Ernakulam", 353 | "rank": 59, 354 | "state": "Kerala" 355 | }, 356 | { 357 | "name": "Maharaja`s College, Ernakulam", 358 | "city": "Ernakulam", 359 | "rank": 60, 360 | "state": "Kerala" 361 | }, 362 | { 363 | "name": "Indraprastha College for Women", 364 | "city": "Delhi", 365 | "rank": 61, 366 | "state": "Delhi" 367 | }, 368 | { 369 | "name": "S.B. College, Changanacherry", 370 | "city": "Kottayam", 371 | "rank": 62, 372 | "state": "Kerala" 373 | }, 374 | { 375 | "name": "ST. Thomas College, Thrissur", 376 | "city": "Thrissur", 377 | "rank": 63, 378 | "state": "Kerala" 379 | }, 380 | { 381 | "name": "Sri Guru Gobind Singh College of Commerce", 382 | "city": "Delhi", 383 | "rank": 63, 384 | "state": "Delhi" 385 | }, 386 | { 387 | "name": "Ethiraj College for Women", 388 | "city": "Chennai", 389 | "rank": 65, 390 | "state": "Tamil Nadu" 391 | }, 392 | { 393 | "name": "Ramjas College", 394 | "city": "Delhi", 395 | "rank": 66, 396 | "state": "Delhi" 397 | }, 398 | { 399 | "name": "Holy Cross College, Tiruchirappalli", 400 | "city": "Tiruchirappalli", 401 | "rank": 67, 402 | "state": "Tamil Nadu" 403 | }, 404 | { 405 | "name": "St.Xavier`s College, Palayamkottai", 406 | "city": "Palayamkottai", 407 | "rank": 68, 408 | "state": "Tamil Nadu" 409 | }, 410 | { 411 | "name": "College of Social Work Nirmala Niketan 38 New Marine Lines Mumbai - 400 020", 412 | "city": "Mumbai", 413 | "rank": 69, 414 | "state": "Maharashtra" 415 | }, 416 | { 417 | "name": "Sri Ramakrishna Mission Vidyalaya College of Arts and Science", 418 | "city": "Coimbatore", 419 | "rank": 70, 420 | "state": "Tamil Nadu" 421 | }, 422 | { 423 | "name": "Shivaji College", 424 | "city": "Delhi", 425 | "rank": 70, 426 | "state": "Delhi" 427 | }, 428 | { 429 | "name": "Women`s Christian College", 430 | "city": "Chennai", 431 | "rank": 72, 432 | "state": "Tamil Nadu" 433 | }, 434 | { 435 | "name": "Raja Narendra Lal Khan Women's College - Autonomous", 436 | "city": "Midnapore", 437 | "rank": 73, 438 | "state": "West Bengal" 439 | }, 440 | { 441 | "name": "Bethune College", 442 | "city": "Kolkata", 443 | "rank": 74, 444 | "state": "West Bengal" 445 | }, 446 | { 447 | "name": "Institute of Home Economics", 448 | "city": "NEW DELHI", 449 | "rank": 75, 450 | "state": "Delhi" 451 | }, 452 | { 453 | "name": "Stella Maris College for Women", 454 | "city": "Chennai", 455 | "rank": 76, 456 | "state": "Tamil Nadu" 457 | }, 458 | { 459 | "name": "Shyam Lal College", 460 | "city": "Delhi", 461 | "rank": 77, 462 | "state": "Delhi" 463 | }, 464 | { 465 | "name": "St. Joseph`s College, Devagiri", 466 | "city": "Kozhikode", 467 | "rank": 78, 468 | "state": "Kerala" 469 | }, 470 | { 471 | "name": "Jamal Mohamed College, Tiruchirappalli", 472 | "city": "Tiruchirappalli", 473 | "rank": 79, 474 | "state": "Tamil Nadu" 475 | }, 476 | { 477 | "name": "Kanchi Mamunivar Government Institute for Postgraduate Studies and Research", 478 | "city": "Puducherry", 479 | "rank": 80, 480 | "state": "Pondicherry" 481 | }, 482 | { 483 | "name": "CMS College Kottayam", 484 | "city": "Kottayam", 485 | "rank": 81, 486 | "state": "Kerala" 487 | }, 488 | { 489 | "name": "Sacred Heart College (Autonomous)", 490 | "city": "Tirupattur", 491 | "rank": 82, 492 | "state": "Tamil Nadu" 493 | }, 494 | { 495 | "name": "Ayya Nadar Janaki Ammal College", 496 | "city": "Sivakasi", 497 | "rank": 83, 498 | "state": "Tamil Nadu" 499 | }, 500 | { 501 | "name": "Keshav Mahavidyalya", 502 | "city": "Delhi", 503 | "rank": 84, 504 | "state": "Delhi" 505 | }, 506 | { 507 | "name": "Government Victoria College, Palakkad", 508 | "city": "Palakkad", 509 | "rank": 85, 510 | "state": "Kerala" 511 | }, 512 | { 513 | "name": "Lady Doak College", 514 | "city": "Madurai", 515 | "rank": 86, 516 | "state": "Tamil Nadu" 517 | }, 518 | { 519 | "name": "St. Xavier`s College", 520 | "city": "Mumbai", 521 | "rank": 87, 522 | "state": "Maharashtra" 523 | }, 524 | { 525 | "name": "Dr. N. G. P. Arts and Science College", 526 | "city": "Coimbatore", 527 | "rank": 88, 528 | "state": "Tamil Nadu" 529 | }, 530 | { 531 | "name": "Bishop Kurialacherry College For Women, Amalagiri P.O Kottayam", 532 | "city": "Kottayam", 533 | "rank": 89, 534 | "state": "Kerala" 535 | }, 536 | { 537 | "name": "Sri Ramakrishna College of Arts and Science", 538 | "city": "Coimbatore", 539 | "rank": 90, 540 | "state": "Tamil Nadu" 541 | }, 542 | { 543 | "name": "Nesamony Memorial Christian College, Kanyakumari Dist.", 544 | "city": "Marthandam", 545 | "rank": 91, 546 | "state": "Tamil Nadu" 547 | }, 548 | { 549 | "name": "Fatima Mata National College, Kollam", 550 | "city": "Kollam", 551 | "rank": 92, 552 | "state": "Kerala" 553 | }, 554 | { 555 | "name": "St. Joseph`s College of Commerce", 556 | "city": "Bengaluru", 557 | "rank": 93, 558 | "state": "Karnataka" 559 | }, 560 | { 561 | "name": "Andhra Loyola College", 562 | "city": "Vijayawada", 563 | "rank": 94, 564 | "state": "Andhra Pradesh" 565 | }, 566 | { 567 | "name": "Women`s Christian College, Nagercoil", 568 | "city": "Nagercoil", 569 | "rank": 94, 570 | "state": "Tamil Nadu" 571 | }, 572 | { 573 | "name": "Scott Christian College, Nagercoil", 574 | "city": "Nagercoil", 575 | "rank": 96, 576 | "state": "Tamil Nadu" 577 | }, 578 | { 579 | "name": "Midnapore College", 580 | "city": "Paschim Medinipur", 581 | "rank": 97, 582 | "state": "West Bengal" 583 | }, 584 | { 585 | "name": "Union Christian College", 586 | "city": "Ernakulam", 587 | "rank": 97, 588 | "state": "Kerala" 589 | }, 590 | { 591 | "name": "Mahatma Gandhi Government Arts College", 592 | "city": "Mahe", 593 | "rank": 99, 594 | "state": "Pondicherry" 595 | }, 596 | { 597 | "name": "Vellalar College for Women", 598 | "city": "Erode", 599 | "rank": 100, 600 | "state": "Tamil Nadu" 601 | } 602 | ] -------------------------------------------------------------------------------- /data/university_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Indian Institute of Science", 4 | "city": "Bengaluru", 5 | "rank": 1, 6 | "state": "Karnataka" 7 | }, 8 | { 9 | "name": "Jawaharlal Nehru University", 10 | "city": "New Delhi", 11 | "rank": 2, 12 | "state": "Delhi" 13 | }, 14 | { 15 | "name": "Jamia Millia Islamia, New Delhi", 16 | "city": "New Delhi", 17 | "rank": 3, 18 | "state": "Delhi" 19 | }, 20 | { 21 | "name": "Jadavpur University", 22 | "city": "Kolkata", 23 | "rank": 4, 24 | "state": "West Bengal" 25 | }, 26 | { 27 | "name": "Amrita Vishwa Vidyapeetham", 28 | "city": "Coimbatore", 29 | "rank": 5, 30 | "state": "Tamil Nadu" 31 | }, 32 | { 33 | "name": "Banaras Hindu University", 34 | "city": "Varanasi", 35 | "rank": 6, 36 | "state": "Uttar Pradesh" 37 | }, 38 | { 39 | "name": "Manipal Academy of Higher Education, Manipal", 40 | "city": "Manipal", 41 | "rank": 7, 42 | "state": "Karnataka" 43 | }, 44 | { 45 | "name": "Calcutta University", 46 | "city": "Kolkata", 47 | "rank": 8, 48 | "state": "West Bengal" 49 | }, 50 | { 51 | "name": "Vellore Institute of Technology", 52 | "city": "Vellore", 53 | "rank": 9, 54 | "state": "Tamil Nadu" 55 | }, 56 | { 57 | "name": "University of Hyderabad", 58 | "city": "Hyderabad", 59 | "rank": 10, 60 | "state": "Telangana" 61 | }, 62 | { 63 | "name": "Aligarh Muslim University", 64 | "city": "Aligarh", 65 | "rank": 11, 66 | "state": "Uttar Pradesh" 67 | }, 68 | { 69 | "name": "Savitribai Phule Pune University", 70 | "city": "Pune", 71 | "rank": 12, 72 | "state": "Maharashtra" 73 | }, 74 | { 75 | "name": "University of Delhi", 76 | "city": "Delhi", 77 | "rank": 13, 78 | "state": "Delhi" 79 | }, 80 | { 81 | "name": "Institute of Chemical Technology", 82 | "city": "Mumbai", 83 | "rank": 14, 84 | "state": "Maharashtra" 85 | }, 86 | { 87 | "name": "Bharathiar University", 88 | "city": "Coimbatore", 89 | "rank": 15, 90 | "state": "Tamil Nadu" 91 | }, 92 | { 93 | "name": "Siksha `O` Anusandhan", 94 | "city": "Bhubaneswar", 95 | "rank": 16, 96 | "state": "Odisha" 97 | }, 98 | { 99 | "name": "Homi Bhabha National Institute", 100 | "city": "Mumbai", 101 | "rank": 17, 102 | "state": "Maharashtra" 103 | }, 104 | { 105 | "name": "Birla Institute of Technology & Science - Pilani", 106 | "city": "Pilani", 107 | "rank": 18, 108 | "state": "Rajasthan" 109 | }, 110 | { 111 | "name": "S.R.M. Institute of Science and Technology", 112 | "city": "Chennai", 113 | "rank": 19, 114 | "state": "Tamil Nadu" 115 | }, 116 | { 117 | "name": "Kalinga Institute of Industrial Technology", 118 | "city": "Bhubaneswar", 119 | "rank": 20, 120 | "state": "Odisha" 121 | }, 122 | { 123 | "name": "Anna University", 124 | "city": "Chennai", 125 | "rank": 20, 126 | "state": "Tamil Nadu" 127 | }, 128 | { 129 | "name": "Osmania University", 130 | "city": "Hyderabad", 131 | "rank": 22, 132 | "state": "Telangana" 133 | }, 134 | { 135 | "name": "Amity University", 136 | "city": "Gautam Budh Nagar", 137 | "rank": 22, 138 | "state": "Uttar Pradesh" 139 | }, 140 | { 141 | "name": "Shanmugha Arts Science Technology & Research Academy", 142 | "city": "Thanjavur", 143 | "rank": 24, 144 | "state": "Tamil Nadu" 145 | }, 146 | { 147 | "name": "Panjab University", 148 | "city": "Chandigarh", 149 | "rank": 25, 150 | "state": "Chandigarh" 151 | }, 152 | { 153 | "name": "Saveetha Institute of Medical and Technical Sciences", 154 | "city": "Chennai", 155 | "rank": 26, 156 | "state": "Tamil Nadu" 157 | }, 158 | { 159 | "name": "Koneru Lakshmaiah Education Foundation University (K L College of Engineering)", 160 | "city": "Vaddeswaram", 161 | "rank": 27, 162 | "state": "Andhra Pradesh" 163 | }, 164 | { 165 | "name": "Alagappa University", 166 | "city": "Karaikudi", 167 | "rank": 28, 168 | "state": "Tamil Nadu" 169 | }, 170 | { 171 | "name": "Chandigarh University", 172 | "city": "Mohali", 173 | "rank": 29, 174 | "state": "Punjab" 175 | }, 176 | { 177 | "name": "Mahatma Gandhi University, Kottayam", 178 | "city": "Kottayam", 179 | "rank": 30, 180 | "state": "Kerala" 181 | }, 182 | { 183 | "name": "Thapar Institute of Engineering and Technology", 184 | "city": "Patiala", 185 | "rank": 31, 186 | "state": "Punjab" 187 | }, 188 | { 189 | "name": "Symbiosis International", 190 | "city": "Pune", 191 | "rank": 32, 192 | "state": "Maharashtra" 193 | }, 194 | { 195 | "name": "Mysore University", 196 | "city": "Mysuru", 197 | "rank": 33, 198 | "state": "Karnataka" 199 | }, 200 | { 201 | "name": "JSS Academy of Higher Education and Research", 202 | "city": "Mysuru", 203 | "rank": 34, 204 | "state": "Karnataka" 205 | }, 206 | { 207 | "name": "Kalasalingam Academy of Research and Education", 208 | "city": "Srivilliputtur", 209 | "rank": 35, 210 | "state": "Tamil Nadu" 211 | }, 212 | { 213 | "name": "Andhra University, Visakhapatnam", 214 | "city": "Visakhapatnam", 215 | "rank": 36, 216 | "state": "Andhra Pradesh" 217 | }, 218 | { 219 | "name": "Gauhati University", 220 | "city": "Guwahati", 221 | "rank": 36, 222 | "state": "Assam" 223 | }, 224 | { 225 | "name": "Delhi Technological University", 226 | "city": "New Delhi", 227 | "rank": 38, 228 | "state": "Delhi" 229 | }, 230 | { 231 | "name": "University of Madras", 232 | "city": "Chennai", 233 | "rank": 39, 234 | "state": "Tamil Nadu" 235 | }, 236 | { 237 | "name": "Kerala University", 238 | "city": "Thiruvananthapuram", 239 | "rank": 40, 240 | "state": "Kerala" 241 | }, 242 | { 243 | "name": "Cochin University of Science and Technology", 244 | "city": "Cochin", 245 | "rank": 41, 246 | "state": "Kerala" 247 | }, 248 | { 249 | "name": "Dr. D. Y. Patil Vidyapeeth", 250 | "city": "Pune", 251 | "rank": 41, 252 | "state": "Maharashtra" 253 | }, 254 | { 255 | "name": "Sathyabama Institute of Science and Technology", 256 | "city": "Chennai", 257 | "rank": 43, 258 | "state": "Tamil Nadu" 259 | }, 260 | { 261 | "name": "Guru Nanak Dev University", 262 | "city": "Amritsar", 263 | "rank": 44, 264 | "state": "Punjab" 265 | }, 266 | { 267 | "name": "Mumbai University", 268 | "city": "Mumbai", 269 | "rank": 45, 270 | "state": "Maharashtra" 271 | }, 272 | { 273 | "name": "Jamia Hamdard", 274 | "city": "New Delhi", 275 | "rank": 45, 276 | "state": "Delhi" 277 | }, 278 | { 279 | "name": "Lovely Professional University", 280 | "city": "Phagwara", 281 | "rank": 47, 282 | "state": "Punjab" 283 | }, 284 | { 285 | "name": "Sri Ramachandra Institute of Higher Education and Research", 286 | "city": "Chennai", 287 | "rank": 48, 288 | "state": "Tamil Nadu" 289 | }, 290 | { 291 | "name": "Banasthali Vidyapith", 292 | "city": "Banasthali", 293 | "rank": 49, 294 | "state": "Rajasthan" 295 | }, 296 | { 297 | "name": "King George`s Medical University", 298 | "city": "Lucknow", 299 | "rank": 50, 300 | "state": "Uttar Pradesh" 301 | }, 302 | { 303 | "name": "SVKM`s Narsee Monjee Institute of Management Studies", 304 | "city": "Mumbai", 305 | "rank": 51, 306 | "state": "Maharashtra" 307 | }, 308 | { 309 | "name": "Madurai Kamaraj University", 310 | "city": "Madurai", 311 | "rank": 52, 312 | "state": "Tamil Nadu" 313 | }, 314 | { 315 | "name": "University of Kashmir", 316 | "city": "Srinagar", 317 | "rank": 53, 318 | "state": "Jammu and Kashmir" 319 | }, 320 | { 321 | "name": "Datta Meghe Institute of Medical Sciences", 322 | "city": "Wardha", 323 | "rank": 54, 324 | "state": "Maharashtra" 325 | }, 326 | { 327 | "name": "Babasheb Bhimrao Ambedkar University", 328 | "city": "Lucknow", 329 | "rank": 55, 330 | "state": "Uttar Pradesh" 331 | }, 332 | { 333 | "name": "University of Jammu", 334 | "city": "Jammu", 335 | "rank": 56, 336 | "state": "Jammu and Kashmir" 337 | }, 338 | { 339 | "name": "Bharathidasan University", 340 | "city": "Tiruchirappalli", 341 | "rank": 57, 342 | "state": "Tamil Nadu" 343 | }, 344 | { 345 | "name": "Gujarat University", 346 | "city": "Ahmedabad", 347 | "rank": 58, 348 | "state": "Gujarat" 349 | }, 350 | { 351 | "name": "Tezpur University", 352 | "city": "Tezpur", 353 | "rank": 59, 354 | "state": "Assam" 355 | }, 356 | { 357 | "name": "Tata Institute of Social Sciences", 358 | "city": "Mumbai", 359 | "rank": 60, 360 | "state": "Maharashtra" 361 | }, 362 | { 363 | "name": "Shiv Nadar University", 364 | "city": "Dadri", 365 | "rank": 61, 366 | "state": "Uttar Pradesh" 367 | }, 368 | { 369 | "name": "Bharath Institute of Higher Education & Research", 370 | "city": "Chennai", 371 | "rank": 62, 372 | "state": "Tamil Nadu" 373 | }, 374 | { 375 | "name": "Periyar University", 376 | "city": "Salem", 377 | "rank": 63, 378 | "state": "Tamil Nadu" 379 | }, 380 | { 381 | "name": "Bangalore University", 382 | "city": "Bangalore", 383 | "rank": 64, 384 | "state": "Karnataka" 385 | }, 386 | { 387 | "name": "University of Petroleum and Energy Studies", 388 | "city": "Dehradun", 389 | "rank": 65, 390 | "state": "Uttarakhand" 391 | }, 392 | { 393 | "name": "North Eastern Hill University", 394 | "city": "Shillong", 395 | "rank": 66, 396 | "state": "Meghalaya" 397 | }, 398 | { 399 | "name": "Sri Venkateswara University", 400 | "city": "Tirupati", 401 | "rank": 67, 402 | "state": "Andhra Pradesh" 403 | }, 404 | { 405 | "name": "Pondicherry University", 406 | "city": "Puducherry", 407 | "rank": 68, 408 | "state": "Pondicherry" 409 | }, 410 | { 411 | "name": "Calicut University, Thenhipalem", 412 | "city": "Malappuram", 413 | "rank": 69, 414 | "state": "Kerala" 415 | }, 416 | { 417 | "name": "Sri Balaji Vidyapeeth Mahatma Gandhi Medical College Campus", 418 | "city": "Puducherry", 419 | "rank": 70, 420 | "state": "Pondicherry" 421 | }, 422 | { 423 | "name": "Christ University", 424 | "city": "Bengaluru", 425 | "rank": 71, 426 | "state": "Karnataka" 427 | }, 428 | { 429 | "name": "Visvesvaraya Technological University", 430 | "city": "Belgaum", 431 | "rank": 72, 432 | "state": "Karnataka" 433 | }, 434 | { 435 | "name": "Krishna Institute of Medical Sciences Deemed University, Karad", 436 | "city": "Karad", 437 | "rank": 73, 438 | "state": "Maharashtra" 439 | }, 440 | { 441 | "name": "Graphic Era University", 442 | "city": "Dehradun", 443 | "rank": 74, 444 | "state": "Uttarakhand" 445 | }, 446 | { 447 | "name": "NITTE", 448 | "city": "Mangaluru", 449 | "rank": 75, 450 | "state": "Karnataka" 451 | }, 452 | { 453 | "name": "Bharati Vidyapeeth", 454 | "city": "Pune", 455 | "rank": 76, 456 | "state": "Maharashtra" 457 | }, 458 | { 459 | "name": "Guru Gobind Singh Indraprastha University", 460 | "city": "New Delhi", 461 | "rank": 77, 462 | "state": "Delhi" 463 | }, 464 | { 465 | "name": "Mizoram University", 466 | "city": "Aizawl", 467 | "rank": 78, 468 | "state": "Mizoram" 469 | }, 470 | { 471 | "name": "Jain University, Bangalore", 472 | "city": "Bengluru", 473 | "rank": 79, 474 | "state": "Karnataka" 475 | }, 476 | { 477 | "name": "Manonmaniam Sundaranar University, Tirunelveli", 478 | "city": "Tirunelveli", 479 | "rank": 80, 480 | "state": "Tamil Nadu" 481 | }, 482 | { 483 | "name": "Padmashree Dr. D. Y. Patil Vidyapeeth, Mumbai", 484 | "city": "Mumbai", 485 | "rank": 81, 486 | "state": "Maharashtra" 487 | }, 488 | { 489 | "name": "Central University of Punjab", 490 | "city": "Bathinda", 491 | "rank": 81, 492 | "state": "Punjab" 493 | }, 494 | { 495 | "name": "Dr. Babasaheb Ambedkar Marathwada University, Aurangabad", 496 | "city": "Aurangabad", 497 | "rank": 83, 498 | "state": "Maharashtra" 499 | }, 500 | { 501 | "name": "Avinashilingam Institute for Home Science & Higher Education for Women", 502 | "city": "Coimbatore", 503 | "rank": 84, 504 | "state": "Tamil Nadu" 505 | }, 506 | { 507 | "name": "Central University of Tamil Nadu", 508 | "city": "Tiruvarur", 509 | "rank": 85, 510 | "state": "Tamil Nadu" 511 | }, 512 | { 513 | "name": "Kuvempu University", 514 | "city": "Shivamogga", 515 | "rank": 86, 516 | "state": "Karnataka" 517 | }, 518 | { 519 | "name": "The University of Burdwan", 520 | "city": "Bardhaman", 521 | "rank": 87, 522 | "state": "West Bengal" 523 | }, 524 | { 525 | "name": "Ashoka University", 526 | "city": "Sonepat", 527 | "rank": 88, 528 | "state": "Haryana" 529 | }, 530 | { 531 | "name": "KLE Academy of Higher Education and Research", 532 | "city": "Belagavi", 533 | "rank": 88, 534 | "state": "Karnataka" 535 | }, 536 | { 537 | "name": "Utkal University", 538 | "city": "Bhubaneswar", 539 | "rank": 88, 540 | "state": "Odisha" 541 | }, 542 | { 543 | "name": "Maharishi Markandeshwar", 544 | "city": "Ambala", 545 | "rank": 91, 546 | "state": "Haryana" 547 | }, 548 | { 549 | "name": "Gandhi Institute of Technology and Management ", 550 | "city": "Visakhapatnam", 551 | "rank": 92, 552 | "state": "Andhra Pradesh" 553 | }, 554 | { 555 | "name": "Chettinad Academy of Research and Education", 556 | "city": "Kelambakkam, Chengalpattu District", 557 | "rank": 93, 558 | "state": "Tamil Nadu" 559 | }, 560 | { 561 | "name": "Maharshi Dayanand University", 562 | "city": "Rohtak", 563 | "rank": 94, 564 | "state": "Haryana" 565 | }, 566 | { 567 | "name": "Vignan's Foundation for Science, Technology and Research", 568 | "city": "Guntur", 569 | "rank": 95, 570 | "state": "Andhra Pradesh" 571 | }, 572 | { 573 | "name": "Shoolini University of Biotechnology and Management Sciences", 574 | "city": "Solan", 575 | "rank": 96, 576 | "state": "Himachal Pradesh" 577 | }, 578 | { 579 | "name": "Yenepoya University", 580 | "city": "Mangaluru", 581 | "rank": 97, 582 | "state": "Karnataka" 583 | }, 584 | { 585 | "name": "Visva Bharati", 586 | "city": "Santiniketan", 587 | "rank": 98, 588 | "state": "West Bengal" 589 | }, 590 | { 591 | "name": "Birla Institute of Technology", 592 | "city": "Ranchi", 593 | "rank": 99, 594 | "state": "Jharkhand" 595 | }, 596 | { 597 | "name": "Dr. M. G. R. Educational and Research Institute", 598 | "city": "Chennai", 599 | "rank": 100, 600 | "state": "Tamil Nadu" 601 | } 602 | ] -------------------------------------------------------------------------------- /data/overall_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Indian Institute of Technology Madras", 4 | "city": "Chennai", 5 | "rank": 1, 6 | "state": "Tamil Nadu" 7 | }, 8 | { 9 | "name": "Indian Institute of Science", 10 | "city": "Bengaluru", 11 | "rank": 2, 12 | "state": "Karnataka" 13 | }, 14 | { 15 | "name": "Indian Institute of Technology, Bombay", 16 | "city": "Mumbai", 17 | "rank": 3, 18 | "state": "Maharashtra" 19 | }, 20 | { 21 | "name": "Indian Institute of Technology, Delhi", 22 | "city": "New Delhi", 23 | "rank": 4, 24 | "state": "Delhi" 25 | }, 26 | { 27 | "name": "Indian Institute of Technology Kanpur", 28 | "city": "Kanpur", 29 | "rank": 5, 30 | "state": "Uttar Pradesh" 31 | }, 32 | { 33 | "name": "Indian Institute of Technology, Kharagpur", 34 | "city": "Kharagpur", 35 | "rank": 6, 36 | "state": "West Bengal" 37 | }, 38 | { 39 | "name": "Indian Institute of Technology, Roorkee", 40 | "city": "Roorkee", 41 | "rank": 7, 42 | "state": "Uttarakhand" 43 | }, 44 | { 45 | "name": "Indian Institute of Technology Guwahati", 46 | "city": "Guwahati", 47 | "rank": 8, 48 | "state": "Assam" 49 | }, 50 | { 51 | "name": "All India Institute of Medical Sciences, Delhi", 52 | "city": "New Delhi", 53 | "rank": 9, 54 | "state": "Delhi" 55 | }, 56 | { 57 | "name": "Jawaharlal Nehru University", 58 | "city": "New Delhi", 59 | "rank": 10, 60 | "state": "Delhi" 61 | }, 62 | { 63 | "name": "Banaras Hindu University", 64 | "city": "Varanasi", 65 | "rank": 11, 66 | "state": "Uttar Pradesh" 67 | }, 68 | { 69 | "name": "Jadavpur University", 70 | "city": "Kolkata", 71 | "rank": 12, 72 | "state": "West Bengal" 73 | }, 74 | { 75 | "name": "Jamia Millia Islamia, New Delhi", 76 | "city": "New Delhi", 77 | "rank": 13, 78 | "state": "Delhi" 79 | }, 80 | { 81 | "name": "Indian Institute of Technology Hyderabad", 82 | "city": "Hyderabad", 83 | "rank": 14, 84 | "state": "Telangana" 85 | }, 86 | { 87 | "name": "Calcutta University", 88 | "city": "Kolkata", 89 | "rank": 15, 90 | "state": "West Bengal" 91 | }, 92 | { 93 | "name": "Amrita Vishwa Vidyapeetham", 94 | "city": "Coimbatore", 95 | "rank": 16, 96 | "state": "Tamil Nadu" 97 | }, 98 | { 99 | "name": "Manipal Academy of Higher Education, Manipal", 100 | "city": "Manipal", 101 | "rank": 17, 102 | "state": "Karnataka" 103 | }, 104 | { 105 | "name": "Vellore Institute of Technology", 106 | "city": "Vellore", 107 | "rank": 18, 108 | "state": "Tamil Nadu" 109 | }, 110 | { 111 | "name": "Aligarh Muslim University", 112 | "city": "Aligarh", 113 | "rank": 19, 114 | "state": "Uttar Pradesh" 115 | }, 116 | { 117 | "name": "University of Hyderabad", 118 | "city": "Hyderabad", 119 | "rank": 20, 120 | "state": "Telangana" 121 | }, 122 | { 123 | "name": "National Institute of Technology, Tiruchirappalli", 124 | "city": "Tiruchirappalli", 125 | "rank": 21, 126 | "state": "Tamil Nadu" 127 | }, 128 | { 129 | "name": "Anna University", 130 | "city": "Chennai", 131 | "rank": 22, 132 | "state": "Tamil Nadu" 133 | }, 134 | { 135 | "name": "University of Delhi", 136 | "city": "Delhi", 137 | "rank": 23, 138 | "state": "Delhi" 139 | }, 140 | { 141 | "name": "Bharathiar University", 142 | "city": "Coimbatore", 143 | "rank": 24, 144 | "state": "Tamil Nadu" 145 | }, 146 | { 147 | "name": "Savitribai Phule Pune University", 148 | "city": "Pune", 149 | "rank": 25, 150 | "state": "Maharashtra" 151 | }, 152 | { 153 | "name": "Indian Institute of Science Education & Research, Pune", 154 | "city": "Pune", 155 | "rank": 26, 156 | "state": "Maharashtra" 157 | }, 158 | { 159 | "name": "National Institute of Technology Karnataka, Surathkal ", 160 | "city": "Surathkal", 161 | "rank": 27, 162 | "state": "Karnataka" 163 | }, 164 | { 165 | "name": "Institute of Chemical Technology", 166 | "city": "Mumbai", 167 | "rank": 28, 168 | "state": "Maharashtra" 169 | }, 170 | { 171 | "name": "Indian Institute of Technology (Banaras Hindu University) Varanasi", 172 | "city": "Varanasi", 173 | "rank": 29, 174 | "state": "Uttar Pradesh" 175 | }, 176 | { 177 | "name": "Siksha `O` Anusandhan", 178 | "city": "Bhubaneswar", 179 | "rank": 30, 180 | "state": "Odisha" 181 | }, 182 | { 183 | "name": "Indian Institute of Technology Indore", 184 | "city": "Indore", 185 | "rank": 31, 186 | "state": "Madhya Pradesh" 187 | }, 188 | { 189 | "name": "Birla Institute of Technology & Science - Pilani", 190 | "city": "Pilani", 191 | "rank": 32, 192 | "state": "Rajasthan" 193 | }, 194 | { 195 | "name": "Homi Bhabha National Institute", 196 | "city": "Mumbai", 197 | "rank": 33, 198 | "state": "Maharashtra" 199 | }, 200 | { 201 | "name": "Kalinga Institute of Industrial Technology", 202 | "city": "Bhubaneswar", 203 | "rank": 34, 204 | "state": "Odisha" 205 | }, 206 | { 207 | "name": "Indian Institute of Technology Ropar", 208 | "city": "Rupnagar", 209 | "rank": 35, 210 | "state": "Punjab" 211 | }, 212 | { 213 | "name": "S.R.M. Institute of Science and Technology", 214 | "city": "Chennai", 215 | "rank": 36, 216 | "state": "Tamil Nadu" 217 | }, 218 | { 219 | "name": "Indian Institute of Technology, Gandhinagar", 220 | "city": "Gandhinagar", 221 | "rank": 37, 222 | "state": "Gujarat" 223 | }, 224 | { 225 | "name": "Indian Institute of Technology (Indian School of Mines)", 226 | "city": "Dhanbad", 227 | "rank": 38, 228 | "state": "Jharkhand" 229 | }, 230 | { 231 | "name": "National Institute of Technology Rourkela", 232 | "city": "Rourkela", 233 | "rank": 39, 234 | "state": "Odisha" 235 | }, 236 | { 237 | "name": "Indian Institute of Science Education & Research, Kolkata", 238 | "city": "Mohanpur", 239 | "rank": 40, 240 | "state": "West Bengal" 241 | }, 242 | { 243 | "name": "Panjab University", 244 | "city": "Chandigarh", 245 | "rank": 41, 246 | "state": "Chandigarh" 247 | }, 248 | { 249 | "name": "Amity University", 250 | "city": "Gautam Budh Nagar", 251 | "rank": 42, 252 | "state": "Uttar Pradesh" 253 | }, 254 | { 255 | "name": "Indian Institute of Technology, Mandi", 256 | "city": "Mandi", 257 | "rank": 43, 258 | "state": "Himachal Pradesh" 259 | }, 260 | { 261 | "name": "Saveetha Institute of Medical and Technical Sciences", 262 | "city": "Chennai", 263 | "rank": 44, 264 | "state": "Tamil Nadu" 265 | }, 266 | { 267 | "name": "National Institute of Technology Warangal", 268 | "city": "Warangal", 269 | "rank": 45, 270 | "state": "Telangana" 271 | }, 272 | { 273 | "name": "Osmania University", 274 | "city": "Hyderabad", 275 | "rank": 46, 276 | "state": "Telangana" 277 | }, 278 | { 279 | "name": "Indian Institute of Science Education & Research, Mohali", 280 | "city": "Mohali", 281 | "rank": 47, 282 | "state": "Punjab" 283 | }, 284 | { 285 | "name": "Chandigarh University", 286 | "city": "Mohali", 287 | "rank": 48, 288 | "state": "Punjab" 289 | }, 290 | { 291 | "name": "Shanmugha Arts Science Technology & Research Academy", 292 | "city": "Thanjavur", 293 | "rank": 49, 294 | "state": "Tamil Nadu" 295 | }, 296 | { 297 | "name": "Kalasalingam Academy of Research and Education", 298 | "city": "Srivilliputtur", 299 | "rank": 50, 300 | "state": "Tamil Nadu" 301 | }, 302 | { 303 | "name": "Mahatma Gandhi University, Kottayam", 304 | "city": "Kottayam", 305 | "rank": 51, 306 | "state": "Kerala" 307 | }, 308 | { 309 | "name": "Kerala University", 310 | "city": "Thiruvananthapuram", 311 | "rank": 52, 312 | "state": "Kerala" 313 | }, 314 | { 315 | "name": "Alagappa University", 316 | "city": "Karaikudi", 317 | "rank": 53, 318 | "state": "Tamil Nadu" 319 | }, 320 | { 321 | "name": "Jawaharlal Institute of Post Graduate Medical Education & Research", 322 | "city": "Puducherry", 323 | "rank": 54, 324 | "state": "Pondicherry" 325 | }, 326 | { 327 | "name": "Koneru Lakshmaiah Education Foundation University (K L College of Engineering)", 328 | "city": "Vaddeswaram", 329 | "rank": 54, 330 | "state": "Andhra Pradesh" 331 | }, 332 | { 333 | "name": "Mysore University", 334 | "city": "Mysuru", 335 | "rank": 54, 336 | "state": "Karnataka" 337 | }, 338 | { 339 | "name": "Thapar Institute of Engineering and Technology", 340 | "city": "Patiala", 341 | "rank": 57, 342 | "state": "Punjab" 343 | }, 344 | { 345 | "name": "Lovely Professional University", 346 | "city": "Phagwara", 347 | "rank": 58, 348 | "state": "Punjab" 349 | }, 350 | { 351 | "name": "Indian Institute of Technology, Patna", 352 | "city": "Patna", 353 | "rank": 59, 354 | "state": "Bihar" 355 | }, 356 | { 357 | "name": "JSS Academy of Higher Education and Research", 358 | "city": "Mysuru", 359 | "rank": 60, 360 | "state": "Karnataka" 361 | }, 362 | { 363 | "name": "Indian Institute of Science Education & Research Bhopal", 364 | "city": "Bhopal", 365 | "rank": 61, 366 | "state": "Madhya Pradesh" 367 | }, 368 | { 369 | "name": "Symbiosis International", 370 | "city": "Pune", 371 | "rank": 62, 372 | "state": "Maharashtra" 373 | }, 374 | { 375 | "name": "Delhi Technological University", 376 | "city": "New Delhi", 377 | "rank": 63, 378 | "state": "Delhi" 379 | }, 380 | { 381 | "name": "Gauhati University", 382 | "city": "Guwahati", 383 | "rank": 64, 384 | "state": "Assam" 385 | }, 386 | { 387 | "name": "Indian Institute of Technology Bhubaneswar", 388 | "city": "Bhubaneswar", 389 | "rank": 65, 390 | "state": "Odisha" 391 | }, 392 | { 393 | "name": "Indian Institute of Engineering Science and Technology, Shibpur", 394 | "city": "Howrah", 395 | "rank": 66, 396 | "state": "West Bengal" 397 | }, 398 | { 399 | "name": "Sathyabama Institute of Science and Technology", 400 | "city": "Chennai", 401 | "rank": 67, 402 | "state": "Tamil Nadu" 403 | }, 404 | { 405 | "name": "Visvesvaraya National Institute of Technology, Nagpur", 406 | "city": "Nagpur", 407 | "rank": 68, 408 | "state": "Maharashtra" 409 | }, 410 | { 411 | "name": "Cochin University of Science and Technology", 412 | "city": "Cochin", 413 | "rank": 69, 414 | "state": "Kerala" 415 | }, 416 | { 417 | "name": "University of Madras", 418 | "city": "Chennai", 419 | "rank": 70, 420 | "state": "Tamil Nadu" 421 | }, 422 | { 423 | "name": "Andhra University, Visakhapatnam", 424 | "city": "Visakhapatnam", 425 | "rank": 71, 426 | "state": "Andhra Pradesh" 427 | }, 428 | { 429 | "name": "National Institute of Technology Durgapur", 430 | "city": "Durgapur", 431 | "rank": 72, 432 | "state": "West Bengal" 433 | }, 434 | { 435 | "name": "Gujarat University", 436 | "city": "Ahmedabad", 437 | "rank": 73, 438 | "state": "Gujarat" 439 | }, 440 | { 441 | "name": "Jamia Hamdard", 442 | "city": "New Delhi", 443 | "rank": 74, 444 | "state": "Delhi" 445 | }, 446 | { 447 | "name": "King George`s Medical University", 448 | "city": "Lucknow", 449 | "rank": 75, 450 | "state": "Uttar Pradesh" 451 | }, 452 | { 453 | "name": "Dr. D. Y. Patil Vidyapeeth", 454 | "city": "Pune", 455 | "rank": 76, 456 | "state": "Maharashtra" 457 | }, 458 | { 459 | "name": "National Institute of Technology, Silchar", 460 | "city": "Silchar", 461 | "rank": 76, 462 | "state": "Assam" 463 | }, 464 | { 465 | "name": "Babasheb Bhimrao Ambedkar University", 466 | "city": "Lucknow", 467 | "rank": 78, 468 | "state": "Uttar Pradesh" 469 | }, 470 | { 471 | "name": "Indian Institute of Management Kozhikode", 472 | "city": "Kozhikode", 473 | "rank": 79, 474 | "state": "Kerala" 475 | }, 476 | { 477 | "name": "Guru Nanak Dev University", 478 | "city": "Amritsar", 479 | "rank": 80, 480 | "state": "Punjab" 481 | }, 482 | { 483 | "name": "Mumbai University", 484 | "city": "Mumbai", 485 | "rank": 81, 486 | "state": "Maharashtra" 487 | }, 488 | { 489 | "name": "Bharathidasan University", 490 | "city": "Tiruchirappalli", 491 | "rank": 82, 492 | "state": "Tamil Nadu" 493 | }, 494 | { 495 | "name": "Sri Ramachandra Institute of Higher Education and Research", 496 | "city": "Chennai", 497 | "rank": 83, 498 | "state": "Tamil Nadu" 499 | }, 500 | { 501 | "name": "University of Kashmir", 502 | "city": "Srinagar", 503 | "rank": 84, 504 | "state": "Jammu and Kashmir" 505 | }, 506 | { 507 | "name": "Dr. B R Ambedkar National Institute of Technology, Jalandhar", 508 | "city": "Jalandhar", 509 | "rank": 85, 510 | "state": "Punjab" 511 | }, 512 | { 513 | "name": "All India Institute of Medical Sciences Jodhpur", 514 | "city": "Jodhpur", 515 | "rank": 86, 516 | "state": "Rajasthan" 517 | }, 518 | { 519 | "name": "Banasthali Vidyapith", 520 | "city": "Banasthali", 521 | "rank": 87, 522 | "state": "Rajasthan" 523 | }, 524 | { 525 | "name": "Madurai Kamaraj University", 526 | "city": "Madurai", 527 | "rank": 88, 528 | "state": "Tamil Nadu" 529 | }, 530 | { 531 | "name": "SVKM`s Narsee Monjee Institute of Management Studies", 532 | "city": "Mumbai", 533 | "rank": 89, 534 | "state": "Maharashtra" 535 | }, 536 | { 537 | "name": "Tezpur University", 538 | "city": "Tezpur", 539 | "rank": 90, 540 | "state": "Assam" 541 | }, 542 | { 543 | "name": "Malaviya National Institute of Technology", 544 | "city": "Jaipur", 545 | "rank": 91, 546 | "state": "Rajasthan" 547 | }, 548 | { 549 | "name": "Datta Meghe Institute of Medical Sciences", 550 | "city": "Wardha", 551 | "rank": 92, 552 | "state": "Maharashtra" 553 | }, 554 | { 555 | "name": "University of Jammu", 556 | "city": "Jammu", 557 | "rank": 93, 558 | "state": "Jammu and Kashmir" 559 | }, 560 | { 561 | "name": "Shiv Nadar University", 562 | "city": "Dadri", 563 | "rank": 94, 564 | "state": "Uttar Pradesh" 565 | }, 566 | { 567 | "name": "Bharath Institute of Higher Education & Research", 568 | "city": "Chennai", 569 | "rank": 95, 570 | "state": "Tamil Nadu" 571 | }, 572 | { 573 | "name": "Sri Sivasubramaniya Nadar College of Engineering", 574 | "city": "Kancheepuram", 575 | "rank": 96, 576 | "state": "Tamil Nadu" 577 | }, 578 | { 579 | "name": "University of Petroleum and Energy Studies", 580 | "city": "Dehradun", 581 | "rank": 97, 582 | "state": "Uttarakhand" 583 | }, 584 | { 585 | "name": "Bangalore University", 586 | "city": "Bangalore", 587 | "rank": 98, 588 | "state": "Karnataka" 589 | }, 590 | { 591 | "name": "Tata Institute of Social Sciences", 592 | "city": "Mumbai", 593 | "rank": 99, 594 | "state": "Maharashtra" 595 | }, 596 | { 597 | "name": "Visvesvaraya Technological University", 598 | "city": "Belgaum", 599 | "rank": 100, 600 | "state": "Karnataka" 601 | } 602 | ] -------------------------------------------------------------------------------- /data/management_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Indian Institute of Management Ahmedabad", 4 | "city": "Ahmedabad", 5 | "rank": 1, 6 | "state": "Gujarat" 7 | }, 8 | { 9 | "name": "Indian Institute of Management Bangalore", 10 | "city": "Bengaluru", 11 | "rank": 2, 12 | "state": "Karnataka" 13 | }, 14 | { 15 | "name": "Indian Institute of Management Calcutta", 16 | "city": "Kolkata", 17 | "rank": 3, 18 | "state": "West Bengal" 19 | }, 20 | { 21 | "name": "Indian Institute of Technology, Delhi", 22 | "city": "New Delhi", 23 | "rank": 4, 24 | "state": "Delhi" 25 | }, 26 | { 27 | "name": "Indian Institute of Management Kozhikode", 28 | "city": "Kozhikode", 29 | "rank": 5, 30 | "state": "Kerala" 31 | }, 32 | { 33 | "name": "Indian Institute of Management Lucknow", 34 | "city": "Lucknow", 35 | "rank": 6, 36 | "state": "Uttar Pradesh" 37 | }, 38 | { 39 | "name": "Indian Institute of Management Indore", 40 | "city": "Indore", 41 | "rank": 7, 42 | "state": "Madhya Pradesh" 43 | }, 44 | { 45 | "name": "XLRI - Xavier School of Management", 46 | "city": "Jamshedpur", 47 | "rank": 8, 48 | "state": "Jharkhand" 49 | }, 50 | { 51 | "name": "National Institute of Industrial Engineering, Mumbai", 52 | "city": "Mumbai", 53 | "rank": 9, 54 | "state": "Maharashtra" 55 | }, 56 | { 57 | "name": "Indian Institute of Technology Madras", 58 | "city": "Chennai", 59 | "rank": 10, 60 | "state": "Tamil Nadu" 61 | }, 62 | { 63 | "name": "Indian Institute of Technology, Bombay", 64 | "city": "Mumbai", 65 | "rank": 11, 66 | "state": "Maharashtra" 67 | }, 68 | { 69 | "name": "Indian Institute of Technology, Kharagpur", 70 | "city": "Kharagpur", 71 | "rank": 12, 72 | "state": "West Bengal" 73 | }, 74 | { 75 | "name": "Management Development Institute", 76 | "city": "Gurugram", 77 | "rank": 13, 78 | "state": "Haryana" 79 | }, 80 | { 81 | "name": "Indian Institute of Management Raipur", 82 | "city": "Raipur", 83 | "rank": 14, 84 | "state": "Chhattisgarh" 85 | }, 86 | { 87 | "name": "Indian Institute of Management Ranchi", 88 | "city": "Ranchi", 89 | "rank": 15, 90 | "state": "Jharkhand" 91 | }, 92 | { 93 | "name": "Indian Institute of Management Rohtak", 94 | "city": "Rohtak", 95 | "rank": 16, 96 | "state": "Haryana" 97 | }, 98 | { 99 | "name": "Symbiosis Institute of Business Management", 100 | "city": "Pune", 101 | "rank": 17, 102 | "state": "Maharashtra" 103 | }, 104 | { 105 | "name": "Indian Institute of Management Tiruchirappalli", 106 | "city": "Tiruchirappalli", 107 | "rank": 18, 108 | "state": "Tamil Nadu" 109 | }, 110 | { 111 | "name": "Indian Institute of Technology, Roorkee", 112 | "city": "Roorkee", 113 | "rank": 19, 114 | "state": "Uttarakhand" 115 | }, 116 | { 117 | "name": "Indian Institute of Technology Kanpur", 118 | "city": "Kanpur", 119 | "rank": 20, 120 | "state": "Uttar Pradesh" 121 | }, 122 | { 123 | "name": "S. P. Jain Institute of Management & Research", 124 | "city": "Mumbai", 125 | "rank": 21, 126 | "state": "Maharashtra" 127 | }, 128 | { 129 | "name": "Indian Institute of Management Udaipur", 130 | "city": "Udaipur", 131 | "rank": 22, 132 | "state": "Rajasthan" 133 | }, 134 | { 135 | "name": "Indian Institute of Management Kashipur", 136 | "city": "Kashipur", 137 | "rank": 23, 138 | "state": "Uttarakhand" 139 | }, 140 | { 141 | "name": "Indian Institute of Foreign Trade", 142 | "city": "New Delhi", 143 | "rank": 24, 144 | "state": "Delhi" 145 | }, 146 | { 147 | "name": "SVKM`s Narsee Monjee Institute of Management Studies", 148 | "city": "Mumbai", 149 | "rank": 25, 150 | "state": "Maharashtra" 151 | }, 152 | { 153 | "name": "Indian Institute of Management Shillong", 154 | "city": "Shillong", 155 | "rank": 26, 156 | "state": "Meghalaya" 157 | }, 158 | { 159 | "name": "Amrita Vishwa Vidyapeetham", 160 | "city": "Coimbatore", 161 | "rank": 27, 162 | "state": "Tamil Nadu" 163 | }, 164 | { 165 | "name": "Amity University", 166 | "city": "Gautam Budh Nagar", 167 | "rank": 28, 168 | "state": "Uttar Pradesh" 169 | }, 170 | { 171 | "name": "Jamia Millia Islamia, New Delhi", 172 | "city": "New Delhi", 173 | "rank": 29, 174 | "state": "Delhi" 175 | }, 176 | { 177 | "name": "International Management Institute", 178 | "city": "New Delhi", 179 | "rank": 30, 180 | "state": "Delhi" 181 | }, 182 | { 183 | "name": "Great Lakes Institute of Management", 184 | "city": "Chennai", 185 | "rank": 31, 186 | "state": "Tamil Nadu" 187 | }, 188 | { 189 | "name": "ICFAI Foundation for Higher Education, Hyderabad", 190 | "city": "Hyderabad", 191 | "rank": 32, 192 | "state": "Telangana" 193 | }, 194 | { 195 | "name": "Indian Institute of Management Visakhapatnam", 196 | "city": "Visakhapatnam", 197 | "rank": 33, 198 | "state": "Andhra Pradesh" 199 | }, 200 | { 201 | "name": "Lovely Professional University", 202 | "city": "Phagwara", 203 | "rank": 34, 204 | "state": "Punjab" 205 | }, 206 | { 207 | "name": "XIM University", 208 | "city": "Bhubaneswar", 209 | "rank": 35, 210 | "state": "Odisha" 211 | }, 212 | { 213 | "name": "GOA Institute of Management", 214 | "city": "Sanquelim", 215 | "rank": 36, 216 | "state": "Goa" 217 | }, 218 | { 219 | "name": "Indian Institute of Management Jammu (IIMJ) ", 220 | "city": "Jammu", 221 | "rank": 36, 222 | "state": "Jammu and Kashmir" 223 | }, 224 | { 225 | "name": "T. A. Pai Management Institute Manipal", 226 | "city": "Manipal", 227 | "rank": 38, 228 | "state": "Karnataka" 229 | }, 230 | { 231 | "name": "National Institute of Technology, Tiruchirappalli", 232 | "city": "Tiruchirappalli", 233 | "rank": 39, 234 | "state": "Tamil Nadu" 235 | }, 236 | { 237 | "name": "Chandigarh University", 238 | "city": "Mohali", 239 | "rank": 40, 240 | "state": "Punjab" 241 | }, 242 | { 243 | "name": "University of Petroleum and Energy Studies", 244 | "city": "Dehradun", 245 | "rank": 41, 246 | "state": "Uttarakhand" 247 | }, 248 | { 249 | "name": "MICA", 250 | "city": "Ahmedabad", 251 | "rank": 42, 252 | "state": "Gujarat" 253 | }, 254 | { 255 | "name": "Indian Institute of Management", 256 | "city": "Nagpur", 257 | "rank": 43, 258 | "state": "Maharashtra" 259 | }, 260 | { 261 | "name": "Institute of Management Technology, Ghaziabad", 262 | "city": "Ghaziabad", 263 | "rank": 44, 264 | "state": "Uttar Pradesh" 265 | }, 266 | { 267 | "name": "Nirma University", 268 | "city": "Ahmedabad", 269 | "rank": 45, 270 | "state": "Gujarat" 271 | }, 272 | { 273 | "name": "Indian Institute of Technology (Indian School of Mines)", 274 | "city": "Dhanbad", 275 | "rank": 46, 276 | "state": "Jharkhand" 277 | }, 278 | { 279 | "name": "Koneru Lakshmaiah Education Foundation University (K L College of Engineering)", 280 | "city": "Vaddeswaram", 281 | "rank": 47, 282 | "state": "Andhra Pradesh" 283 | }, 284 | { 285 | "name": "Kalinga Institute of Industrial Technology", 286 | "city": "Bhubaneswar", 287 | "rank": 48, 288 | "state": "Odisha" 289 | }, 290 | { 291 | "name": "Anna University", 292 | "city": "Chennai", 293 | "rank": 49, 294 | "state": "Tamil Nadu" 295 | }, 296 | { 297 | "name": "Banaras Hindu University", 298 | "city": "Varanasi", 299 | "rank": 50, 300 | "state": "Uttar Pradesh" 301 | }, 302 | { 303 | "name": "Jaipuria Institute of Management", 304 | "city": "Noida", 305 | "rank": 51, 306 | "state": "Uttar Pradesh" 307 | }, 308 | { 309 | "name": "Great Lakes Institute of Management,Gurgaon", 310 | "city": "Gurgaon", 311 | "rank": 52, 312 | "state": "Haryana" 313 | }, 314 | { 315 | "name": "Thapar Institute of Engineering and Technology", 316 | "city": "Patiala", 317 | "rank": 53, 318 | "state": "Punjab" 319 | }, 320 | { 321 | "name": "BML Munjal University", 322 | "city": "Gurgaon", 323 | "rank": 54, 324 | "state": "Haryana" 325 | }, 326 | { 327 | "name": "Indian Institute of Management, Amritsar", 328 | "city": "Amritsar", 329 | "rank": 55, 330 | "state": "Punjab" 331 | }, 332 | { 333 | "name": "Birla Institute of Management Technology", 334 | "city": "Greater Noida", 335 | "rank": 56, 336 | "state": "Uttar Pradesh" 337 | }, 338 | { 339 | "name": "Aligarh Muslim University", 340 | "city": "Aligarh", 341 | "rank": 57, 342 | "state": "Uttar Pradesh" 343 | }, 344 | { 345 | "name": "Institute of Rural Management Anand", 346 | "city": "Anand", 347 | "rank": 58, 348 | "state": "Gujarat" 349 | }, 350 | { 351 | "name": "Intenational Management Institute, Kolkata", 352 | "city": "Kolkata", 353 | "rank": 59, 354 | "state": "West Bengal" 355 | }, 356 | { 357 | "name": "Fore School of Management", 358 | "city": "New Delhi", 359 | "rank": 60, 360 | "state": "Delhi" 361 | }, 362 | { 363 | "name": "Krea University", 364 | "city": "Sri City, Chittoor", 365 | "rank": 60, 366 | "state": "Andhra Pradesh" 367 | }, 368 | { 369 | "name": "Guru Gobind Singh Indraprastha University", 370 | "city": "New Delhi", 371 | "rank": 62, 372 | "state": "Delhi" 373 | }, 374 | { 375 | "name": "PSG College of Technology", 376 | "city": "Coimbatore", 377 | "rank": 63, 378 | "state": "Tamil Nadu" 379 | }, 380 | { 381 | "name": "Atal Bihari Vajpayee Indian Institute of Information Technology and Management", 382 | "city": "Gwalior", 383 | "rank": 64, 384 | "state": "Madhya Pradesh" 385 | }, 386 | { 387 | "name": "Graphic Era University", 388 | "city": "Dehradun", 389 | "rank": 65, 390 | "state": "Uttarakhand" 391 | }, 392 | { 393 | "name": "Indian Institute of Management Sambalpur", 394 | "city": "Sambalpur", 395 | "rank": 66, 396 | "state": "Odisha" 397 | }, 398 | { 399 | "name": "Panjab University", 400 | "city": "Chandigarh", 401 | "rank": 67, 402 | "state": "Chandigarh" 403 | }, 404 | { 405 | "name": "Principal L N Welingkar Institute of Management Development and Research", 406 | "city": "Mumbai", 407 | "rank": 68, 408 | "state": "Maharashtra" 409 | }, 410 | { 411 | "name": "Indian Institute of Management Sirmaur", 412 | "city": "Sirmaur", 413 | "rank": 69, 414 | "state": "Himachal Pradesh" 415 | }, 416 | { 417 | "name": "International Management Institute, Bhubaneswar", 418 | "city": "Bhubaneswar", 419 | "rank": 70, 420 | "state": "Odisha" 421 | }, 422 | { 423 | "name": "K.J.Somaiya Institute of Management", 424 | "city": "Mumbai", 425 | "rank": 71, 426 | "state": "Maharashtra" 427 | }, 428 | { 429 | "name": "Christ University", 430 | "city": "Bengaluru", 431 | "rank": 72, 432 | "state": "Karnataka" 433 | }, 434 | { 435 | "name": "Indian Institute of Management Bodh Gaya", 436 | "city": "Gaya", 437 | "rank": 73, 438 | "state": "Bihar" 439 | }, 440 | { 441 | "name": "Rajagiri Business School", 442 | "city": "Cochin", 443 | "rank": 74, 444 | "state": "Kerala" 445 | }, 446 | { 447 | "name": "Institute of Management Technology", 448 | "city": "Hyderabad", 449 | "rank": 75, 450 | "state": "Telangana" 451 | }, 452 | { 453 | "name": "Visvesvaraya Technological University", 454 | "city": "Belgaum", 455 | "rank": 76, 456 | "state": "Karnataka" 457 | }, 458 | { 459 | "name": "Saveetha Institute of Medical and Technical Sciences", 460 | "city": "Chennai", 461 | "rank": 77, 462 | "state": "Tamil Nadu" 463 | }, 464 | { 465 | "name": "Birla Institute of Technology", 466 | "city": "Ranchi", 467 | "rank": 78, 468 | "state": "Jharkhand" 469 | }, 470 | { 471 | "name": "Jaipuria Institute of Management, Lucknow", 472 | "city": "Lucknow", 473 | "rank": 78, 474 | "state": "Uttar Pradesh" 475 | }, 476 | { 477 | "name": "Chitkara University", 478 | "city": "Rajpura", 479 | "rank": 80, 480 | "state": "Punjab" 481 | }, 482 | { 483 | "name": "Jaipuria Institute of Management", 484 | "city": "Jaipur", 485 | "rank": 81, 486 | "state": "Rajasthan" 487 | }, 488 | { 489 | "name": "Jagan Institute of Management Studies", 490 | "city": "Delhi", 491 | "rank": 82, 492 | "state": "Delhi" 493 | }, 494 | { 495 | "name": "Bharathidasan Institute of Management", 496 | "city": "Tiruchirappalli", 497 | "rank": 83, 498 | "state": "Tamil Nadu" 499 | }, 500 | { 501 | "name": "National Institute of Technology, Calicut", 502 | "city": "Kozhikode", 503 | "rank": 84, 504 | "state": "Kerala" 505 | }, 506 | { 507 | "name": "Manipal University, Jaipur", 508 | "city": "Jaipur", 509 | "rank": 85, 510 | "state": "Rajasthan" 511 | }, 512 | { 513 | "name": "Loyola Institute of Business Administration", 514 | "city": "Chennai", 515 | "rank": 86, 516 | "state": "Tamil Nadu" 517 | }, 518 | { 519 | "name": "Babasheb Bhimrao Ambedkar University", 520 | "city": "Lucknow", 521 | "rank": 87, 522 | "state": "Uttar Pradesh" 523 | }, 524 | { 525 | "name": "Dayalbagh Educational Institute", 526 | "city": "Agra", 527 | "rank": 88, 528 | "state": "Uttar Pradesh" 529 | }, 530 | { 531 | "name": "Pandit Deendayal Energy University", 532 | "city": "Gandhinagar", 533 | "rank": 89, 534 | "state": "Gujarat" 535 | }, 536 | { 537 | "name": "IIHMR University", 538 | "city": "Jaipur", 539 | "rank": 90, 540 | "state": "Rajasthan" 541 | }, 542 | { 543 | "name": "Pune Institute of Business Management", 544 | "city": "Pune", 545 | "rank": 91, 546 | "state": "Maharashtra" 547 | }, 548 | { 549 | "name": "Amity University Haryana, Gurgaon", 550 | "city": "Gurugram, Haryana", 551 | "rank": 92, 552 | "state": "Haryana" 553 | }, 554 | { 555 | "name": "Galgotias University", 556 | "city": "Gautam Budh Nagar", 557 | "rank": 93, 558 | "state": "Uttar Pradesh" 559 | }, 560 | { 561 | "name": "University of Hyderabad", 562 | "city": "Hyderabad", 563 | "rank": 94, 564 | "state": "Telangana" 565 | }, 566 | { 567 | "name": "Institute of Management Technology, Nagpur", 568 | "city": "Nagpur", 569 | "rank": 95, 570 | "state": "Maharashtra" 571 | }, 572 | { 573 | "name": "Jain University, Bangalore", 574 | "city": "Bengluru", 575 | "rank": 96, 576 | "state": "Karnataka" 577 | }, 578 | { 579 | "name": "Thiagarajar School of Management", 580 | "city": "Madurai", 581 | "rank": 96, 582 | "state": "Tamil Nadu" 583 | }, 584 | { 585 | "name": "Alliance University", 586 | "city": "Bengaluru", 587 | "rank": 98, 588 | "state": "Karnataka" 589 | }, 590 | { 591 | "name": "Gujarat University", 592 | "city": "Ahmedabad", 593 | "rank": 99, 594 | "state": "Gujarat" 595 | }, 596 | { 597 | "name": "Jamia Hamdard", 598 | "city": "New Delhi", 599 | "rank": 100, 600 | "state": "Delhi" 601 | }, 602 | { 603 | "name": "University of Jammu", 604 | "city": "Jammu", 605 | "rank": 100, 606 | "state": "Jammu and Kashmir" 607 | } 608 | ] -------------------------------------------------------------------------------- /data/pharmacy_ranking.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Jamia Hamdard", 4 | "city": "New Delhi", 5 | "rank": 1, 6 | "state": "Delhi" 7 | }, 8 | { 9 | "name": "National Institute of Pharmaceutical Education and Research Hyderabad", 10 | "city": "Hyderabad", 11 | "rank": 2, 12 | "state": "Telangana" 13 | }, 14 | { 15 | "name": "Panjab University", 16 | "city": "Chandigarh", 17 | "rank": 3, 18 | "state": "Chandigarh" 19 | }, 20 | { 21 | "name": "National Institute of Pharmaceutical Education and Research, Mohali", 22 | "city": "Mohali", 23 | "rank": 4, 24 | "state": "Punjab" 25 | }, 26 | { 27 | "name": "Birla Institute of Technology & Science - Pilani", 28 | "city": "Pilani", 29 | "rank": 5, 30 | "state": "Rajasthan" 31 | }, 32 | { 33 | "name": "JSS College of Pharmacy", 34 | "city": "Ooty", 35 | "rank": 6, 36 | "state": "Tamil Nadu" 37 | }, 38 | { 39 | "name": "Institute of Chemical Technology", 40 | "city": "Mumbai", 41 | "rank": 7, 42 | "state": "Maharashtra" 43 | }, 44 | { 45 | "name": "JSS College of Pharmacy", 46 | "city": "Mysore", 47 | "rank": 8, 48 | "state": "Karnataka" 49 | }, 50 | { 51 | "name": "Manipal College of Pharmaceutical Sciences, Manipal", 52 | "city": "Udupi", 53 | "rank": 9, 54 | "state": "Karnataka" 55 | }, 56 | { 57 | "name": "National Institute of Pharmaceutical Education and Research Ahmedabad", 58 | "city": "Gandhinagar", 59 | "rank": 10, 60 | "state": "Gujarat" 61 | }, 62 | { 63 | "name": "SVKM`s Narsee Monjee Institute of Management Studies", 64 | "city": "Mumbai", 65 | "rank": 11, 66 | "state": "Maharashtra" 67 | }, 68 | { 69 | "name": "S.R.M. Institute of Science and Technology", 70 | "city": "Chennai", 71 | "rank": 12, 72 | "state": "Tamil Nadu" 73 | }, 74 | { 75 | "name": "National Institute of Pharmaceutical Education and Research Guwahati", 76 | "city": "Guwahati", 77 | "rank": 13, 78 | "state": "Assam" 79 | }, 80 | { 81 | "name": "Amrita Vishwa Vidyapeetham", 82 | "city": "Coimbatore", 83 | "rank": 14, 84 | "state": "Tamil Nadu" 85 | }, 86 | { 87 | "name": "Annamalai University", 88 | "city": "Annamalainagar", 89 | "rank": 15, 90 | "state": "Tamil Nadu" 91 | }, 92 | { 93 | "name": "Maharaja Sayajirao University of Baroda", 94 | "city": "Vadodara", 95 | "rank": 16, 96 | "state": "Gujarat" 97 | }, 98 | { 99 | "name": "Amity University", 100 | "city": "Gautam Budh Nagar", 101 | "rank": 17, 102 | "state": "Uttar Pradesh" 103 | }, 104 | { 105 | "name": "Jadavpur University", 106 | "city": "Kolkata", 107 | "rank": 18, 108 | "state": "West Bengal" 109 | }, 110 | { 111 | "name": "Lovely Professional University", 112 | "city": "Phagwara", 113 | "rank": 19, 114 | "state": "Punjab" 115 | }, 116 | { 117 | "name": "Chitkara University", 118 | "city": "Rajpura", 119 | "rank": 20, 120 | "state": "Punjab" 121 | }, 122 | { 123 | "name": "Poona College of Pharmacy, Pune", 124 | "city": "Pune", 125 | "rank": 21, 126 | "state": "Maharashtra" 127 | }, 128 | { 129 | "name": "Delhi Pharmaceutical Sciences and Research University", 130 | "city": "Delhi", 131 | "rank": 22, 132 | "state": "Delhi" 133 | }, 134 | { 135 | "name": "Banasthali Vidyapith", 136 | "city": "Banasthali", 137 | "rank": 23, 138 | "state": "Rajasthan" 139 | }, 140 | { 141 | "name": "Maharishi Markandeshwar", 142 | "city": "Ambala", 143 | "rank": 24, 144 | "state": "Haryana" 145 | }, 146 | { 147 | "name": "Punjabi University, Patiala", 148 | "city": "Patiala", 149 | "rank": 25, 150 | "state": "Punjab" 151 | }, 152 | { 153 | "name": "Central University of Punjab", 154 | "city": "Bathinda", 155 | "rank": 26, 156 | "state": "Punjab" 157 | }, 158 | { 159 | "name": "National Institute of Pharmaceutical Education and Research Raebareli", 160 | "city": "Lucknow", 161 | "rank": 27, 162 | "state": "Uttar Pradesh" 163 | }, 164 | { 165 | "name": "Nirma University", 166 | "city": "Ahmedabad", 167 | "rank": 28, 168 | "state": "Gujarat" 169 | }, 170 | { 171 | "name": "I. S. F. College of Pharmacy", 172 | "city": "Moga", 173 | "rank": 29, 174 | "state": "Punjab" 175 | }, 176 | { 177 | "name": "Maharshi Dayanand University", 178 | "city": "Rohtak", 179 | "rank": 30, 180 | "state": "Haryana" 181 | }, 182 | { 183 | "name": "Sri Ramachandra Institute of Higher Education and Research", 184 | "city": "Chennai", 185 | "rank": 31, 186 | "state": "Tamil Nadu" 187 | }, 188 | { 189 | "name": "Bombay College of Pharmacy", 190 | "city": "Mumbai", 191 | "rank": 32, 192 | "state": "Maharashtra" 193 | }, 194 | { 195 | "name": "Guru Jambheshwar University of Science and Technology, Hissar", 196 | "city": "Hisar", 197 | "rank": 33, 198 | "state": "Haryana" 199 | }, 200 | { 201 | "name": "Vels Institute of Science Technology & Advanced Studies (VISTAS) -Chennai", 202 | "city": "Chennai", 203 | "rank": 34, 204 | "state": "Tamil Nadu" 205 | }, 206 | { 207 | "name": "Birla Institute of Technology", 208 | "city": "Ranchi", 209 | "rank": 35, 210 | "state": "Jharkhand" 211 | }, 212 | { 213 | "name": "Shoolini University of Biotechnology and Management Sciences", 214 | "city": "Solan", 215 | "rank": 36, 216 | "state": "Himachal Pradesh" 217 | }, 218 | { 219 | "name": "Chandigarh University", 220 | "city": "Mohali", 221 | "rank": 37, 222 | "state": "Punjab" 223 | }, 224 | { 225 | "name": "SVKM`s Dr. Bhanuben Nanavati College of Pharmacy", 226 | "city": "Mumbai", 227 | "rank": 38, 228 | "state": "Maharashtra" 229 | }, 230 | { 231 | "name": "Noida Institute of Engineering and Technology (Pharmacy Institute)", 232 | "city": "Greater Noida", 233 | "rank": 39, 234 | "state": "Uttar Pradesh" 235 | }, 236 | { 237 | "name": "KLE College of Pharmacy, Belgaum", 238 | "city": "Belgaum", 239 | "rank": 40, 240 | "state": "Karnataka" 241 | }, 242 | { 243 | "name": "Dr D.Y.Patil Institute of Pharmaceutical Sciences and Research", 244 | "city": "Pune", 245 | "rank": 41, 246 | "state": "Maharashtra" 247 | }, 248 | { 249 | "name": "The Rashtrasant Tukadoji Maharaj Nagpur University", 250 | "city": "Nagpur", 251 | "rank": 42, 252 | "state": "Maharashtra" 253 | }, 254 | { 255 | "name": "Guru Ghasidas Vishwavidyalaya", 256 | "city": "Bilaspur (Chhattisgarh)", 257 | "rank": 43, 258 | "state": "Chhattisgarh" 259 | }, 260 | { 261 | "name": "Kakatiya University", 262 | "city": "Hanumakonda", 263 | "rank": 44, 264 | "state": "Telangana" 265 | }, 266 | { 267 | "name": "N.G.S.M. Institute of Pharmaceutical Sciences", 268 | "city": "Mangaluru", 269 | "rank": 45, 270 | "state": "Karnataka" 271 | }, 272 | { 273 | "name": "R. C. Patel Institute of Pharmaceutical Education & Research", 274 | "city": "Shirpur", 275 | "rank": 46, 276 | "state": "Maharashtra" 277 | }, 278 | { 279 | "name": "Dibrugarh University", 280 | "city": "Dibrugarh", 281 | "rank": 47, 282 | "state": "Assam" 283 | }, 284 | { 285 | "name": "Integral University", 286 | "city": "Lucknow", 287 | "rank": 48, 288 | "state": "Uttar Pradesh" 289 | }, 290 | { 291 | "name": "Gandhi Institute of Technology and Management ", 292 | "city": "Visakhapatnam", 293 | "rank": 49, 294 | "state": "Andhra Pradesh" 295 | }, 296 | { 297 | "name": "Nandha College of Pharmacy", 298 | "city": "Erode", 299 | "rank": 50, 300 | "state": "Tamil Nadu" 301 | }, 302 | { 303 | "name": "Acharya Nagarjuna University College of Pharmaceutical Sciences", 304 | "city": "Guntur", 305 | "rank": 51, 306 | "state": "Andhra Pradesh" 307 | }, 308 | { 309 | "name": "L. M. College of Pharmacy", 310 | "city": "Ahmedabad", 311 | "rank": 52, 312 | "state": "Gujarat" 313 | }, 314 | { 315 | "name": "Smt. Kishoritai Bhoyar College of Pharmacy", 316 | "city": "Nagpur", 317 | "rank": 53, 318 | "state": "Maharashtra" 319 | }, 320 | { 321 | "name": "Shri Vishnu College of Pharmacy", 322 | "city": "Bhimavaram", 323 | "rank": 54, 324 | "state": "Andhra Pradesh" 325 | }, 326 | { 327 | "name": "Goa College of Pharmacy", 328 | "city": "Panaji", 329 | "rank": 55, 330 | "state": "Goa" 331 | }, 332 | { 333 | "name": "Amar Shaheed Baba Ajit Singh Jujhar Singh Memorial College of Pharmacy", 334 | "city": "Bela", 335 | "rank": 56, 336 | "state": "Punjab" 337 | }, 338 | { 339 | "name": "Acharya & B M Reddy College of Pharmacy", 340 | "city": "Bengaluru", 341 | "rank": 57, 342 | "state": "Karnataka" 343 | }, 344 | { 345 | "name": "Anurag University", 346 | "city": "Hyderabad", 347 | "rank": 58, 348 | "state": "Telangana" 349 | }, 350 | { 351 | "name": "Galgotias University", 352 | "city": "Gautam Budh Nagar", 353 | "rank": 59, 354 | "state": "Uttar Pradesh" 355 | }, 356 | { 357 | "name": "Mohan Lal Sukhadia University", 358 | "city": "Udaipur", 359 | "rank": 60, 360 | "state": "Rajasthan" 361 | }, 362 | { 363 | "name": "Kumaun University, Nainital", 364 | "city": "Nainital", 365 | "rank": 61, 366 | "state": "Uttarakhand" 367 | }, 368 | { 369 | "name": "M.S. Ramaiah University of Applied Sciences", 370 | "city": "Bangalore", 371 | "rank": 62, 372 | "state": "Karnataka" 373 | }, 374 | { 375 | "name": "College of Pharmacy, Madras Medical College", 376 | "city": "Chennai", 377 | "rank": 63, 378 | "state": "Tamil Nadu" 379 | }, 380 | { 381 | "name": "Suresh Gyan Vihar University", 382 | "city": "Jaipur", 383 | "rank": 64, 384 | "state": "Rajasthan" 385 | }, 386 | { 387 | "name": "Y. B. Chavan College of Pharmacy", 388 | "city": "Aurangabad", 389 | "rank": 65, 390 | "state": "Maharashtra" 391 | }, 392 | { 393 | "name": "Sri Padmavathi Mahila Visvavidyalayam", 394 | "city": "Tirupathi", 395 | "rank": 66, 396 | "state": "Andhra Pradesh" 397 | }, 398 | { 399 | "name": "Vishnu Institute of Pharmaceutical Education and Research", 400 | "city": "Narsapur", 401 | "rank": 67, 402 | "state": "Telangana" 403 | }, 404 | { 405 | "name": "Sri Venkateswara College of Pharmacy", 406 | "city": "Chittoor", 407 | "rank": 68, 408 | "state": "Andhra Pradesh" 409 | }, 410 | { 411 | "name": "G. L. A. University", 412 | "city": "Mathura", 413 | "rank": 69, 414 | "state": "Uttar Pradesh" 415 | }, 416 | { 417 | "name": "PSG College of Pharmacy", 418 | "city": "Coimbatore", 419 | "rank": 70, 420 | "state": "Tamil Nadu" 421 | }, 422 | { 423 | "name": "Raghavendra Institute of Pharmaceuatical Education & Research ", 424 | "city": "Anantapur", 425 | "rank": 71, 426 | "state": "Andhra Pradesh" 427 | }, 428 | { 429 | "name": "CMR College of Pharmacy", 430 | "city": "Rangareddy", 431 | "rank": 72, 432 | "state": "Telangana" 433 | }, 434 | { 435 | "name": "Bundelkhand University", 436 | "city": "Jhansi", 437 | "rank": 73, 438 | "state": "Uttar Pradesh" 439 | }, 440 | { 441 | "name": "Bharati Vidyapeeth College of Pharmacy, Kolhapur", 442 | "city": "Kolhapur", 443 | "rank": 74, 444 | "state": "Maharashtra" 445 | }, 446 | { 447 | "name": "National Institute of Pharmaceutical Education And Research Hajipur", 448 | "city": "Hajipur", 449 | "rank": 75, 450 | "state": "Bihar" 451 | }, 452 | { 453 | "name": "AISSMS College of Pharmacy", 454 | "city": "Pune", 455 | "rank": 76, 456 | "state": "Maharashtra" 457 | }, 458 | { 459 | "name": "Chalapathi Institute of Pharmaceutical Science", 460 | "city": "Guntur", 461 | "rank": 77, 462 | "state": "Andhra Pradesh" 463 | }, 464 | { 465 | "name": "Pt. Ravishankar Shukla University", 466 | "city": "Raipur", 467 | "rank": 78, 468 | "state": "Chhattisgarh" 469 | }, 470 | { 471 | "name": "Sam Higginbottom Institute of Agriculture, Technology & Sciences", 472 | "city": "Prayagraj", 473 | "rank": 79, 474 | "state": "Uttar Pradesh" 475 | }, 476 | { 477 | "name": "Sri Adichunchanagiri College of Pharmacy", 478 | "city": "B.G Nagara", 479 | "rank": 80, 480 | "state": "Karnataka" 481 | }, 482 | { 483 | "name": "College of Pharmacy, Pt. B. D. Sharma, PGIMS", 484 | "city": "Rohtak", 485 | "rank": 81, 486 | "state": "Haryana" 487 | }, 488 | { 489 | "name": "Arulmigu Kalasalingam College of Pharmacy", 490 | "city": "Srivilliputtur", 491 | "rank": 82, 492 | "state": "Tamil Nadu" 493 | }, 494 | { 495 | "name": "Kurukshetra University", 496 | "city": "Kurukshetra", 497 | "rank": 83, 498 | "state": "Haryana" 499 | }, 500 | { 501 | "name": "Guru Nanak Institute of Pharmaceutical Science & Technology", 502 | "city": "Kolkata", 503 | "rank": 84, 504 | "state": "West Bengal" 505 | }, 506 | { 507 | "name": "KMCH College of Pharmacy", 508 | "city": "Coimbatore", 509 | "rank": 85, 510 | "state": "Tamil Nadu" 511 | }, 512 | { 513 | "name": "Parul University", 514 | "city": "Vadodara", 515 | "rank": 86, 516 | "state": "Gujarat" 517 | }, 518 | { 519 | "name": "Dr. Vishwanath Karad MIT World Peace University", 520 | "city": "Pune", 521 | "rank": 87, 522 | "state": "Maharashtra" 523 | }, 524 | { 525 | "name": "Principal K.M. Kundnani College of Pharmacy", 526 | "city": "Mumbai", 527 | "rank": 88, 528 | "state": "Maharashtra" 529 | }, 530 | { 531 | "name": "Sri Venkateswara University", 532 | "city": "Tirupati", 533 | "rank": 89, 534 | "state": "Andhra Pradesh" 535 | }, 536 | { 537 | "name": "Marathwada Mitra Mandal`s College of Pharmacy", 538 | "city": "Pune", 539 | "rank": 90, 540 | "state": "Maharashtra" 541 | }, 542 | { 543 | "name": "Chandigarh College of Pharmacy, Landran", 544 | "city": "Landran", 545 | "rank": 91, 546 | "state": "Punjab" 547 | }, 548 | { 549 | "name": "Jaipur National University, Jaipur", 550 | "city": "Jaipur", 551 | "rank": 92, 552 | "state": "Rajasthan" 553 | }, 554 | { 555 | "name": "Gokaraju Rangaraju College of Pharmacy", 556 | "city": "Hyderabad", 557 | "rank": 93, 558 | "state": "Telangana" 559 | }, 560 | { 561 | "name": "Maliba Pharmacy College", 562 | "city": "Tarsadi", 563 | "rank": 94, 564 | "state": "Gujarat" 565 | }, 566 | { 567 | "name": "KLE College of Pharmacy", 568 | "city": "Bengaluru", 569 | "rank": 95, 570 | "state": "Karnataka" 571 | }, 572 | { 573 | "name": "Al Shifa College of Pharmacy, Perinthalmanna", 574 | "city": "Malappuram", 575 | "rank": 96, 576 | "state": "Kerala" 577 | }, 578 | { 579 | "name": "KIET Group of Institutions", 580 | "city": "Ghaziabad", 581 | "rank": 97, 582 | "state": "Uttar Pradesh" 583 | }, 584 | { 585 | "name": "Krupanidhi College of Pharmacy", 586 | "city": "Bengaluru", 587 | "rank": 98, 588 | "state": "Karnataka" 589 | }, 590 | { 591 | "name": "C.U.Shah College of Pharmacy", 592 | "city": "Mumbai", 593 | "rank": 99, 594 | "state": "Maharashtra" 595 | }, 596 | { 597 | "name": "Nirmala College of Pharmacy, Mangalagiri", 598 | "city": "Mangalagiri", 599 | "rank": 100, 600 | "state": "Andhra Pradesh" 601 | }, 602 | { 603 | "name": "Shree Guru Gobind Singh Tricentenary University", 604 | "city": "Gurgaon", 605 | "rank": 100, 606 | "state": "Haryana" 607 | } 608 | ] -------------------------------------------------------------------------------- /data/law_participated.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Aligarh Muslim University", 4 | "city": "Aligarh", 5 | "state": "Uttar Pradesh" 6 | }, 7 | { 8 | "name": "Allahabad Degree College", 9 | "city": "Prayagraj", 10 | "state": "Uttar Pradesh" 11 | }, 12 | { 13 | "name": "Alliance University", 14 | "city": "Bengaluru", 15 | "state": "Karnataka" 16 | }, 17 | { 18 | "name": "Amity University Haryana, Gurgaon", 19 | "city": "Gurugram, Haryana", 20 | "state": "Haryana" 21 | }, 22 | { 23 | "name": "Amity University, Gwalior", 24 | "city": "Gwalior", 25 | "state": "Madhya Pradesh" 26 | }, 27 | { 28 | "name": "Amolakchand Vidhi Mahavidyalaya, Yavatmal", 29 | "city": "Yavatmal", 30 | "state": "Maharashtra" 31 | }, 32 | { 33 | "name": "Army Institute of Law, Mohali", 34 | "city": "Mohali", 35 | "state": "Punjab" 36 | }, 37 | { 38 | "name": "Asian Law College", 39 | "city": "Noida", 40 | "state": "Uttar Pradesh" 41 | }, 42 | { 43 | "name": "Babasheb Bhimrao Ambedkar University", 44 | "city": "Lucknow", 45 | "state": "Uttar Pradesh" 46 | }, 47 | { 48 | "name": "Banaras Hindu University", 49 | "city": "Varanasi", 50 | "state": "Uttar Pradesh" 51 | }, 52 | { 53 | "name": "Banasthali Vidyapith", 54 | "city": "Banasthali", 55 | "state": "Rajasthan" 56 | }, 57 | { 58 | "name": "Bangalore University", 59 | "city": "Bangalore", 60 | "state": "Karnataka" 61 | }, 62 | { 63 | "name": "Bankura University", 64 | "city": "Bankura", 65 | "state": "West Bengal" 66 | }, 67 | { 68 | "name": "Barkatullah University, Bhopal", 69 | "city": "Bhopal", 70 | "state": "Madhya Pradesh" 71 | }, 72 | { 73 | "name": "Bharati Vidyapeeth Deemed University New Law College, Pune", 74 | "city": "Pune", 75 | "state": "Maharashtra" 76 | }, 77 | { 78 | "name": "Bundelkhand University", 79 | "city": "Jhansi", 80 | "state": "Uttar Pradesh" 81 | }, 82 | { 83 | "name": "C. N. Law College", 84 | "city": "RANCHI", 85 | "state": "Jharkhand" 86 | }, 87 | { 88 | "name": "Career Law College", 89 | "city": "Bhopal", 90 | "state": "Madhya Pradesh" 91 | }, 92 | { 93 | "name": "Career Point University", 94 | "city": "Hamirpur", 95 | "state": "Himachal Pradesh" 96 | }, 97 | { 98 | "name": "Central University of Haryana", 99 | "city": "Mahendergarh", 100 | "state": "Haryana" 101 | }, 102 | { 103 | "name": "Chanakya National Law University", 104 | "city": "Patna", 105 | "state": "Bihar" 106 | }, 107 | { 108 | "name": "Chaudhary Charan Singh University Meerut", 109 | "city": "Meerut", 110 | "state": "Uttar Pradesh" 111 | }, 112 | { 113 | "name": "Christ University", 114 | "city": "Bengaluru", 115 | "state": "Karnataka" 116 | }, 117 | { 118 | "name": "Damodaram Sanjivayya National Law University", 119 | "city": "Visakhapatnam", 120 | "state": "Andhra Pradesh" 121 | }, 122 | { 123 | "name": "Deen Dayal Upadhyay Gorakhpur University", 124 | "city": "Gorakhpur", 125 | "state": "Uttar Pradesh" 126 | }, 127 | { 128 | "name": "Deoghar College, Deoghar", 129 | "city": "DEOGHAR", 130 | "state": "Jharkhand" 131 | }, 132 | { 133 | "name": "Desh Bhagat University", 134 | "city": "Mandi Gobindgarh", 135 | "state": "Punjab" 136 | }, 137 | { 138 | "name": "Devi Ahilya Vishwavidyalaya", 139 | "city": "Indore", 140 | "state": "Madhya Pradesh" 141 | }, 142 | { 143 | "name": "Devi Sharvani Education Society`s V.M. Salgaocar College of Law, Miramar", 144 | "city": "Panaji", 145 | "state": "Goa" 146 | }, 147 | { 148 | "name": "Dr. A.P.J. Abdul Kalam University", 149 | "city": "Indore", 150 | "state": "Madhya Pradesh" 151 | }, 152 | { 153 | "name": "Dr. Ambedkar Law College", 154 | "city": "Tirupati", 155 | "state": "Andhra Pradesh" 156 | }, 157 | { 158 | "name": "Dr. B. R. Ambedkar College of Law", 159 | "city": "Visakhapatnam", 160 | "state": "Andhra Pradesh" 161 | }, 162 | { 163 | "name": "Dr. Panjabrao Deshmukh Law College", 164 | "city": "Amravati", 165 | "state": "Maharashtra" 166 | }, 167 | { 168 | "name": "Dr. Ram Manohar Lohiya National Law University, Lucknow", 169 | "city": "Lucknow", 170 | "state": "Uttar Pradesh" 171 | }, 172 | { 173 | "name": "Fairfield Institute of Management & Technology", 174 | "city": "NEW DELHI", 175 | "state": "Delhi" 176 | }, 177 | { 178 | "name": "G. D. Goenka University", 179 | "city": "Gurgaon", 180 | "state": "Haryana" 181 | }, 182 | { 183 | "name": "Galgotias University", 184 | "city": "Gautam Budh Nagar", 185 | "state": "Uttar Pradesh" 186 | }, 187 | { 188 | "name": "Gandhi Institute of Technology and Management", 189 | "city": "Visakhapatnam", 190 | "state": "Andhra Pradesh" 191 | }, 192 | { 193 | "name": "Gautam Buddha University", 194 | "city": "Gautam Buddha Nagar", 195 | "state": "Uttar Pradesh" 196 | }, 197 | { 198 | "name": "Geeta Institute of Law", 199 | "city": "Panipat", 200 | "state": "Haryana" 201 | }, 202 | { 203 | "name": "Government Law College", 204 | "city": "MORENA", 205 | "state": "Madhya Pradesh" 206 | }, 207 | { 208 | "name": "Government Law College, Ashoknagar", 209 | "city": "Ashoknagar", 210 | "state": "Madhya Pradesh" 211 | }, 212 | { 213 | "name": "Gujarat National Law University", 214 | "city": "Gandhinagar", 215 | "state": "Gujarat" 216 | }, 217 | { 218 | "name": "Gujarat University", 219 | "city": "Ahmedabad", 220 | "state": "Gujarat" 221 | }, 222 | { 223 | "name": "Guru Gobind Singh Indraprastha University", 224 | "city": "New Delhi", 225 | "state": "Delhi" 226 | }, 227 | { 228 | "name": "Guru Hargobind Institute of Law for Women", 229 | "city": "Ludhiana", 230 | "state": "Punjab" 231 | }, 232 | { 233 | "name": "Haldia Law College", 234 | "city": "Haldia", 235 | "state": "West Bengal" 236 | }, 237 | { 238 | "name": "Himachal Pradesh University", 239 | "city": "Shimla", 240 | "state": "Himachal Pradesh" 241 | }, 242 | { 243 | "name": "ICFAI Foundation for Higher Education, Hyderabad", 244 | "city": "Hyderabad", 245 | "state": "Telangana" 246 | }, 247 | { 248 | "name": "IEC (India Education Centre) University", 249 | "city": "Solan", 250 | "state": "Himachal Pradesh" 251 | }, 252 | { 253 | "name": "IFTM University", 254 | "city": "Moradabad", 255 | "state": "Uttar Pradesh" 256 | }, 257 | { 258 | "name": "IIMT College of Law", 259 | "city": "Greater Noida", 260 | "state": "Uttar Pradesh" 261 | }, 262 | { 263 | "name": "Imamul Hai Khan Law College, Bokaro", 264 | "city": "BOKARO STEEL CITY", 265 | "state": "Jharkhand" 266 | }, 267 | { 268 | "name": "IMS Unison University", 269 | "city": "Dehradun", 270 | "state": "Uttarakhand" 271 | }, 272 | { 273 | "name": "Indian Institute of Technology, Kharagpur", 274 | "city": "Kharagpur", 275 | "state": "West Bengal" 276 | }, 277 | { 278 | "name": "Indian Law Institute", 279 | "city": "New Delhi", 280 | "state": "Delhi" 281 | }, 282 | { 283 | "name": "Indore Institute of Law, Indore", 284 | "city": "Indore", 285 | "state": "Madhya Pradesh" 286 | }, 287 | { 288 | "name": "Institute of Chatertered Financial Analysts of India, Dehradun", 289 | "city": "Dehradun", 290 | "state": "Uttarakhand" 291 | }, 292 | { 293 | "name": "Integral University", 294 | "city": "Lucknow", 295 | "state": "Uttar Pradesh" 296 | }, 297 | { 298 | "name": "Invertis University", 299 | "city": "Bareilly", 300 | "state": "Uttar Pradesh" 301 | }, 302 | { 303 | "name": "Ismailsaheb Mulla Law College", 304 | "city": "Satara", 305 | "state": "Maharashtra" 306 | }, 307 | { 308 | "name": "J. S. S. Law College", 309 | "city": "Mysuru", 310 | "state": "Karnataka" 311 | }, 312 | { 313 | "name": "Jagran Lakecity University, Bhopal", 314 | "city": "Bhopal", 315 | "state": "Madhya Pradesh" 316 | }, 317 | { 318 | "name": "Jamia Millia Islamia, New Delhi", 319 | "city": "New Delhi", 320 | "state": "Delhi" 321 | }, 322 | { 323 | "name": "JIS University", 324 | "city": "Kolkata", 325 | "state": "West Bengal" 326 | }, 327 | { 328 | "name": "K. R. Mangalam University", 329 | "city": "Gurugram", 330 | "state": "Haryana" 331 | }, 332 | { 333 | "name": "K.L.E. Society Law College, Bangalore", 334 | "city": "Bangalore", 335 | "state": "Karnataka" 336 | }, 337 | { 338 | "name": "Kakatiya University", 339 | "city": "Hanumakonda", 340 | "state": "Telangana" 341 | }, 342 | { 343 | "name": "Kalinga Institute of Industrial Technology", 344 | "city": "BHUBANESWAR", 345 | "state": "Odisha" 346 | }, 347 | { 348 | "name": "Karnataka State Law University", 349 | "city": "Dharwad", 350 | "state": "Karnataka" 351 | }, 352 | { 353 | "name": "Karnavati University", 354 | "city": "Gandhinagar", 355 | "state": "Gujarat" 356 | }, 357 | { 358 | "name": "Lovely Professional University", 359 | "city": "Phagwara", 360 | "state": "Punjab" 361 | }, 362 | { 363 | "name": "M V N University, Palwal", 364 | "city": "Palwal", 365 | "state": "Haryana" 366 | }, 367 | { 368 | "name": "Maharaja Sayajirao University of Baroda", 369 | "city": "Vadodara", 370 | "state": "Gujarat" 371 | }, 372 | { 373 | "name": "Maharani Laxmibai Arts and Commerce College, Gwalior", 374 | "city": "Gwalior", 375 | "state": "Madhya Pradesh" 376 | }, 377 | { 378 | "name": "Maharashtra National Law University, Nagpur", 379 | "city": "Nagpur", 380 | "state": "Maharashtra" 381 | }, 382 | { 383 | "name": "Maharishi Markandeshwar", 384 | "city": "Ambala", 385 | "state": "Haryana" 386 | }, 387 | { 388 | "name": "Maharshi Dayanand University", 389 | "city": "Rohtak", 390 | "state": "Haryana" 391 | }, 392 | { 393 | "name": "Manipal University, Jaipur", 394 | "city": "Jaipur", 395 | "state": "Rajasthan" 396 | }, 397 | { 398 | "name": "Marathwada Legal`s & General Education Society`s, Manikchand Pahade Law College", 399 | "city": "Aurangabad", 400 | "state": "Maharashtra" 401 | }, 402 | { 403 | "name": "Marathwada Mitra Mandal`s Shankarrao Chavan Law College, Pune", 404 | "city": "Pune", 405 | "state": "Maharashtra" 406 | }, 407 | { 408 | "name": "MATS University", 409 | "city": "Raipur", 410 | "state": "Chhattisgarh" 411 | }, 412 | { 413 | "name": "Mohan Lal Sukhadia University", 414 | "city": "Udaipur", 415 | "state": "Rajasthan" 416 | }, 417 | { 418 | "name": "N. B. M. Law College", 419 | "city": "Visakhapatnam", 420 | "state": "Andhra Pradesh" 421 | }, 422 | { 423 | "name": "N. E. F. Law College", 424 | "city": "Kamrup", 425 | "state": "Assam" 426 | }, 427 | { 428 | "name": "Nalsar University of Law", 429 | "city": "Hyderabad", 430 | "state": "Telangana" 431 | }, 432 | { 433 | "name": "National Law Institute University, Bhopal", 434 | "city": "Bhopal", 435 | "state": "Madhya Pradesh" 436 | }, 437 | { 438 | "name": "National Law School of India University", 439 | "city": "Bengaluru", 440 | "state": "Karnataka" 441 | }, 442 | { 443 | "name": "National Law University", 444 | "city": "New Delhi", 445 | "state": "Delhi" 446 | }, 447 | { 448 | "name": "National Law University", 449 | "city": "Cuttack", 450 | "state": "Odisha" 451 | }, 452 | { 453 | "name": "National Law University and Judicial Academy", 454 | "city": "Kamrup", 455 | "state": "Assam" 456 | }, 457 | { 458 | "name": "National Law University, Jodhpur", 459 | "city": "Jodhpur", 460 | "state": "Rajasthan" 461 | }, 462 | { 463 | "name": "National University of Advanced Legal Studies (NUALS)", 464 | "city": "Kochi", 465 | "state": "Kerala" 466 | }, 467 | { 468 | "name": "National University of Study & Research in Law, Ranchi", 469 | "city": "Ranchi", 470 | "state": "Jharkhand" 471 | }, 472 | { 473 | "name": "NIMT Technical and Professional College", 474 | "city": "Jaipur", 475 | "state": "Rajasthan" 476 | }, 477 | { 478 | "name": "NIMT Vidhi Evam Kanoon Sansthan", 479 | "city": "Greater Noida", 480 | "state": "Uttar Pradesh" 481 | }, 482 | { 483 | "name": "Nirma University", 484 | "city": "Ahmedabad", 485 | "state": "Gujarat" 486 | }, 487 | { 488 | "name": "Oriental University, Indore", 489 | "city": "Indore", 490 | "state": "Madhya Pradesh" 491 | }, 492 | { 493 | "name": "Osmania University", 494 | "city": "Hyderabad", 495 | "state": "Telangana" 496 | }, 497 | { 498 | "name": "Panjab University", 499 | "city": "Chandigarh", 500 | "state": "Chandigarh" 501 | }, 502 | { 503 | "name": "Presidency University , Bengaluru", 504 | "city": "Bengaluru", 505 | "state": "Karnataka" 506 | }, 507 | { 508 | "name": "Progressive Educational Societys Modern Law College, Pune", 509 | "city": "Pune", 510 | "state": "Maharashtra" 511 | }, 512 | { 513 | "name": "Pt. Ravishankar Shukla University", 514 | "city": "Raipur", 515 | "state": "Chhattisgarh" 516 | }, 517 | { 518 | "name": "Punjabi University, Patiala", 519 | "city": "Patiala", 520 | "state": "Punjab" 521 | }, 522 | { 523 | "name": "Rafflles University", 524 | "city": "Neemrana", 525 | "state": "Rajasthan" 526 | }, 527 | { 528 | "name": "Rajashi Shahu Evening Law College", 529 | "city": "Barshi", 530 | "state": "Maharashtra" 531 | }, 532 | { 533 | "name": "Rajshree Institute of Management & Technology", 534 | "city": "Bareilly", 535 | "state": "Uttar Pradesh" 536 | }, 537 | { 538 | "name": "Ranchi University, Ranchi", 539 | "city": "Ranchi", 540 | "state": "Jharkhand" 541 | }, 542 | { 543 | "name": "Rayat Bahra University", 544 | "city": "Sahibzada Ajit Singh Nagar", 545 | "state": "Punjab" 546 | }, 547 | { 548 | "name": "Reva University", 549 | "city": "Bengaluru", 550 | "state": "Karnataka" 551 | }, 552 | { 553 | "name": "RNB Global University", 554 | "city": "Bikaner", 555 | "state": "Rajasthan" 556 | }, 557 | { 558 | "name": "Rourkela Law College", 559 | "city": "ROURKELA", 560 | "state": "Odisha" 561 | }, 562 | { 563 | "name": "Royal Academy of Law", 564 | "city": "Oinam", 565 | "state": "Manipur" 566 | }, 567 | { 568 | "name": "S. D. M. Law College", 569 | "city": "Mangaluru", 570 | "state": "Karnataka" 571 | }, 572 | { 573 | "name": "S. S. M. Law College", 574 | "city": "Jalgaon", 575 | "state": "Maharashtra" 576 | }, 577 | { 578 | "name": "S.A. Manvi Law College, Gadag", 579 | "city": "Gadag", 580 | "state": "Karnataka" 581 | }, 582 | { 583 | "name": "SAGE University, Indore", 584 | "city": "Indore", 585 | "state": "Madhya Pradesh" 586 | }, 587 | { 588 | "name": "Sarvajanik College of Law", 589 | "city": "Surat", 590 | "state": "Gujarat" 591 | }, 592 | { 593 | "name": "Saveetha Institute of Medical and Technical Sciences", 594 | "city": "Chennai", 595 | "state": "Tamil Nadu" 596 | }, 597 | { 598 | "name": "Seth Chunilal Amarchand Bohra Law College, Raichur", 599 | "city": "Raichur", 600 | "state": "Karnataka" 601 | }, 602 | { 603 | "name": "Shanmugha Arts Science Technology & Research Academy", 604 | "city": "Thanjavur", 605 | "state": "Tamil Nadu" 606 | }, 607 | { 608 | "name": "Shantaram Potdukhe College of Law", 609 | "city": "Chandrapur", 610 | "state": "Maharashtra" 611 | }, 612 | { 613 | "name": "Shivaji Law College", 614 | "city": "Parbhani", 615 | "state": "Maharashtra" 616 | }, 617 | { 618 | "name": "Shoolini University of Biotechnology and Management Sciences", 619 | "city": "Solan", 620 | "state": "Himachal Pradesh" 621 | }, 622 | { 623 | "name": "Shri Guru Teg Bhadur Khalsa College, Jabalpur", 624 | "city": "Jabalpur", 625 | "state": "Madhya Pradesh" 626 | }, 627 | { 628 | "name": "Sikkim Government Law College, Burtuk", 629 | "city": "Gangtok", 630 | "state": "Sikkim" 631 | }, 632 | { 633 | "name": "Siksha `O` Anusandhan", 634 | "city": "Bhubaneswar", 635 | "state": "Odisha" 636 | }, 637 | { 638 | "name": "Smt. Nathibai Damodar Thackersey Women's Univeristy, Mumbai", 639 | "city": "Mumbai", 640 | "state": "Maharashtra" 641 | }, 642 | { 643 | "name": "Sri Padmavathi Mahila Visvavidyalayam", 644 | "city": "Tirupathi", 645 | "state": "Andhra Pradesh" 646 | }, 647 | { 648 | "name": "Sri Shirdi Sai Law College", 649 | "city": "Anakapalli", 650 | "state": "Andhra Pradesh" 651 | }, 652 | { 653 | "name": "SRM University, Delhi NCR", 654 | "city": "Sonepat", 655 | "state": "Haryana" 656 | }, 657 | { 658 | "name": "St. Wilfred?s College of Law", 659 | "city": "Jaipur", 660 | "state": "Rajasthan" 661 | }, 662 | { 663 | "name": "Swami Vivekanand Subharti University", 664 | "city": "Meerut", 665 | "state": "Uttar Pradesh" 666 | }, 667 | { 668 | "name": "Symbiosis Law School", 669 | "city": "Pune", 670 | "state": "Maharashtra" 671 | }, 672 | { 673 | "name": "Tamil Nadu Dr. Ambedkar Law University", 674 | "city": "Chennai", 675 | "state": "Tamil Nadu" 676 | }, 677 | { 678 | "name": "Telangana University", 679 | "city": "Nizamabad", 680 | "state": "Telangana" 681 | }, 682 | { 683 | "name": "The Institute of Chartered Financial Analysts of India University", 684 | "city": "Agartala", 685 | "state": "Tripura" 686 | }, 687 | { 688 | "name": "The Institute of Chartered Financial Analysts of India University", 689 | "city": "Gangtok", 690 | "state": "Sikkim" 691 | }, 692 | { 693 | "name": "The Northcap University", 694 | "city": "Gurugram", 695 | "state": "Haryana" 696 | }, 697 | { 698 | "name": "The Rajiv Gandhi National University of Law, Patiala", 699 | "city": "Patiala", 700 | "state": "Punjab" 701 | }, 702 | { 703 | "name": "The Rashtrasant Tukadoji Maharaj Nagpur University", 704 | "city": "Nagpur", 705 | "state": "Maharashtra" 706 | }, 707 | { 708 | "name": "The West Bengal National University of Juridicial Sciences", 709 | "city": "Kolkata", 710 | "state": "West Bengal" 711 | }, 712 | { 713 | "name": "University of Jammu", 714 | "city": "Jammu", 715 | "state": "Jammu and Kashmir" 716 | }, 717 | { 718 | "name": "University of Petroleum and Energy Studies", 719 | "city": "Dehradun", 720 | "state": "Uttarakhand" 721 | }, 722 | { 723 | "name": "Uttaranchal University", 724 | "city": "Dehradun", 725 | "state": "Uttarakhand" 726 | }, 727 | { 728 | "name": "Vidya Vikas Mandals Govind Ramnath Kare College of Law, Margao", 729 | "city": "South Goa", 730 | "state": "Goa" 731 | }, 732 | { 733 | "name": "Vidyavardhaka Law College, Mysore", 734 | "city": "Mysore", 735 | "state": "Karnataka" 736 | } 737 | ] -------------------------------------------------------------------------------- /data/dental_participated.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "A.B.Shetty Memorial Institute of Dental Sciences", 4 | "city": "Mangaluru", 5 | "state": "Karnataka" 6 | }, 7 | { 8 | "name": "ADHIPARASAKTHI DENTAL COLLEGE AND HOSPITAL, KANCHEEPURAM", 9 | "city": "Melmaruvathur", 10 | "state": "Tamil Nadu" 11 | }, 12 | { 13 | "name": "AJ Institute of Dental Sciences", 14 | "city": "Dakshina Kannada", 15 | "state": "Karnataka" 16 | }, 17 | { 18 | "name": "Al-Badar Rural Gulbarga Dental College & Hospital", 19 | "city": "Gulbarga", 20 | "state": "Karnataka" 21 | }, 22 | { 23 | "name": "Aligarh Muslim University", 24 | "city": "Aligarh", 25 | "state": "Uttar Pradesh" 26 | }, 27 | { 28 | "name": "Amrita Vishwa Vidyapeetham", 29 | "city": "Coimbatore", 30 | "state": "Tamil Nadu" 31 | }, 32 | { 33 | "name": "Annamalai University", 34 | "city": "Annamalainagar", 35 | "state": "Tamil Nadu" 36 | }, 37 | { 38 | "name": "Annasaheb Chudaman Patil Memorial Dental College", 39 | "city": "Dhule", 40 | "state": "Maharashtra" 41 | }, 42 | { 43 | "name": "Annoor Dental College, Muvattupuzha", 44 | "city": "Muvattupuzha", 45 | "state": "Kerala" 46 | }, 47 | { 48 | "name": "Army College of Dental Sciences", 49 | "city": "Secunderabd", 50 | "state": "Telangana" 51 | }, 52 | { 53 | "name": "Baba Jaswant Singh Dental College Hospital & Research Institute, Ludhiana", 54 | "city": "Ludhiana", 55 | "state": "Punjab" 56 | }, 57 | { 58 | "name": "Banaras Hindu University", 59 | "city": "Varanasi", 60 | "state": "Uttar Pradesh" 61 | }, 62 | { 63 | "name": "Bapuji Dental College & Hospital", 64 | "city": "Davangere", 65 | "state": "Karnataka" 66 | }, 67 | { 68 | "name": "BEST DENTAL SCIENCE COLLEGE (Inst. Code - 269), MADURAI", 69 | "city": "Madurai", 70 | "state": "Tamil Nadu" 71 | }, 72 | { 73 | "name": "BHABHA COLLEGE OF DENTAL SCIENCE", 74 | "city": "Bhopal", 75 | "state": "Madhya Pradesh" 76 | }, 77 | { 78 | "name": "Bharati Vidyapeeth (Deemed to be University) Dental College and Hospital, Navi Mumbai", 79 | "city": "Navi Mumbai", 80 | "state": "Maharashtra" 81 | }, 82 | { 83 | "name": "Bharati Vidyapeeth (Deemed to be University) Dental College and Hospital, Pune", 84 | "city": "Pune", 85 | "state": "Maharashtra" 86 | }, 87 | { 88 | "name": "Bharati Vidyapeeth Dental College & Hospital", 89 | "city": "Sangli", 90 | "state": "Maharashtra" 91 | }, 92 | { 93 | "name": "Bhojia Dental College & Hospital", 94 | "city": "Baddi", 95 | "state": "Himachal Pradesh" 96 | }, 97 | { 98 | "name": "Chettinad Dental College and Research Institute", 99 | "city": "Kelambakkam", 100 | "state": "Tamil Nadu" 101 | }, 102 | { 103 | "name": "Christian Dental College", 104 | "city": "Ludhiana", 105 | "state": "Punjab" 106 | }, 107 | { 108 | "name": "Coorg Institute of Dental Sciences", 109 | "city": "Virajpet", 110 | "state": "Karnataka" 111 | }, 112 | { 113 | "name": "D A Pandu Memorial R V Dental College", 114 | "city": "Bangalore", 115 | "state": "Karnataka" 116 | }, 117 | { 118 | "name": "Darshan Dental College & Hospital", 119 | "city": "Udaipur", 120 | "state": "Rajasthan" 121 | }, 122 | { 123 | "name": "Dasmesh Institute of Research & Dental Sciences, Faridkot", 124 | "city": "Faridkot", 125 | "state": "Punjab" 126 | }, 127 | { 128 | "name": "Datta Meghe Institute of Medical Sciences", 129 | "city": "Wardha", 130 | "state": "Maharashtra" 131 | }, 132 | { 133 | "name": "Dayananda Sagar College of Dental Sciences", 134 | "city": "Bangalore", 135 | "state": "Karnataka" 136 | }, 137 | { 138 | "name": "Desh Bhagat University", 139 | "city": "Mandi Gobindgarh", 140 | "state": "Punjab" 141 | }, 142 | { 143 | "name": "Dharmsinh Desai University", 144 | "city": "Nadiad", 145 | "state": "Gujarat" 146 | }, 147 | { 148 | "name": "Dr. D. Y. Patil Vidyapeeth", 149 | "city": "Pune", 150 | "state": "Maharashtra" 151 | }, 152 | { 153 | "name": "Dr. Harvansh Singh Judge Institute of Dental Sciences", 154 | "city": "Chandigarh", 155 | "state": "Chandigarh" 156 | }, 157 | { 158 | "name": "Drs. Sudha and Nageswara Rao Siddhartha Institute of Dental Sciences", 159 | "city": "Vijayawada", 160 | "state": "Andhra Pradesh" 161 | }, 162 | { 163 | "name": "ESIC Dental College", 164 | "city": "Gulbarga", 165 | "state": "Karnataka" 166 | }, 167 | { 168 | "name": "ESIC Dental College", 169 | "city": "Delhi", 170 | "state": "Delhi" 171 | }, 172 | { 173 | "name": "Farooqia Dental College & Hospital", 174 | "city": "Mysore", 175 | "state": "Karnataka" 176 | }, 177 | { 178 | "name": "Geetanjali University", 179 | "city": "Udaipur", 180 | "state": "Rajasthan" 181 | }, 182 | { 183 | "name": "Gitam Dental College & Hospital", 184 | "city": "Vishakhapatnam", 185 | "state": "Andhra Pradesh" 186 | }, 187 | { 188 | "name": "GOVERNMENT DENTAL COLLEGE", 189 | "city": "Thiruvananthapuram", 190 | "state": "Kerala" 191 | }, 192 | { 193 | "name": "Government Dental College", 194 | "city": "Ahmedabad", 195 | "state": "Gujarat" 196 | }, 197 | { 198 | "name": "Government Dental College, Bangalore", 199 | "city": "Bangalore", 200 | "state": "Karnataka" 201 | }, 202 | { 203 | "name": "Govt. Dental College, Indore", 204 | "city": "Indore", 205 | "state": "Madhya Pradesh" 206 | }, 207 | { 208 | "name": "Govt. Dental College, Nagpur", 209 | "city": "Nagpur", 210 | "state": "Maharashtra" 211 | }, 212 | { 213 | "name": "GURU NANAK INSTITUTE OF DENTAL SCIENCES & RESEARCH", 214 | "city": "Kolkata-", 215 | "state": "West Bengal" 216 | }, 217 | { 218 | "name": "H.P. Govt. Dental College & Hospital", 219 | "city": "Shimla", 220 | "state": "Himachal Pradesh" 221 | }, 222 | { 223 | "name": "HAZARIBAG COLLEGE OF DENTAL SCIENCES & HOSPITAL", 224 | "city": "Hazaribag", 225 | "state": "Jharkhand" 226 | }, 227 | { 228 | "name": "Himachal Institute of Dental Sciences", 229 | "city": "Sirmour", 230 | "state": "Himachal Pradesh" 231 | }, 232 | { 233 | "name": "I.T.S. DENTAL COLLEGE HOSPITAL & RESEARCH CENTER, GREATAR NOIDA", 234 | "city": "Greater Noida", 235 | "state": "Uttar Pradesh" 236 | }, 237 | { 238 | "name": "Indira Gandhi Institute of Dental Sciences", 239 | "city": "Ernakulam", 240 | "state": "Kerala" 241 | }, 242 | { 243 | "name": "Indira Gandhi Institute of Dental Sciences", 244 | "city": "Puducherry", 245 | "state": "Pondicherry" 246 | }, 247 | { 248 | "name": "Institute of Dental Sciences", 249 | "city": "Bareilly", 250 | "state": "Uttar Pradesh" 251 | }, 252 | { 253 | "name": "Institute of Dental Sciences", 254 | "city": "Jammu", 255 | "state": "Jammu and Kashmir" 256 | }, 257 | { 258 | "name": "INSTITUTE OF DENTAL STUDIES & TECHNOLOGY DELHI-MEERUT ROAD, KADRABAD, MODINAGAR", 259 | "city": "Modinagar", 260 | "state": "Uttar Pradesh" 261 | }, 262 | { 263 | "name": "ITS Centre for Dental Studies and Research Delhi, Murad Nagar, Ghaziabad", 264 | "city": "Ghaziabad", 265 | "state": "Uttar Pradesh" 266 | }, 267 | { 268 | "name": "J.N. Kapoor, D.A.V Centenary Dental College", 269 | "city": "Yamunanagar", 270 | "state": "Haryana" 271 | }, 272 | { 273 | "name": "Jamia Millia Islamia, New Delhi", 274 | "city": "New Delhi", 275 | "state": "Delhi" 276 | }, 277 | { 278 | "name": "Jan Nayak Ch. Devi Lal Dental College, Sirsa", 279 | "city": "Sirsa", 280 | "state": "Haryana" 281 | }, 282 | { 283 | "name": "JKK Natrajah Dental College", 284 | "city": "Komarapalayam", 285 | "state": "Tamil Nadu" 286 | }, 287 | { 288 | "name": "JSS Dental College and Hospital", 289 | "city": "Mysuru", 290 | "state": "Karnataka" 291 | }, 292 | { 293 | "name": "K L E Society's Institute of Dental Sciences", 294 | "city": "Bengaluru", 295 | "state": "Karnataka" 296 | }, 297 | { 298 | "name": "Kalinga Institute of Industrial Technology", 299 | "city": "BHUBANESWAR", 300 | "state": "Odisha" 301 | }, 302 | { 303 | "name": "Kamineni Inst. of Dental Sciences, Narketpally", 304 | "city": "Nalgonda", 305 | "state": "Telangana" 306 | }, 307 | { 308 | "name": "Karnavati University", 309 | "city": "Gandhinagar", 310 | "state": "Gujarat" 311 | }, 312 | { 313 | "name": "Karpaga Vinayaga Institute Of Dental sciences", 314 | "city": "Chengalpattu", 315 | "state": "Tamil Nadu" 316 | }, 317 | { 318 | "name": "King George`s Medical University", 319 | "city": "Lucknow", 320 | "state": "Uttar Pradesh" 321 | }, 322 | { 323 | "name": "KLE VISHWANATH KATTI INSTITUTE OF DENTAL SCIENCES", 324 | "city": "Belgaum", 325 | "state": "Karnataka" 326 | }, 327 | { 328 | "name": "KMCT Dental College", 329 | "city": "Kozhikode", 330 | "state": "Kerala" 331 | }, 332 | { 333 | "name": "Krishna Institute of Medical Sciences Deemed University, Karad", 334 | "city": "Karad", 335 | "state": "Maharashtra" 336 | }, 337 | { 338 | "name": "Krishnadevaraya College of Dental Sciences & Hospital", 339 | "city": "Bengaluru", 340 | "state": "Karnataka" 341 | }, 342 | { 343 | "name": "KSR Institute of Dental Science and Research", 344 | "city": "Tiruchengode", 345 | "state": "Tamil Nadu" 346 | }, 347 | { 348 | "name": "KVG Dental College & Hospital Sullia", 349 | "city": "Sullia", 350 | "state": "Karnataka" 351 | }, 352 | { 353 | "name": "Luxmi Bai Institute of Dental Sciences & Hospital", 354 | "city": "Patiala", 355 | "state": "Punjab" 356 | }, 357 | { 358 | "name": "M R Ambedkar Dental College & Hospital Institute", 359 | "city": "Bengaluru", 360 | "state": "Karnataka" 361 | }, 362 | { 363 | "name": "M. G. R. Educational and Research Institute", 364 | "city": "Chennai", 365 | "state": "Tamil Nadu" 366 | }, 367 | { 368 | "name": "M.S. Ramaiah University of Applied Sciences", 369 | "city": "Bangalore", 370 | "state": "Karnataka" 371 | }, 372 | { 373 | "name": "Maharaja Ganga Singh Dental College & Research Centre", 374 | "city": "Sri Ganganagar", 375 | "state": "Rajasthan" 376 | }, 377 | { 378 | "name": "Maharishi Markandeshwar", 379 | "city": "Ambala", 380 | "state": "Haryana" 381 | }, 382 | { 383 | "name": "Mahe Institute of Dental Sciences & Hospital", 384 | "city": "Mahe", 385 | "state": "Pondicherry" 386 | }, 387 | { 388 | "name": "MALABAR DENTAL COLLEGE, MUNDUR", 389 | "city": "EDAPPAL", 390 | "state": "Kerala" 391 | }, 392 | { 393 | "name": "Malla Reddy Institute of Dental Sciences", 394 | "city": "Hyderabad", 395 | "state": "Telangana" 396 | }, 397 | { 398 | "name": "Manav Rachna International Institute of Research & Studies", 399 | "city": "Faridabad", 400 | "state": "Haryana" 401 | }, 402 | { 403 | "name": "Manipal College of Dental Sciences, Mangalore", 404 | "city": "Mangalore", 405 | "state": "Karnataka" 406 | }, 407 | { 408 | "name": "Manipal College of Dental Sciences, Manipal", 409 | "city": "Udupi", 410 | "state": "Karnataka" 411 | }, 412 | { 413 | "name": "Mar Baselios Dental College", 414 | "city": "Ernakulam", 415 | "state": "Kerala" 416 | }, 417 | { 418 | "name": "Maratha Mandal`s Nathajirao G Halgekar Institute", 419 | "city": "Belgaum", 420 | "state": "Karnataka" 421 | }, 422 | { 423 | "name": "Maulana Azad Institute of Dental Sciences", 424 | "city": "Delhi", 425 | "state": "Delhi" 426 | }, 427 | { 428 | "name": "Meenakshi Academy of Higher Education and Research", 429 | "city": "Chennai", 430 | "state": "Tamil Nadu" 431 | }, 432 | { 433 | "name": "MGM Dental College and Hospital, Navi Mumbai", 434 | "city": "Navi Mumbai", 435 | "state": "Maharashtra" 436 | }, 437 | { 438 | "name": "MGVs Karmaveer Bhausaheb Hire Dental College, Nashik", 439 | "city": "Nashik", 440 | "state": "Maharashtra" 441 | }, 442 | { 443 | "name": "MNR Dental College", 444 | "city": "Sangareddy", 445 | "state": "Telangana" 446 | }, 447 | { 448 | "name": "Nair Hospital Dental College", 449 | "city": "Mumbai", 450 | "state": "Maharashtra" 451 | }, 452 | { 453 | "name": "Navodaya dental College", 454 | "city": "Raichur", 455 | "state": "Karnataka" 456 | }, 457 | { 458 | "name": "NIMS University, Jaipur", 459 | "city": "Jaipur", 460 | "state": "Rajasthan" 461 | }, 462 | { 463 | "name": "NOORUL ISLAM COLLEGE OF DENTAL SCIENCES, NEYYATTINKARA", 464 | "city": "Neyyattinkara", 465 | "state": "Kerala" 466 | }, 467 | { 468 | "name": "P.M. Nadagouda Memorial Dental College & Hospital", 469 | "city": "Bagalkot", 470 | "state": "Karnataka" 471 | }, 472 | { 473 | "name": "Pacific Dental College & Hospital", 474 | "city": "Udaipur", 475 | "state": "Rajasthan" 476 | }, 477 | { 478 | "name": "Padmashree Dr. D. Y. Patil Vidyapeeth, Mumbai", 479 | "city": "Mumbai", 480 | "state": "Maharashtra" 481 | }, 482 | { 483 | "name": "Panjab University", 484 | "city": "Chandigarh", 485 | "state": "Chandigarh" 486 | }, 487 | { 488 | "name": "Pb. Govt. Dental College & Hospital", 489 | "city": "Amritsar", 490 | "state": "Punjab" 491 | }, 492 | { 493 | "name": "People?s Dental Academy", 494 | "city": "Bhopal", 495 | "state": "Madhya Pradesh" 496 | }, 497 | { 498 | "name": "PMS College of Dental Science & Research", 499 | "city": "Thiruvananthapuram", 500 | "state": "Kerala" 501 | }, 502 | { 503 | "name": "Postgraduate Institute of Dental Sciences", 504 | "city": "Rohtak", 505 | "state": "Haryana" 506 | }, 507 | { 508 | "name": "Pravara Institute of Medical Sciences, Ahmednagar", 509 | "city": "Ahmednagar", 510 | "state": "Maharashtra" 511 | }, 512 | { 513 | "name": "PSM COLLEGE OF DENTAL SC. AKKIKAVU", 514 | "city": "Thrissur", 515 | "state": "Kerala" 516 | }, 517 | { 518 | "name": "Pushpagiri College of Dental Sciences, Thiruvalla", 519 | "city": "Thiruvalla", 520 | "state": "Kerala" 521 | }, 522 | { 523 | "name": "RAGAS DENTAL COLLEGE & HOSPITAL, CHENNAI", 524 | "city": "CHENNAI", 525 | "state": "Tamil Nadu" 526 | }, 527 | { 528 | "name": "Raja Rajeswari Dental College & Hospital", 529 | "city": "Bengaluru", 530 | "state": "Karnataka" 531 | }, 532 | { 533 | "name": "RAMA UNIVERSITY UTTAR PRADESH", 534 | "city": "Kanpur Nagar", 535 | "state": "Uttar Pradesh" 536 | }, 537 | { 538 | "name": "Rishiraj College of Dental Sciences & Research Centre", 539 | "city": "Bhopal", 540 | "state": "Madhya Pradesh" 541 | }, 542 | { 543 | "name": "RUNGTA COLLEGE OF DENTAL COLLEGE SCIENCE AND RESEARCH, BHILAI", 544 | "city": "BHILAI", 545 | "state": "Chhattisgarh" 546 | }, 547 | { 548 | "name": "S B Patil Institute of Dental Sciences & Research", 549 | "city": "BIDAR", 550 | "state": "Karnataka" 551 | }, 552 | { 553 | "name": "Sankalchand Patel University, Visnagar", 554 | "city": "Visnagar", 555 | "state": "Gujarat" 556 | }, 557 | { 558 | "name": "SARASWATI DENTAL COLLEGE & HOSPITAL", 559 | "city": "Lucknow", 560 | "state": "Uttar Pradesh" 561 | }, 562 | { 563 | "name": "Sardar Patel Post Graduate Institute of Dental and Medical Sciences", 564 | "city": "LUCKNOW", 565 | "state": "Uttar Pradesh" 566 | }, 567 | { 568 | "name": "Saveetha Institute of Medical and Technical Sciences", 569 | "city": "Chennai", 570 | "state": "Tamil Nadu" 571 | }, 572 | { 573 | "name": "SDM College of Dental Sciences & Hospital", 574 | "city": "Dharwad", 575 | "state": "Karnataka" 576 | }, 577 | { 578 | "name": "Seema Dental College and Hospital, Rishikesh", 579 | "city": "Rishikesh", 580 | "state": "Uttarakhand" 581 | }, 582 | { 583 | "name": "Shree Guru Gobind Singh Tricentenary University", 584 | "city": "Gurgaon", 585 | "state": "Haryana" 586 | }, 587 | { 588 | "name": "Siksha `O` Anusandhan", 589 | "city": "Bhubaneswar", 590 | "state": "Odisha" 591 | }, 592 | { 593 | "name": "Sinhgad Dental College & Hospital, Pune", 594 | "city": "Pune", 595 | "state": "Maharashtra" 596 | }, 597 | { 598 | "name": "Sree Balaji Dental College & Hospital", 599 | "city": "Chennai", 600 | "state": "Tamil Nadu" 601 | }, 602 | { 603 | "name": "Sri Guru Ram Das Institute of Dental Sciences & Research", 604 | "city": "Amritsar", 605 | "state": "Punjab" 606 | }, 607 | { 608 | "name": "Sri Rajiv Gandhi College of Dental Sciences & Hospital", 609 | "city": "Bangalore", 610 | "state": "Karnataka" 611 | }, 612 | { 613 | "name": "Sri Ramachandra Institute of Higher Education and Research", 614 | "city": "Chennai", 615 | "state": "Tamil Nadu" 616 | }, 617 | { 618 | "name": "SRI RAMAKRISHNA DENTAL COLLEGE AND HOSPITAL, COIMBATORE", 619 | "city": "Coimbatore", 620 | "state": "Tamil Nadu" 621 | }, 622 | { 623 | "name": "Sri Siddhartha Dental college, Tumkur", 624 | "city": "Tumkur", 625 | "state": "Karnataka" 626 | }, 627 | { 628 | "name": "Sri Venkata Sai Institute of Dental Sciences", 629 | "city": "Mahabub Nagar", 630 | "state": "Telangana" 631 | }, 632 | { 633 | "name": "Sri Venkateshwaraa Dental College", 634 | "city": "Pondicherry", 635 | "state": "Pondicherry" 636 | }, 637 | { 638 | "name": "Srinivas Institute of Dental Sciences", 639 | "city": "Mangalore", 640 | "state": "Karnataka" 641 | }, 642 | { 643 | "name": "SRM Dental College", 644 | "city": "Chennai", 645 | "state": "Tamil Nadu" 646 | }, 647 | { 648 | "name": "Subharti Dental College & Hospital", 649 | "city": "Meerut", 650 | "state": "Uttar Pradesh" 651 | }, 652 | { 653 | "name": "Sudha Rustagi College of Dental Sciences & Research, Faridabad", 654 | "city": "Faridabad", 655 | "state": "Haryana" 656 | }, 657 | { 658 | "name": "Sumandeep Vidyapeeth, Vadodara", 659 | "city": "Vadodara", 660 | "state": "Gujarat" 661 | }, 662 | { 663 | "name": "Surendera Dental College and Research Institute", 664 | "city": "Ganganagar", 665 | "state": "Rajasthan" 666 | }, 667 | { 668 | "name": "Tagore Dental College & Hospital", 669 | "city": "Chennai", 670 | "state": "Tamil Nadu" 671 | }, 672 | { 673 | "name": "Teerthanker Mahaveer University", 674 | "city": "Moradabad", 675 | "state": "Uttar Pradesh" 676 | }, 677 | { 678 | "name": "The Oxford Dental College", 679 | "city": "Bangalore", 680 | "state": "Karnataka" 681 | }, 682 | { 683 | "name": "Vinayaka Mission`s Sankarachariyar Dental College", 684 | "city": "Salem", 685 | "state": "Tamil Nadu" 686 | }, 687 | { 688 | "name": "Vishnu Dental College, Bheemavaram", 689 | "city": "Bhimavaram", 690 | "state": "Andhra Pradesh" 691 | }, 692 | { 693 | "name": "Vivekanandha Denal College for Women", 694 | "city": "Triuchengode", 695 | "state": "Tamil Nadu" 696 | }, 697 | { 698 | "name": "Vokkaligara Sangha Dental College & Hospital", 699 | "city": "Bengaluru", 700 | "state": "Karnataka" 701 | }, 702 | { 703 | "name": "VYWS Dental College, Amravati", 704 | "city": "Amravati", 705 | "state": "Maharashtra" 706 | }, 707 | { 708 | "name": "Yenepoya Dental College", 709 | "city": "Mangaluru", 710 | "state": "Karnataka" 711 | } 712 | ] --------------------------------------------------------------------------------