Metadata-Version: 2.1
Name: povertylevel
Version: 0.0.5
Summary: U.S. federal poverty level guidelines used to determine financial eligibility for certain federal programs
Home-page: https://github.com/bryand1/python-poverty-level
Author: Bryan Andrade
Author-email: me@bryanandrade.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown


## U.S. Federal Poverty Guidelines

![license MIT](https://s3-us-west-1.amazonaws.com/bryand1/images/badges/license-MIT-blue.svg)
![python 3.6 | 3.7](https://s3-us-west-1.amazonaws.com/bryand1/images/badges/python-3.6-3.7.svg)


### Usage

```python
from poverty import PovertyLevel

pl = PovertyLevel()
pl.state = 'AK'
pl.get(household_size=3)  # 26660
pl.percent(income=26660, household_size=3) # 1.00
pl.below(income=26500, household_size=3)  # True

# You can also pass `state` as an argument
pl.get(household_size=3, state='New Jersey')  # 21330
pl.below(income=19000, household_size=3, state='New Jersey')  # True
```

### Resources

[Poverty Guidelines](https://aspe.hhs.gov/poverty-guidelines)  


