Metadata-Version: 2.1
Name: fmp-wrapper
Version: 0.1.4
Summary: A python wrapper for the Financial Modeling Prep API.
Home-page: https://github.com/cccdenhart/fmp-wrapper
Author: Charlie Denhart
Author-email: cccdenhart@me.com
License: MIT
Description: # Financial Modeling Prep API Wrapper
        This project provides a python wrapper for the [Financial Modeling Prep API](https://financialmodelingprep.com/developer/docs).
        
        ## Installation
        
        In a shell, execute `pip install fmp-wrapper`.
        
        Optionally, you can clone this project by running `git clone https://github.com/cccdenhart/fmp-wrapper`.
        
        ## Usage
        
        Only a select number of features from the API are implemented here as of now. They are described below.
        
        ### Examples
        **Import wrapper**
        
        ```
        import fmp_wrapper
        fmp = fmp_wrapper.FinancialModelingPrep()
        ```
        
        **Stock Portfolio**
        
        ```
        aapl_portfolio = fmp.portfolio("AAPL")
        aapl.head()
        ```
        
        
        
        
        
Platform: UNKNOWN
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
