Metadata-Version: 1.1
Name: django-ripple-api
Version: 0.0.11
Summary: Python wrapper for the Ripple API
Home-page: https://github.com/42cc/ripple_api
Author: 42 Coffee Cups
Author-email: contact@42cc.co
License: BSD License
Download-URL: https://github.com/42cc/ripple_api/archive/master.zip
Description: ============================================
        Python Ripple API and transaction management
        ============================================
        
        Settings
        ========
        
        * ``RIPPLE_ACCOUNT`` - account that acts as 'manager' and monitors incoming transactions
        * ``RIPPLE_SECRET`` - secret for 'manager' account
        * ``RIPPLE_API_DATA[0]['RIPPLE_API_URL']``
        * ``RIPPLE_API_DATA[0]['RIPPLE_API_USER']``
        * ``RIPPLE_API_DATA[0]['RIPPLE_API_PASSWORD']``
        
        Example Config::
        
        	RIPPLE_API_DATA = [
        		{
                    'RIPPLE_API_URL': 'http://s_west.ripple.com:51234',
                    'RIPPLE_API_USER': '',
                    'RIPPLE_API_PASSWORD': '',
                }
        	]  # You can specify multiple servers and ripple_api app will try them in order if one of servers
        	#    returns error
        
        
        Signals
        =======
        
        * ``ripple_api.signals.transaction_status_changed = Signal(providing_args=["old_status"])`` - sent
          when existing Transaction's status is changed
        * default django's post_save signal is useful to get new Transactions
        
        
        .. TODO:
           * docs on api usage
           * docs on management command
        
Keywords: ripple,api
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Requires: python (>= 2.7)
Requires: requests
Requires: django_model_utils
