An open API service indexing awesome lists of open source software.

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.

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.