Metadata-Version: 2.4
Name: era_py
Version: 0.0.15
Summary: Helper functions and data for Python versions of Empirical Research in Accounting: Tools and Methods
Author: Ian D. Gow
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: pyarrow
Requires-Dist: statsmodels
Requires-Dist: scipy
Requires-Dist: ibis-framework[postgres]
Requires-Dist: requests
Requires-Dist: pyreadr
Requires-Dist: patsy
Requires-Dist: python-dotenv
Provides-Extra: polars
Requires-Dist: polars; extra == "polars"
Provides-Extra: tables
Requires-Dist: great-tables; extra == "tables"

# era_py

Helpers for the Python port of *Empirical Research in Accounting: Tools and Methods*.

## Install

```
pip install era-py
pip install "era-py[tables]"
```

## Usage
```python
from era_py import load_data, ols_dropcollinear

camp = load_data("camp_attendance")
```
