Metadata-Version: 1.1
Name: mokola
Version: 1.1.2
Summary: stock market, mutual funds, commodities and general investments
Home-page: https://github.com/makkasbed/mokola
Author: Adu Bediako Asare
Author-email: adu.asare@logiclabent.com
License: UNKNOWN
Description: # Mokola
        This package enables users to download stocks data from Ghana.
        
        ## Installation
        ```python
        pip install mokola
        ```
        
        ## Usage
        
        ```python
        import mokola.stocks.Stocks as stk
        df = stk.Stocks().download('MTNGH','2021-12-01','2021-12-13')
        df.head()
        ```
        
        The above returns a Pandas dataframe of **MTNGH** from the stated dates *'2021-12-01'* and *'2021-12-13'* as start and end dates
        
        You can as well all stocks data like this:
        ```python
        import mokola.stocks.Stocks as stk
        df = stk.Stocks().download(None,'2021-12-01','2021-12-13')
        df.head()
        ```
        
        
Keywords: python,mokola,stocks,africa,ghana,nigeria,mutual funds,investments,commodities,pension funds
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
