Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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()
```
```