Metadata-Version: 2.3
Name: mirrulations
Version: 0.1.0
Summary: A utility tool for accessing data from the Mirrulations dataset.
Author: Jay Qi
Author-email: Jay Qi <jayqi@users.noreply.github.com>
Requires-Dist: boto3
Requires-Dist: click
Requires-Dist: tqdm
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Mirrulations

A command-line tool for working with dockets from regulations.gov via the [Mirrulations dataset](https://registry.opendata.aws/mirrulations/).

This tool currently has two commands that wrap two scripts:

- `mirrulations fetch` — Download all data for a specific docket by ID. See [documentation](https://github.com/mirrulations/mirrulations-fetch/).
- `mirrulations csv` — Reformat comments data as a tabular CSV file. See [documentation](https://github.com/mirrulations/mirrulations-csv).

## Example usage

```bash
# Download Docket CMS-2019-0039 to ./CMS-2019-0039
mirrulations fetch CMS-2019-0039

# Transform comments into a CSV to ./CMS-2019-0039.csv
mirrulations csv CMS-2019-0039/raw-data/comments/
```
