Skip to main content

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.

  1. The data is devided into two files courts.json and variables.json

  2. Courts.json holds the bulk of the information

  3. Variables.json holds templates for large numbers of regexes.

Fields

  1. id ==> string; Courtlistener Court Identifier

  2. court_url ==> string; url for court website

  3. regex ==> array; regexes patterns to find courts

  4. examples ==> array; regexes patterns to find courts

  5. name ==> string; full name of the court

  6. name_abbreviation ==> string; court name abbreviations

  7. dates ==> Array; Contains start date, end date and notes on date range

  8. system ==> string; Defines main jurisdiction, ex. State, Federal, Tribal

  9. level ==> 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)

  10. location ==> string; refers to the physical location of the main court

  11. type ==> string; Identifies kind of cases handled (Trial, Appellate, Bankruptcy, AG)

  12. 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

  1. Continue to improve and expand the dataset.

  2. Add filtering mechanisms by state, reporters, citation(s), judges, counties and cities.

Deployment

If you wish to create a new version manually, the process is:

  1. Update version info in setup.py

  2. Install the requirements in requirements_dev.txt

  3. Set up a config file at ~/.pypirc

  4. Generate a universal distribution that worksin py2 and py3 (see setup.cfg)

    python setup.py sdist bdist_wheel
  5. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

courts-db-0.9.24.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

courts_db-0.9.24-py2.py3-none-any.whl (81.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file courts-db-0.9.24.tar.gz.

File metadata

  • Download URL: courts-db-0.9.24.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10

File hashes

Hashes for courts-db-0.9.24.tar.gz
Algorithm Hash digest
SHA256 30111408276496b7c8ecf46ba318f98bb4a3163ee66e956e2af7d95570c1ec2a
MD5 3cea7373c7bd072f437315af1487f7d4
BLAKE2b-256 234efbeb88d6865890da1e9b0f9997038e4a1caaa87f17482ef2f477549befc2

See more details on using hashes here.

File details

Details for the file courts_db-0.9.24-py2.py3-none-any.whl.

File metadata

  • Download URL: courts_db-0.9.24-py2.py3-none-any.whl
  • Upload date:
  • Size: 81.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10

File hashes

Hashes for courts_db-0.9.24-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 db6ea9971706f751071ae22c68a4f1f10c2ba1c5ed6bb1ca57ea15d76de5d81c
MD5 6623f27a49237063db50c510895b2d22
BLAKE2b-256 a2adc459caa5b7e83f302a0b55775091cdabe99ccb8050eb68a4036381b0d134

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page