Metadata-Version: 2.1
Name: bdshare
Version: 0.0.1
Summary: A utility for crawling historical and Real-time Quotes of dse
Home-page: https://github.com/rochi88/bdshare
Author: Raisul Islam
Author-email: raisul.exe@gmail.com
License: MIT
Download-URL: https://github.com/rochi88/bdshare/archive/master.zip
Description: # Bdshare
        A utility for crawling historical and Real-time Quotes data of dhaka stock exchange
        
        ## Quickstart
        
        ### Install Bdshare
        
        ```
        $ pip install bdshare
        ```
        
        ### Using for data crawing from dse
        #### Get last or current trading data
        ```python
        from bdshare import get_current_trade_data
        
        df = get_current_trade_data()
        print(df.to_string())
        ```
        
        #### Get historical data
        ```python
        from bdshare import get_hist_data
        
        df = get_hist_data('2020-03-01','2020-03-02') # get all instrument data
        print(df.to_string())
        ```
        ```python
        from bdshare import get_hist_data
        
        df = get_hist_data('2020-03-01','2020-03-02','ACI') # get specific instrument data
        print(df.to_string())
        ```
        
        # Change log
        
        ## [0.0.1] - 2020-04-06
        
        ### Added
        - `get_hist_data(), get_current_trade_data()`
        - `HISTORY.md`
        
        ### Changed
        
        ### Removed
Keywords: crawling,dse
Platform: UNKNOWN
Description-Content-Type: text/markdown
