Metadata-Version: 2.1
Name: stockdatareader
Version: 1.0.0
Summary: Read online stock data
Home-page: https://github.com/kricki/stockdatareader
Author: kricki
License: UNKNOWN
Description: # StockDataReader
        Read historic stock data
        
        ## Installation
        Clone or download repository and
        ````
        pip install stockdatatareader
        ````
        
        ## Example
        Read the stock values from Alphabet (ISIN US02079K1079) from January 1, 2018 to September 15, 2018.
        ````python
        from stockdatareader import StockDataReader
        
        sdr = StockDataReader()
        isin = 'US02079K1079'
        start_date = '2018-01-01'
        end_date = '2018-09-15'
        stock_data = sdr.read_data(isin, start_date, end_date)
        ````
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Office/Business :: Financial
Description-Content-Type: text/markdown
