Metadata-Version: 2.1
Name: py-persian-sms
Version: 0.0.3
Summary: A Python library for sending SMS via sms.ir API
Home-page: https://github.com/nashviamir/py-persian-sms
Author: Amirhossein Nashvi
Author-email: <amirhosseinnashvi@gmail.com>
License: UNKNOWN
Keywords: sms.ir,sms,python-sms.ir
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


## py-persian-sms



<p dir="rtl">

پکیج پایتون برای کار با ای پی آی sms.ir .در این پکیج تنها قابلیت **ارسال پیامک** به وسیله ای پی آی فعال است.

</p>

<p dir="rtl">

توسعه توسط امیرحسین نشوی

</p>



## how to use

installation



    pip install py-persian-sms



usage



    from pars_sms import Sms

	

	api_key = "YOUR-API-KEY"

	secret_key = "YOUR-SECRET-KEY"

	line_number = "YOUR-LINE-NUMBER" #only required for bulk sms and sms without template

	

	manager = Sms(api_key, secret_key, line_number)

	manager.send("0912XXXXXXX",  text="سلام")

	

