Metadata-Version: 2.1
Name: fimaster
Version: 0.0.0.2
Summary: A python library for fixed-income data and valuation.
Home-page: https://github.com/gavinz0228/fi-master
Author: Gavin Zhang
Author-email: gavinz0228@gmail.com
License: UNKNOWN
Description: # fi-master
        A python library for fixed-income data and valuation.
        
        ## Usage:
        ``
        from fimaster.data_api import get_yield_curve, get_yield_curve_by_dates
        ``
        get yield curve data for a specific date, returns a pandas dataframe
        ``
        data = get_yield_curve(2020, 11, 2)
        ``
        get daily yield curve data for a month(just not to specifiy a day)
        ``
        data = get_yield_curve(2020, 11)
        ``
        for the whole year
        ``
        data = get_yield_curve(2020)
        ``
        
        get daily yield curve for dates specified:
        ``
        get_yield_curve_by_dates
        ``
        
        output example:
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Description-Content-Type: text/markdown
