From 8e3ada1eb077d1b8db9401289d2580f417591efe Mon Sep 17 00:00:00 2001 From: Anurag Kumar <44195975+anurag265@users.noreply.github.com> Date: Mon, 29 Jul 2024 13:02:02 +0530 Subject: [PATCH] Update README.md Fixed issue with SharekhanConnect constructor. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2517427..f89d30a 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Use the package manager [pip](https://pip.pypa.io/en/stable/) to install shareco # Make a object for SharekhanConnect class """Here we are passing the api-key, access-token and vendor-key(when needed) as a request header parameters""" access_token = "Your access token value" - sharekhan = SharekhanConnect(api_key,access_token) + sharekhan = SharekhanConnect(api_key, access_token=access_token) print(sharekhan.requestHeaders()) # for printing request headers # Place order history @@ -228,4 +228,4 @@ Use the package manager [pip](https://pip.pypa.io/en/stable/) to install shareco sws.on_close = on_close sws.connect() -``` \ No newline at end of file +```