Database of Courts
Project description
Courts-DB
Courts-DB is an open source repository to organize a db of all courts current and historical. It was built for use in Courtlistener.com.
Its main goal is to interface with CL to identify historical and current courts by string. It incldues mechanisms to filter results based on dates and/or whether it is a bankruptcy court.
Further development is intended and all contributors, corrections and additions are welcome.
Background
Free Law Project built this database using the metadata (case names, dates etc.) of over 16 millions data points. This data represents hundreds of hours of research and testing. We believe to be the most extensive open dataset of its kind.
Quickstart
You can feed in a courtlistener Court_ID or string to find a court.
from courts_db import find_court, find_court_by_id find_court_by_id("mass") returns: [{ "regex": [ "${sjc} ${ma}?", "${ma} ${sjc}", "Supreme Court Of ${ma}", "State Of ${ma} Supreme Court" ], "name_abbreviation": "Mass. Sup. Jud. Ct.", "dates": [ { "start": "1692-01-01", "end": null } ], "name": "Massachusetts Supreme Judicial Court", "level": "colr", "case_types": ["All"], "system": "state", "examples": [ "Supreme Court Of Massachusetts", "Supreme Judicial Court Of Massachusetts", "Massachusetts Supreme Judicial Court" ], "court_url": "http://www.mass.gov/courts/sjc/", "type": "appellate", "id": "mass", "location": "Massachusetts", "citation_string": "Mass." }]
from courts_db import find_court mass_sjc = find_court(u"Massachusetts Supreme Judicial Court") returns: ["mass"]
Filtering on less unique strings is built in.
Feed a date string or bankruptcy flag to filter on those parameters For example District of Massachusetts is non unique and returns both the Federal District Court of Massachusetts and its Bankruptcy Court
from datetime import datetime as dt courts_db.find_court( u"District of Massachusetts", ) returns ==> ["mad", "mab"] courts_db.find_court( u"District of Massachusetts", bankruptcy=True, ) returns ==> ["mab"] courts_db.find_court( u"District of Massachusetts", date_found=dt.strptime("10/02/1975", "%m/%d/%Y"), ) returns ==> ["mad"]
Some Notes on the Data
Somethings to keep in mind as you are reviewing the data.
The data is devided into two files courts.json and variables.json
Courts.json holds the bulk of the information
Variables.json holds templates for large numbers of regexes.
Fields
id
==> string; Courtlistener Court Identifiercourt_url
==> string; url for court websiteregex
==> array; regexes patterns to find courtsexamples
==> array; regexes patterns to find courtsname
==> string; full name of the courtname_abbreviation
==> string; court name abbreviationsdates
==> Array; Contains start date, end date and notes on date rangesystem
==> string; Defines main jurisdiction, ex. State, Federal, Triballevel
==> string; code defining where court is in system structure, ex. COLR (Court of Last Resort), IAC (Intermediate Appellate Court), GJC (General Jurisdiction Court), LJC (Limited Jurisdiction Court)location
==> string; refers to the physical location of the main courttype
==> string; Identifies kind of cases handled (Trial, Appellate, Bankruptcy, AG)citation_string
==> string; Identifies the string used in a citation to refer to the court
Installation
Installing courts-db is easy.
pip install courts_db
Or install the latest dev version from github
pip install git+https://github.com/freelawproject/courts-db.git@master
Future
Continue to improve and expand the dataset.
Add filtering mechanisms by state, reporters, citation(s), judges, counties and cities.
Deployment
If you wish to create a new version, the process is:
Update version info in setup.py and commit it.
Tag the commit with the version number.
To proceed manually
Push your commit. CI should take care of the rest.
To proceed manually
Install the requirements in requirements_dev.txt
Set up a config file at ~/.pypirc
Generate a universal distribution that worksin py2 and py3 (see setup.cfg)
python setup.py sdist bdist_wheel
Upload the distributions
twine upload dist/* -r pypi (or pypitest)
License
This repository is available under the permissive BSD license, making it easy and safe to incorporate in your own libraries.
Pull and feature requests welcome. Online editing in Github is possible (and easy!)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file courts-db-0.10.5.tar.gz
.
File metadata
- Download URL: courts-db-0.10.5.tar.gz
- Upload date:
- Size: 104.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddb93679f4de1f599a87ff37171c8b0399b4e437b4fd2fb0942eb84636f93b22 |
|
MD5 | c3670d4240b407281bb47bc78602d18f |
|
BLAKE2b-256 | d77c79dfa2934af4a9a43fba1356de6a6da76d0485f0552bb6097bea117e723f |
File details
Details for the file courts_db-0.10.5-py2.py3-none-any.whl
.
File metadata
- Download URL: courts_db-0.10.5-py2.py3-none-any.whl
- Upload date:
- Size: 112.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae5319a2568df0620281a774c5a46a4022dad9ad1a307651935b6a666cb9a70e |
|
MD5 | 6f473c82e972d2a46bd546d86765c870 |
|
BLAKE2b-256 | a94805d341cbebe656a07dd99624de45ab20de0dd8f66bbd6e668b711896f864 |