Skip to content

Commit cda89ff

Browse files
Updated Documentations
1 parent 9a69911 commit cda89ff

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,15 @@ import IntelligentStockMarketAPI
8585
from IntelligentStockMarketAPI.rest import ApiException
8686
from pprint import pprint
8787

88-
# To get your API KEY visit [Intteligent EOD Stock Market API](https://eod-stock-market-api.site/login)
88+
# To get your API KEY visit [Intelligent EOD Stock Market API](https://eod-stock-market-api.site/login)
8989
# and create your free acoount
9090
configuration = IntelligentStockMarketAPI.Configuration(
9191
host = "https://gateway.eod-stock-api.site/api",
92-
apikey = "SECRET API KEY"
92+
api_key = "SECRET API KEY"
9393
)
94+
95+
# Defining the host is optional and defaults to https://gateway.eod-stock-api.site/api
96+
# See configuration.py for a list of all supported configuration parameters.
9497
# Enter a context with an instance of the API client
9598
with IntelligentStockMarketAPI.ApiClient(configuration) as api_client:
9699
# Create an instance of the API class
@@ -118,9 +121,9 @@ from pprint import pprint
118121
# See configuration.py for a list of all supported configuration parameters.
119122
configuration = IntelligentStockMarketAPI.Configuration(
120123
host = "https://gateway.eod-stock-api.site/api",
121-
apikey = "SECRET API KEY"
124+
api_key = "SECRET API KEY"
122125
)
123-
126+
# To get your API KEY visit [Intelligent EOD Stock Market API](https://eod-stock-market-api.site/login)
124127

125128
# Enter a context with an instance of the API client
126129
with IntelligentStockMarketAPI.ApiClient() as api_client:

0 commit comments

Comments
 (0)