Python client for parsing SCOTUS cases from the granted/noted and orders dockets.
Project description
Getting started
pip install nyt-docket
Using nyt-docket
Demo app
Run the demo app.
python -m docket.demo
Modules
Use the docket loader manually from within your Python script.
Grants (new cases)
from docket import grants
g = grants.Load()
g.scrape()
for case in g.cases:
print case.__dict__
Slip opinions (decisions)
from docket import slipopinions
o = slipopinions.Load()
o.scrape()
for case in o.cases:
print case.__dict__
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
nyt-docket-0.0.4.tar.gz
(3.6 kB
view details)
File details
Details for the file nyt-docket-0.0.4.tar.gz.
File metadata
- Download URL: nyt-docket-0.0.4.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fa435df253ec5863e612d44d6224bd414e0a62bdd42ca6991933a5281b63aec
|
|
| MD5 |
ce94759bc39f345d7860de15f988a87a
|
|
| BLAKE2b-256 |
172257ad38b036bc994c2542f58598ca878f73875e9a990b54ff85bf62d93df1
|