Metadata-Version: 2.1
Name: liveupstoxoc
Version: 0.1.5
Summary: To scrape live optionschain data from upstox for free (without api)
Home-page: https://github.com/MaticAlgos
Author: Niraj Munot
Author-email: nirajmunot28@gmail.com
License: MIT
Download-URL: https://github.com/MaticAlgos/liveupstoxoc/archive/refs/tags/0.1.5.tar.gz
Description: # liveupstoxoc
        ## Fetch live OptionsChain from Upstox for free
        
        
        ## Installation
        
        Make sure you've installed chromedriver as per your systen. 
        If not use download chromedrivers from https://chromedriver.storage.googleapis.com/index.html?path=95.0.4638.17/
        
        
        ```sh
        pip install liveupstoxoc
        ```
        
        
        ## How to use the library
        
        ```sh
        from liveupstoxoc import live_upstox_oc
        n = live_upstox_oc.upstox_oc(path to chromedriver)
        #Now enter login details of your upstox account
        n.login(username, password, 2fa)
        #Now you're ready for fetch live options chain. 
        #For fetching optionschain of NIFTY and BANKNIFTY
        oc = n.get_oc("NIFTY") # or "BANKNIFTY"
        #For fetching optionschain of Stocks
        oc = n.get_oc("3426") #For fetching option chain of TataPower. Similarly enter Token of the stocks you want to Fetch options chain for. 
        #To close the chromedriver
        n.close()
        ```
        
Keywords: upstox,optionschain,liveoptionschain,NSE,openinterest
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
