Metadata-Version: 1.0
Name: ccy
Version: 0.3.8
Summary: Python currencies
Home-page: http://code.google.com/p/ccy/
Author: Luca Sbardella
Author-email: luca@quantmind.com
License: BSD
Description: ccy
        ===========
        
        Python module for currencies. Not all currencies in the world are supported yet.
        You are welcome to join and add more. The module compiles a dictionary of currency objects containing
        information useful in financial analysis.
        
        Installation
        =================
        Using `easy_install`::
        
        	easy_install ccy
        	
        Using `pip`::
        
        	pip install ccy
        	
        From source::
        
        	python setup.py install
        	
        	
        Runnung tests
        ==================
        From within the package directory::
        
        	python runtests.py
        	
        or, once installed::
        
            >> from ccy import runtests
            >> runtests()
            
            
        Trading Centres
        ====================
        Support trading centres date calculation::
        
            >>> from ccy.tradingcentres import nextbizday, datetime
            >>> d1 = datetime.date(2010,4,2)
            >>> nextbizday(d1,2)
            datetime.date(2010, 4, 6)
        	
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Utilities
