Metadata-Version: 2.1
Name: smsir
Version: 0.0.6
Summary: manage message in www.sms.ir
Home-page: https://github.com/rahimaee/smsir.git
Author: mohammad reza rahimaee
Author-email: mohammad.rahimaee@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# smsir

smsir is a Python library for  using SMS web services www.sms.ir

## Installation

Use the package manager [pip](https://pypi.org/project/smsir/) to install smsir.

```bash
pip install smsir
```

## Usage
[Sms.ir sms](https://pypi.org/project/smsir/) webservice python package. 

```python
from smsir import Token, sms

# returns 'TOKEN'
# get UserApiKey and SecretKey values from your panel
Token(UserApiKey='value', SecretKey='value').get_secure_token()

# returns 'geese'
sms().send_by_mobile_number(
    Messages='your message',
 MobileNumbers='receiver number', 
LineNumber='sender number',
Token=TOKEN #get from method Token 
)


```



## License
[MIT](https://github.com/rahimaee/smsir/blob/main/LICENSE)

