Metadata-Version: 2.1
Name: bhimupipy
Version: 0.0.2
Summary: A package to find upi details details
Home-page: https://github.com/shrikantbache/bhimupipy.git
Author: BACHE SHRIKANT GANGADHAR
Author-email: bacheshrikant@gmail.com
Maintainer: BACHE SHRIKANT GANGADHAR
Maintainer-email: bacheshrikant@gmail.com
License: MIT
Keywords: search,bhimupijs,brute,address,vpa,upi,spy
Platform: any
Classifier: Topic :: Utilities
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# bhimupipy

BHIMUPIPY is a pip packages which can  verify  UPI IDs.

## Installation
Install this pip package .
```bash
pip install  bhimupipy
```

and use it like

```python
from bhimupipy import verify_upi
```

# Usage
### CLI

```
~$ bhimupipy --help

usage: -m [-h] [-v] [--upi UPI]

bhimupipy: Get the details of UPI ID.

options:
  -h, --help     show this help message and exit
  -v, --version  print the version of the package (default: False)
  --upi UPI      see upi datails (default: None)
```
### Verifying  UPI ID
```
~$ bhimupipy --upi sumithemmadi@ybl
```

```yaml
~$ bhimupipy --upi sumithemmadi@ybl
{
   "result": true,
   "vpa": "sumithemmadi@upi",
   "vpaValid": true,
   "payeeAccountName": "EMMADI SUMITH KUMAR",
   "message": "Verified UPI ID"
}
```
- This will verify UPI ID



## Verifing UPI ID 
```python
from bhimupipy import verify_upi
verify_upi("sumithemmadi@ybl")
```

## output
```py
{
   "result": true,
   "vpa": "sumithemmadi@upi",
   "vpaValid": true,
   "payeeAccountName": "EMMADI SUMITH KUMAR",
   "message": "Verified UPI ID"
}
```

