Metadata-Version: 2.1
Name: smshelper
Version: 0.1.3
Summary: SMS helper and tool
Home-page: https://github.com/jaygel179/smshelper
Author: Elpedio Adoptante Jr
Author-email: adoptante.elpedio@gmail.com
License: UNKNOWN
Description: [![Build Status](https://travis-ci.org/jaygel179/smshelper.svg?branch=master)](https://travis-ci.org/jaygel179/sms-counter)
        [![Coverage Status](https://github.com/jaygel179/smshelper/blob/master/coverage.svg)](https://pypi.org/project/coverage-badge/)
        
        
        SMS Helper
        ==========
        SMS tool that can help you properly count the length of an SMS, calculate the part and what encoding it is.
        
        
        Installation
        ------------
        `$ pip install smshelper`
        
        
        Supports
        --------
        - Python 2
        
        
        Requirements
        ------------
        - None
        
        
        Usage
        -----
        ```python
        >>> from smshelper import SMSHelper
        >>> sms = SMSHelper('Sample message.')
        >>> sms.count()
        15
        >>> sms.parts()
        1
        >>> sms.detect_encoding()
        'GSM_7BIT'
        ```
        
        
        Original Idea
        -------------
        [danxexe/sms-counter](https://github.com/danxexe/sms-counter)
        
        
        
        License
        -------
        MIT licensed. See the bundled [LICENSE](LICENSE) file for more details.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
