Metadata-Version: 2.1
Name: marketanalyst
Version: 0.1.12
Summary: This is wrapper for marketanalyst api
Home-page: https://github.com/agrudgit/python-marketanalyst.git
Author: Sayanta Basu
Author-email: sayanta@agrud.com
License: UNKNOWN
Description: This is how you can use this wrapper.
        
        import marketanalyst
        
        api_key = "your api key"
        secret_key = "your secret key"
        
        client = marketanalyst.client(api_key,secret_key,base_url="https://www.agrud.org/")
        
        # or 
        
        client = marketanalyst.client(api_key,secret_key)
        # In this case base url will be = "https://www.marketanalyst.ai"
        
        df1 = client.download_data("NASDAQ:AAPL","01/01/2012","01/01/2019","Price","EOD")
        
        print(df1)
        
        Websocket:
        
        def receive_data(data):
            print(data)
        
        client101.onDataEvent("nasdaq-aapl",receive_data)
        
        receive_data will get the data
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
