Metadata-Version: 1.0
Name: yahoo_ff
Version: 1.0.5
Summary: Quick module to scrape yahoo financial data for stocks.
Home-page: http://github.com/alexandresobolevski/yahoo_ff
Author: Alexandre Sobolevski
Author-email: sobolevski.a@gmail.com
License: MIT
Description: # yahoo_ff
        Package to obtain financial fundamental data.
        
        ## Requirements
        ```
        pip install -r requirements
        ```
        
        ## Installation
        ```
        $ pip install yahoo_ff
        
        ```
        
        ## Using
        
        ### A single stock
        ```
        from yahoo_ff.yahoo_ff import yahoo_ff
        aapl = yahoo_ff('aapl')
        ```
        will create an object from which several Pandas DataFrames of interest can be extracted
        ```
        quarterlySECreports = aapl.qr()
        annualSECreports = aapl.ar()
        keyStatsOfTheDay = aapl.ks()
        infoAboutCompany = aapl.inf()
        priceOfTheDay = aapl.pr()
        ```
        
Platform: UNKNOWN
