Metadata-Version: 2.2
Name: HammrahAval
Version: 1.0.1
Summary: A library for HammrahAval Application
Home-page: https://github.com/ItsOkp-TM/HammrahAval
Author: Sepehr Dehghan
Author-email: sepehrbiggamer@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# HammrahAval

A library for HammrahAval Application

```python
import HammrahAval, asyncio

# Replace with your actual phone number
PhoneNumber = "9123456789"

async def Test():
    async with HammrahAval.Client(PhoneNumber) as client:
        if hasattr(client, "NumberOfTry"): Login = await client.Login(input("Inter the 4 digit code : "))
        else: Login = True
        
        if Login:
            print(await client.GetMe())
            print(await client.GetMySIMCards())
            print(await client.GetMyBalance())
            print(await client.GetMyPackages())
            print(await client.GetMyScore())

asyncio.run(Test())
```
