Metadata-Version: 1.0
Name: pyXurrency
Version: 0.0.1
Summary: A Python interface to the Xurrency API
Home-page: https://github.com/masahitojp/pyXurrency
Author: Masahito(Nakamura Masato)
Author-email: randomstep at gmail dot com
License: PSL
Description: This package implements an interface to the Xurrency API, defined at http://xurrency.com/api.
        
        Requirements
        ------------
        * Python 2.6 or later (not support 3.x)
        
        Features
        --------
        * Currency convert
        
        Setup
        -----
        ::
        
           $ easy_install pyXurrency
        
        or from the source::
        	
            ./setup.py develop
        
        Usage
        -----
        
        ::
        
            >>> from xurrency import Xurrency
            >>> xapi = Xurrency()
            >>> xapi.get_rate('eur', 'gbp', 1.5)
            1.3014
        
        or You have License Key  ::
        
            >>> LICENSE_KEY = "foobar"
            >>> xapi_with_key = Xurrency(LICENSE_KEY)
        
        
        History
        -------
        
        0.0.1 (2011-03-01)
        ~~~~~~~~~~~~~~~~~~
        * first release
        
        Todos
        ======
        
        Functionals
        ------------
        * Add CUI Interface
        
        Known Issues
        -------------
        * No error handling
        
        
Keywords: currency
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Software Development
