Metadata-Version: 2.1
Name: marketanalyst
Version: 0.1.6
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
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
Requires-Dist: requests
Requires-Dist: pandas
Requires-Dist: numpy

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)

