@@ -85,12 +85,15 @@ import IntelligentStockMarketAPI
8585from IntelligentStockMarketAPI.rest import ApiException
8686from 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
9090configuration = 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
9598with 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.
119122configuration = 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
126129with IntelligentStockMarketAPI.ApiClient() as api_client:
0 commit comments