https://github.com/demfier/get-case-status
The script will tell the details of any court case in India.
https://github.com/demfier/get-case-status
Last synced: 40 minutes ago
JSON representation
The script will tell the details of any court case in India.
- Host: GitHub
- URL: https://github.com/demfier/get-case-status
- Owner: Demfier
- Created: 2016-04-05T13:24:33.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-09T19:06:32.000Z (about 10 years ago)
- Last Synced: 2025-05-01T15:50:30.503Z (about 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Get Case Status
Okay so I did this just as a part of my curiosity. I mean how cool it would be to know the status of your court case if you have any.
courtnic.nic.in and saw that it's pretty easy to extract the data out of it.
All I needed to do was to submit the information in their server through the form they provided and get the data out of it.
I just needed to know the number which represents a particular case type and then WHAM!!!
1 hr. of coding and a bit of searching the site and the work was done.
How to use it:
Make sure you have root access in your PC and then type this in your terminal :-
>>>python
>>>from case_status import *
>>>get_case_status(case_type,case_number,year)
And then just wait for a few seconds.. and you will get a dictionary containing
is_disposed: this will display the information about the status of the case. If it is disposed(the case is closed) it will be true, otherwise false
respondent:respondent of the case
petitioner:petitioner of the case
pet_advocate:Advocate for petitioner
res_advocate:Advocate for respondent
converted_case:Some times the case is converted into other type..so if it happens, it will show that.
Hope it will help some people now :-D.