Metadata-Version: 2.4
Name: swatoutpy
Version: 0.1.0
Summary: A Python package to read SWAT model output files (.rch, .sub, .hru)
Author-email: Gokhan Cuceloglu <cuceloglugokhan@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/gokhancuceloglu/swatoutpy
Project-URL: Source, https://github.com/gokhancuceloglu/swatoutpy
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pandas

# swatoutpy

A lightweight Python package to read and parse SWAT model (Rev 681) output files: `.rch`, `.sub`, and `.hru`.

## Installation

```bash
pip install swatoutpy


from swatoutpy.reader import read_rch

df = read_rch("output_monthly.rch", timestep="monthly")
print(df.head())
