Metadata-Version: 2.1
Name: smshelper
Version: 0.1.2
Summary: SMS helper and tool
Home-page: https://github.com/jaygel179/smshelper
Author: Elpedio Adoptante Jr
Author-email: adoptante.elpedio@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent

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)


TODO
----
- docs
- travis


License
-------
MIT licensed. See the bundled [LICENSE](LICENSE) file for more details.


