Metadata-Version: 2.1
Name: YesssSMS
Version: 0.3.0
Summary: YesssSMS let's you send SMS via yesss.at's website
Home-page: https://gitlab.com/flowolf/yessssms
Author: Florian Klien
Author-email: flowolf@klienux.org
License: MIT
Description: # YesssSMS
        
        [![Gitlab CI Badge](https://gitlab.com/flowolf/yessssms/badges/master/pipeline.svg)](https://gitlab.com/flowolf/yessssms/pipelines) [![coverage report](https://gitlab.com/flowolf/yessssms/badges/master/coverage.svg)](https://gitlab.com/flowolf/yessssms/commits/master)
        
        YesssSMS let's you send SMS via yesss.at's website. Regular rates apply and a
        contract or prepaid plan is needed.
        
        Use your website login and password.
        
        This module is not suitable for batch SMS sending.
        Each send() call logs in and out of yesss.at's website.
        
        Currently the library supports Python 3.3+, but is only [tested against Python 3.5 to 3.7](https://gitlab.com/flowolf/yessssms/-/jobs).
        
        ### Install
        ```bash
        > pip3 install YesssSMS
        ```
        ### Usage
        ```python
        >>> from YesssSMS import YesssSMS
        >>> sms = YesssSMS(YOUR_LOGIN, YOUR_PASSWORD)
        >>> sms.send(TO_NUMBER, "Message")
        ```
        or for the command line:
        ```bash
        > echo '[YESSS_AT]\nYESSS_LOGIN=06501234567\nYESSS_PASSWD=password' > ~/.config/yessssms.conf
        > yessssms --test # test your setup, send yourself a message
        > yessssms -t 0664123123123 -m "sending SMS from the command line :)"
        ```
        
Keywords: SMS,Yesss,messaging
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Communications :: Telephony
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.3
Description-Content-Type: text/markdown
