Metadata-Version: 2.1
Name: waterservices
Version: 0.1.1
Summary: A pyhton package to work with WaterServices USGS
Home-page: https://github.com/javad-rzvn/waterservices
Author: javad-rzvn
Author-email: javad.rezvanpour@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: dask (>=2022.2.0,<2023.0.0)
Requires-Dist: pandas (>=1.3.5,<2.0.0)
Requires-Dist: requests (>=2.27.1,<3.0.0)
Requires-Dist: tqdm (>=4.64.0,<5.0.0)
Project-URL: Repository, https://github.com/javad-rzvn/waterservices
Description-Content-Type: text/markdown

# WATERSERVICES

A pyhton package to work with WaterServices USGS

My Personal Website: [Water Directory](https://waterdirectory.ir/).


To import, use command below:

```bash
from waterservices import NWIS
```

Available functions:
- siteInfo()


## Get a csv file for site info of any type

```bash
columns = ['site_no', 'station_nm', 'dec_lat_va', 'dec_long_va', 'huc_cd', 'data_type_cd',
        'parm_cd', 'stat_cd', 'begin_date', 'end_date']
filters = {
    'seriesCatalogOutput': 'true',
    'outputDataTypeCd': 'dv,pk,gw',
    'siteStatus': 'all',
    'hasDataTypeCd': 'dv,gw'
}
nwis = NWIS('GW', ['01'], filters, columns, 'wells').siteInfo()
```

You can customize columns, filters, stationType, and HUC code.
