Download client for legal opinions
Project description
A Python library for downloading and researching legal opinions using the Caselaw Access Project API. Note that new CAP accounts are no longer available and the CAP API was sunset on September 1, 2024.
Examples
In this example, Justopinion is used to download the decision with the citation 1 Breese 34.
>>> import os
>>> from justopinion import CAPClient
>>> client = CAPClient(api_token=os.getenv("YOUR_SECRET_API_TOKEN"))
>>> thornton = client.read_cite("1 Breese 34", full_case=True)
>>> thornton.casebody.data.parties[0]
'John Thornton and others, Appellants, v. George Smiley and John Bradshaw, Appellees.'
You can also use Justopinion to locate text in an opinion:
>>> thornton.opinions[0].locate_text("The court knows of no power in the administrator")
TextPositionSet{TextPositionSelector[22, 70)}
Or to get the text from a specified location in the opinion:
>>> selection = thornton.opinions[0].select_text([(258, 294), (312, 359)]) >>> str(selection) '…The note was made to West alone, and…the suit should have been commenced in his name…'
And you can use Justopinion to follow citations in an opinion and download the cited cases:
>>> str(thornton.cites_to[0]) 'Citation to 15 Ill., 284' >>> cited = client.read_cite(thornton.cites_to[0], full_case=True) >>> str(cited) 'Marsh v. People, 15 Ill. 284 (1853-12-01)'
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file justopinion-0.4.0.tar.gz.
File metadata
- Download URL: justopinion-0.4.0.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12441dfd110a278f031db65ddc3116d3116f58cf55903cced0d5134c307e8ee3
|
|
| MD5 |
d01470668898f5de813530152105486b
|
|
| BLAKE2b-256 |
78703901baa161c1bd0a6e30bed25bdfbab7bd2103c7d2bccb521e96167aa239
|
File details
Details for the file justopinion-0.4.0-py3-none-any.whl.
File metadata
- Download URL: justopinion-0.4.0-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1da0d2e65fc7273ee68c19e4d5d52229724bf8438169a28b419947f5ea1e8c9f
|
|
| MD5 |
b6e4f3cb919a53ab378104120f6087d7
|
|
| BLAKE2b-256 |
8e09baa6320d52b019e0b36528f11a316d327b737999d12f34a2b91a952acae9
|