Metadata-Version: 1.0
Name: smartresponder
Version: 1.0.0
Summary: smartresponder.ru API wrapper
Home-page: http://bitbucket.org/valuerr/smartresponder/
Author: Valentin Gorbunov
Author-email: valuerr@gmail.com
License: MIT license
Description: =========
        smartresponder
        =========
        
        This is a smartresponder (aka smartresponder.ru)
        python API wrapper. The goal is to support all API methods (current and future)
        that can be accessed from server.
        
        Installation
        ============
        
        ::
        
            $ pip install smartresponder
        
        Usage
        =====
        
        ::
        
            >>> import smartresponder
            >>> api = smartresponder.API('my_api_id', 'my_api_secret')
            >>> subscriber = api.subscribers.list(id='39715947')['list']['elements'][0]
            >>> print subscriber['email']
            test@test.ru
        
        All API methods that can be called from server should be supported.
        
        See http://goo.gl/DrmQU for detailed API help.
        Changes
        =======
        
        1.0.0 (2012-08-04)
        ------------------
        Initial release.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
