Metadata-Version: 2.1
Name: bandl
Version: 0.0.1
Summary: Utilities for the analysis of financial data
Home-page: UNKNOWN
Author: stolgo Developers
Author-email: stockalgos@gmail.com
License: MIT
Download-URL: https://github.com/chiranjeevg/bandl/archive/v0.0.1.tar.gz
Project-URL: Organization, http://www.stolgo.com
Project-URL: Source, https://github.com/chiranjeevg/bandl/
Project-URL: Tracker, https://github.com/chiranjeevg/bandl/issues
Description: # bandl
        
        bandl is open source library, provides apis for equity stock, derivatives, commodities, and cryptocurrencies.
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install stolgo.
        
        ```bash
        pip install bandl
        ```
        
        
        ## Usage
        
        ### To import NSE Data Module
        ```python
        from bandl.nse_data import NseData()
        nd = NseData() # returns 'NseData object'. can be use to get nse data.
        ```
        #### To get Option chain data
        ```python
        expiry_dates = nd.get_oc_exp_dates(symbol) #return available expiry dates
        nd.get_option_chain_excel(symbol,expiry_date,filepath) #dumps option chain to file_path
        # or get in pandas dateframe
        bn_df = nd.get_option_chain_df(symbol, expiry_date,dayfirst=False) #returns option chain in pandas data frame.
        ```
        #### To get stock historical data.
        ```python
        data_frame = nd.get_data(symbol,series="EQ",start=None,end=None,periods=None,dayfirst=False) #returns historical data in pandas data frames
        ```
        
        #### To get FII/DII data.
        ```python
        part_oi_df = nd.get_part_oi_df(start=None,end=None,periods=None,dayfirst=False,workers=None)
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Kindly follow PEP 8 Coding Style guidelines. Refer: https://www.python.org/dev/peps/pep-0008/
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
        
Keywords: data,NSE,STOCK,FINANCE,DERIVATIVE,API
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
