Metadata-Version: 2.4
Name: pandasdv
Version: 0.1.0
Summary: A simple survey data validation package using pandas.
Home-page: https://github.com/ChandraCherupally/pandasdv
Author: NaveenChandra Cherupally
Author-email: cherupallynaveen@gmail.com
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pandas>=2.3.3
Requires-Dist: numpy>=2.2.6
Requires-Dist: pyreadstat==1.3.1
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# pandas-validator


A Python library to validate survey and structured datasets using pandas.


## Installation
```bash
pip install pandas-validator
```


## Example
```python
from pandas-validator import SR, MULTI, initial_setup


df = initial_setup('survey_data.sav')
SR(Rout='QFILTER', QVAR='Q1', RNG=[1,2,3,4], LIST=['CID','Q1'])
```
