Metadata-Version: 1.1
Name: django-fs-smsc
Version: 0.1
Summary: Django integration with SMS Centre
Home-page: https://bitbucket.org/fogstream/django-fs-smsc
Author: Yuri Lya
Author-email: yuri.lya@fogstream.ru
License: The MIT License (MIT)
Description: Installation
        ============
        
        1. Install ``django-fs-smsc`` using ``pip``::
        
            $ pip install django-fs-smsc
        
        2. Add ``'smsc'`` to your ``INSTALLED_APPS`` setting::
        
            INSTALLED_APPS = (
                ...
                'smsc',
                ...
            )
        
        3. Add ``'smsc.urls'`` to your url-patterns::
        
            urlpatterns = patterns('',
                ...
                url(r'^smsc/', include('smsc.urls')),
                ...
            )
        
        4. Run ``syncdb`` or ``migrate``::
        
            $ ./manage.py syncdb
        
            or
        
            $ ./manage.py migrate
        
        
        Usage
        =====
        
        Just import ``send_sms`` function and use it::
        
            from smsc.api import send_sms
        
            send_sms('+79135461856', 'Some text.')
        
        
        Credits
        =======
        
        `Fogstream <http://fogstream.ru>`_
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
