Metadata-Version: 2.0
Name: dcf
Version: 0.2
Summary: Python library for discounting cashflows.
Home-page: https://github.com/pbrisk/dcf
Author: Deutsche Postbank AG [pbrisk]
Author-email: pbrisk_at_github@icloud.com
License: Apache License 2.0
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Education
Classifier: Topic :: Office/Business
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Utilities
Classifier: Topic :: Office/Business :: Scheduling
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Localization
Requires-Dist: businessdate

=========================
dcf (discounted cashflow)
=========================

.. image:: https://img.shields.io/codeship/9d5f1200-9cf4-0134-bcff-6ae80fc9d0de/master.svg
    :target: https://codeship.com//projects/188495

A Python library for generating discounted cashflows.
Typical banking business methods are provided like interpolation, compounding,
discounting and fx.


Example Usage
-------------

.. code-block:: python

    from dcf import ZeroRateCurve

    >>> ZeroRateCurve([20140101, 20160101], [.03, .05]).get_zero_rate(20140101, 20150101)
    0.04


Install
-------

The latest stable version can always be installed or updated via pip:

.. code-block:: bash

    $ pip install businessdate

If the above fails, please try easy_install instead:

.. code-block:: bash

    $ easy_install businessdate


Examples
--------

.. code-block:: python

    # Simplest example possible


Development Version
-------------------

The latest development version can be installed directly from GitHub:

.. code-block:: bash

    $ pip install --upgrade git+https://github.com/pbrisk/dcf.git


Contributions
-------------

.. _issues: https://github.com/pbrisk/dcf/issues
.. __: https://github.com/pbrisk/dcf/pulls

Issues_ and `Pull Requests`__ are always welcome.


License
-------

.. __: https://github.com/pbrisk/dcf/raw/master/LICENSE

Code and documentation are available according to the Apache Software License (see LICENSE__).




