Metadata-Version: 2.1
Name: YesssSMS
Version: 0.4.1
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
        
        [![Python version](https://img.shields.io/pypi/pyversions/yessssms.svg)](https://gitlab.com/flowolf/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) [![pypi version](https://img.shields.io/pypi/v/yessssms.svg?color=blue)](https://pypi.org/project/yessssms) [![license](https://img.shields.io/pypi/l/yessssms.svg)](https://gitlab.com/flowolf/yessssms/blob/master/LICENSE.txt)
        
        YesssSMS let's you send SMS via yesss.at's website. Regular rates apply and a
        contract or prepaid plan is needed.
        
        
        Alternatively you can use MVNOs (Mobile Virtual Network Operators) that use the kontomanager.at web interface.
        These include:
        * YESSS
        * billitel
        * EDUCOM
        * fenercell
        * georg
        * goood
        * kronemobile
        * kuriermobil
        * SIMfonie
        * teleplanet
        * WOWWW
        * yooopi
        
        ![all provider logos](https://gitlab.com/flowolf/yessssms/raw/master/logo/all.png "supported providers")
        
        Use your website login and password.
        
        use the `--mvno` flag to set your provider, or define it in the config file.
        
        This module is not suitable for batch SMS sending.
        Each send() call logs in and out of your provider's website.
        
        Currently the library supports Python 3.5+, and is [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 with a different MVNO:
        >>> sms = YesssSMS(YOUR_LOGIN, YOUR_PASSWORD, provider="goood")
        >>> sms.send(TO_NUMBER, "Message")
        ```
        or for the command line:
        ```bash
        > yessssms --print-config-file > ~/.config/yessssms.conf
        # edit the config file, set a login, password, default recipient, and MVNO
        > vi ~/.config/yessssms.conf
        > yessssms --test # test your setup, send yourself a message
        > yessssms -t 0664123123123 -m "sending SMS from the command line :)"
        
        > # if a default recipient is defined, you can omit the -t flag
        > # the message can be piped into yessssms (it will be cut to max 3 SMS, 3*160 chars)
        > echo "important message!" | yessssms -m -
        
        > # MVNO
        > yessssms --t 06501234567 --mvno educom -m "sending SMS using a MVNO"
        ```
        
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.5
Description-Content-Type: text/markdown
