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.6.tar.gz
(3.8 kB
view details)
File details
Details for the file nyt-docket-0.0.6.tar.gz
.
File metadata
- Download URL: nyt-docket-0.0.6.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 872300042a3fb1d6e194205cba3800506a12c0eded04a1a555ec02e63f8fc6c8 |
|
MD5 | 758e09fa456b54c1d29a038b84357e5c |
|
BLAKE2b-256 | f2995ddb5111464ccb642c1987d310e0dffec99ed5ed73e8fe5138573983d1ef |