# ecourts [![Coverage Status](https://coveralls.io/repos/github/captn3m0/ecourts/badge.svg?branch=main)](https://coveralls.io/github/captn3m0/ecourts?branch=main) [![PyPI - Latest Version](https://img.shields.io/pypi/v/ecourts)](https://pypi.org/project/ecourts/) [![GitHub Tag](https://img.shields.io/github/v/tag/captn3m0/ecourts?filter=v*)](https://github.com/captn3m0/ecourts/releases/latest) [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/captn3m0/ecourts/test.yml?branch=main)](https://github.com/captn3m0/ecourts/actions/workflows/test.yml) [![docs](https://img.shields.io/badge/docs-Guide-9b59b6)](https://captnemo.in/ecourts/) [![docs](https://img.shields.io/badge/docs-API_Reference-9b59b6)](https://captnemo.in/ecourts/src/)
This is a information retrieval toolkit to fetch case information from the
ECourts Service. This is primarily meant for journalists, and law
researchers who need bulk access to the ECourts website to get orders,
judgements, or lists of cases that match their criteria.
The final goal is to cover all services under the `ecourts.gov.in` domain, but it currently
supports a few services covered at https://hcservices.ecourts.gov.in/ecourtindiaHC/.
It covers all the High Courts and their various benches.
Type of Query | Supported | Inputs
--------------|-----------|-------
Search for cases by Case Number | 🚧WIP | Case Type, Case Number, Year
Search for cases by FIR Number | 🚧WIP | Police Station, FIR Number†, Year†, Case Status (Pending/Disposed/Both)â€
Search for cases by Party Name | 🔜Planned | Petitioner/Respondent Name, Year†, Case Status (Pending/Disposed/Both)â€
Search for cases by Advocate Name | 🚫No
Search for cases by Filing Number | 🚧WIP | Filing Number, Year
Search for cases by Act | ✅Yes | Act Type, Status
Search for cases by Case Type | 🚧WIP | Case Type, Year†, Pending/Disposed
Search for Case Orders/Judgement by Case Number | 🚧WIP | Case Type, Case Number, Year
Search for Case Orders/Judgement by Filling Number | 🚧WIP | Filing Number, Year
Search for Case Orders/Judgement by Judge Wise | 🚫No |
Search for Case Orders/Judgement by Party Name | 🔜Planned | Petitioner/Respondent Name, Year
Search for Case Orders/Judgement by Order Date | ✅Yes | Date
Get Cause List | ✅Yes | Date|
**†- Optional**
## Case Types
Each of the individual courts use their own numbering system for various case-types. So the same type of case might have different ID depending on the court. This can even vary between various benches of the same High Court. For example, HCB (Habeas Corpus Petition) is numbered the following different ways across various courts (not exhaustive):
Court |ID
------|----
Madras High Court - Principal Bench| 22
Madras High Court - Madurai Bench | 164
High Court of Jammu and Kashmir - Jammu Wing|17
High Court of Jammu and Kashmir - Srinagar Wing|171
As such, before doing any kind of work that relies on case type (such as fetching case details, or orders by case type) - you must get the relevant case type idenfiers. You can run:
`ecourts get-case-type --state-code SC [--court-code CC]` to
get the case type identifiers for a particular court. If the
`state-code/court-code` identifiers are not provided, the case types will
be fetched for all known courts. A list of all known courts is available
at [courts.csv](courts.csv) published as part of the source code.
## Act Types
Similar to Case Types, Act idenfiers are different between courts. You can use
`ecourts get-act-type --state-code SC [--court-code CC]`
to get the act type identifiers for a particular court.
## Types
The primary two classes that most users will deal with are Court, and ECourt. A court is one of the high court benches covered at https://hcservices.ecourts.gov.in/ecourtindiaHC/,
and an ECourt is the primary class that deals with the website.
Other entities involved are more legal in nature:
- [Case](https://captnemo.in/ecourts/src/entities/case.html#src.entities.case.Case)
- [CaseType](https://captnemo.in/ecourts/src/entities/case_type.html)
- [ActType](https://captnemo.in/ecourts/src/entities/act_type.html)
- [FIR](https://captnemo.in/ecourts/src/entities/fir.html)
- [Hearing](https://captnemo.in/ecourts/src/entities/hearing.html)
- [Objection](https://captnemo.in/ecourts/src/entities/objection.html)
- [Order](https://captnemo.in/ecourts/src/entities/order.html) - An order or judgement in a case.
- [Party](https://captnemo.in/ecourts/src/entities/party.html) - Either a petitioner or a responded to a case.
- [Court](https://captnemo.in/ecourts/src/entities/court.html)
- [ECourt](https://captnemo.in/ecourts/src/ecourt.html) APIs are also documented.
## Documentation
- Canonical link for the project is <https://captnemo.in/ecourts/>.
- General guidance is available via `ecourts --help` or `ecourts cmd --help`.
- Python documentation is available at [captnemo.in/ecourts/src](https://captnemo.in/ecourts/src/).
- Coverage reports are published at [Coveralls](https://coveralls.io/github/captn3m0/ecourts).
## Guiding Principles
- Make it easy to fetch case information.
- Store information in accessible formats, for easy retrieval and querying.
- Use standard identifiers, such as ISO-3166 for state codes.
- Be nice to the ecourts website. Retry failed requests, but do not hammer the site.
In case of 5xx errors, wait for a while before retrying.
## Citation
If you use this for any research purposes, please use the following
citation information. In `BiBTeX` format:
```bibtex
@software{Abhay_Rana_ecourts_2024,
author = {{Abhay Rana}},
month = aug,
title = {{ecourts}},
version = {0.0.6},
year = {2024}
}
```
In APA format:
```
Rana, A. ecourts [Computer software]. https://github.com/captn3m0/ecourts
```
## LICENSE
Licensed under `GPL3-or-later`. If you run this code, you are responsible
for the legal implications of the same. The tool is intentionally
single-threaded, and does not offer any parallelism. This is to avoid
overloading the ecourts website servers, which are already
quite slow. Please note sections 15-16 of the LICENSE, which are summarized here:
```
There is no warranty for the program, to the extent permitted by
applicable law. In no event unless required by applicable law or agreed to in
writing will any copyright holder, or any other party who modifies and/or
conveys the program as permitted above, be liable to you for damages,
including any general, special, incidental or consequential damages arising
out of the use or inability to use the program.
```
As part of GPL3 obligations:
>You may copy, distribute and modify the software as long as you track
changes/dates in source files. Any modifications to this code must also be
made available under the GPL along with build & install instructions.
Raw data
{
"_id": null,
"home_page": null,
"name": "ecourts",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "ecourts, legal-research, india, judiciary, law, information-retrieval",
"author": "Abhay Rana",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/cb/84/b2fe34c632e5b15fd1c7690dfd5106cb9bef3da867b9239323344a2eb9e3/ecourts-0.0.7.tar.gz",
"platform": null,
"description": "# ecourts [![Coverage Status](https://coveralls.io/repos/github/captn3m0/ecourts/badge.svg?branch=main)](https://coveralls.io/github/captn3m0/ecourts?branch=main) [![PyPI - Latest Version](https://img.shields.io/pypi/v/ecourts)](https://pypi.org/project/ecourts/) [![GitHub Tag](https://img.shields.io/github/v/tag/captn3m0/ecourts?filter=v*)](https://github.com/captn3m0/ecourts/releases/latest) [![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/captn3m0/ecourts/test.yml?branch=main)](https://github.com/captn3m0/ecourts/actions/workflows/test.yml) [![docs](https://img.shields.io/badge/docs-Guide-9b59b6)](https://captnemo.in/ecourts/) [![docs](https://img.shields.io/badge/docs-API_Reference-9b59b6)](https://captnemo.in/ecourts/src/)\n\n\nThis is a information retrieval toolkit to fetch case information from the\nECourts Service. This is primarily meant for journalists, and law\nresearchers who need bulk access to the ECourts website to get orders,\njudgements, or lists of cases that match their criteria.\n\nThe final goal is to cover all services under the `ecourts.gov.in` domain, but it currently\nsupports a few services covered at https://hcservices.ecourts.gov.in/ecourtindiaHC/.\n\nIt covers all the High Courts and their various benches.\n\nType of Query | Supported | Inputs\n--------------|-----------|-------\nSearch for cases by Case Number | \ud83d\udea7WIP | Case Type, Case Number, Year\nSearch for cases by FIR Number | \ud83d\udea7WIP | Police Station, FIR Number\u2020, Year\u2020, Case Status (Pending/Disposed/Both)\u2020\nSearch for cases by Party Name | \ud83d\udd1cPlanned | Petitioner/Respondent Name, Year\u2020, Case Status (Pending/Disposed/Both)\u2020\nSearch for cases by Advocate Name | \ud83d\udeabNo\nSearch for cases by Filing Number | \ud83d\udea7WIP | Filing Number, Year\nSearch for cases by Act | \u2705Yes | Act Type, Status\nSearch for cases by Case Type | \ud83d\udea7WIP | Case Type, Year\u2020, Pending/Disposed\nSearch for Case Orders/Judgement by Case Number | \ud83d\udea7WIP | Case Type, Case Number, Year\nSearch for Case Orders/Judgement by Filling Number | \ud83d\udea7WIP | Filing Number, Year\nSearch for Case Orders/Judgement by Judge Wise | \ud83d\udeabNo |\nSearch for Case Orders/Judgement by Party Name | \ud83d\udd1cPlanned | Petitioner/Respondent Name, Year\nSearch for Case Orders/Judgement by Order Date | \u2705Yes | Date\nGet Cause List | \u2705Yes | Date|\n\n**\u2020 - Optional**\n\n## Case Types\n\nEach of the individual courts use their own numbering system for various case-types. So the same type of case might have different ID depending on the court. This can even vary between various benches of the same High Court. For example, HCB (Habeas Corpus Petition) is numbered the following different ways across various courts (not exhaustive):\n\nCourt |ID\n------|----\nMadras High Court - Principal Bench| 22\nMadras High Court - Madurai Bench | 164\nHigh Court of Jammu and Kashmir - Jammu Wing|17\nHigh Court of Jammu and Kashmir - Srinagar Wing|171\n\nAs such, before doing any kind of work that relies on case type (such as fetching case details, or orders by case type) - you must get the relevant case type idenfiers. You can run:\n\n`ecourts get-case-type --state-code SC [--court-code CC]` to\nget the case type identifiers for a particular court. If the\n`state-code/court-code` identifiers are not provided, the case types will\nbe fetched for all known courts. A list of all known courts is available\nat [courts.csv](courts.csv) published as part of the source code.\n\n## Act Types\n\nSimilar to Case Types, Act idenfiers are different between courts. You can use\n\n`ecourts get-act-type --state-code SC [--court-code CC]` \nto get the act type identifiers for a particular court.\n\n## Types\n\nThe primary two classes that most users will deal with are Court, and ECourt. A court is one of the high court benches covered at https://hcservices.ecourts.gov.in/ecourtindiaHC/,\nand an ECourt is the primary class that deals with the website.\n\nOther entities involved are more legal in nature:\n\n- [Case](https://captnemo.in/ecourts/src/entities/case.html#src.entities.case.Case)\n- [CaseType](https://captnemo.in/ecourts/src/entities/case_type.html)\n- [ActType](https://captnemo.in/ecourts/src/entities/act_type.html)\n- [FIR](https://captnemo.in/ecourts/src/entities/fir.html)\n- [Hearing](https://captnemo.in/ecourts/src/entities/hearing.html)\n- [Objection](https://captnemo.in/ecourts/src/entities/objection.html)\n- [Order](https://captnemo.in/ecourts/src/entities/order.html) - An order or judgement in a case.\n- [Party](https://captnemo.in/ecourts/src/entities/party.html) - Either a petitioner or a responded to a case.\n- [Court](https://captnemo.in/ecourts/src/entities/court.html)\n- [ECourt](https://captnemo.in/ecourts/src/ecourt.html) APIs are also documented.\n\n## Documentation\n\n- Canonical link for the project is <https://captnemo.in/ecourts/>.\n- General guidance is available via `ecourts --help` or `ecourts cmd --help`.\n- Python documentation is available at [captnemo.in/ecourts/src](https://captnemo.in/ecourts/src/).\n- Coverage reports are published at [Coveralls](https://coveralls.io/github/captn3m0/ecourts).\n\n## Guiding Principles\n\n- Make it easy to fetch case information.\n- Store information in accessible formats, for easy retrieval and querying.\n- Use standard identifiers, such as ISO-3166 for state codes.\n- Be nice to the ecourts website. Retry failed requests, but do not hammer the site.\n In case of 5xx errors, wait for a while before retrying.\n\n## Citation\n\nIf you use this for any research purposes, please use the following\ncitation information. In `BiBTeX` format:\n\n```bibtex\n@software{Abhay_Rana_ecourts_2024,\nauthor = {{Abhay Rana}},\nmonth = aug,\ntitle = {{ecourts}},\nversion = {0.0.6},\nyear = {2024}\n}\n```\n\nIn APA format:\n\n```\nRana, A. ecourts [Computer software]. https://github.com/captn3m0/ecourts\n```\n\n\n## LICENSE\n\nLicensed under `GPL3-or-later`. If you run this code, you are responsible\nfor the legal implications of the same. The tool is intentionally\nsingle-threaded, and does not offer any parallelism. This is to avoid\noverloading the ecourts website servers, which are already\nquite slow. Please note sections 15-16 of the LICENSE, which are summarized here:\n\n```\nThere is no warranty for the program, to the extent permitted by\napplicable law. In no event unless required by applicable law or agreed to in\nwriting will any copyright holder, or any other party who modifies and/or\nconveys the program as permitted above, be liable to you for damages,\nincluding any general, special, incidental or consequential damages arising\nout of the use or inability to use the program.\n```\n\nAs part of GPL3 obligations:\n\n>You may copy, distribute and modify the software as long as you track\n changes/dates in source files. Any modifications to this code must also be\n made available under the GPL along with build & install instructions.\n",
"bugtrack_url": null,
"license": null,
"summary": "ecourts is a information retrieval tool for Indian High Courts.",
"version": "0.0.7",
"project_urls": null,
"split_keywords": [
"ecourts",
" legal-research",
" india",
" judiciary",
" law",
" information-retrieval"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "cb2d1de5ea606f57149f29259c3c5da2a7c122179ffc051b1d2609917961de95",
"md5": "932cbfe7d65bf8cafac99729f45fd2d5",
"sha256": "907abd4f7c6d237c411e2d62033699918043c30e7d93b746ee9add8e09a8e6c0"
},
"downloads": -1,
"filename": "ecourts-0.0.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "932cbfe7d65bf8cafac99729f45fd2d5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 38237,
"upload_time": "2024-08-15T07:14:37",
"upload_time_iso_8601": "2024-08-15T07:14:37.870875Z",
"url": "https://files.pythonhosted.org/packages/cb/2d/1de5ea606f57149f29259c3c5da2a7c122179ffc051b1d2609917961de95/ecourts-0.0.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb84b2fe34c632e5b15fd1c7690dfd5106cb9bef3da867b9239323344a2eb9e3",
"md5": "245597cbf6c70f4a1e578414f6c4e88f",
"sha256": "a887442041f0eb04809fbce7998aa8ab23547413dc0921e7ba00e396783d2a4b"
},
"downloads": -1,
"filename": "ecourts-0.0.7.tar.gz",
"has_sig": false,
"md5_digest": "245597cbf6c70f4a1e578414f6c4e88f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 209475,
"upload_time": "2024-08-15T07:14:39",
"upload_time_iso_8601": "2024-08-15T07:14:39.794625Z",
"url": "https://files.pythonhosted.org/packages/cb/84/b2fe34c632e5b15fd1c7690dfd5106cb9bef3da867b9239323344a2eb9e3/ecourts-0.0.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-15 07:14:39",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "ecourts"
}