@@ -42,7 +42,7 @@ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
4242
4343Then import the package:
4444``` python
45- import openapi_client
45+ import src.IntelligentStockMarketAPI
4646```
4747
4848### Setuptools
@@ -56,7 +56,7 @@ python setup.py install --user
5656
5757Then import the package:
5858``` python
59- import openapi_client
59+ import src.IntelligentStockMarketAPI
6060```
6161
6262## Getting Started
@@ -67,22 +67,22 @@ Please follow the [installation procedure](#installation--usage) and then run th
6767from __future__ import print_function
6868
6969import time
70- import openapi_client
71- from openapi_client .rest import ApiException
70+ import src.IntelligentStockMarketAPI
71+ from src.IntelligentStockMarketAPI .rest import ApiException
7272from pprint import pprint
7373
7474# Defining the host is optional and defaults to http://https://gateway.eod-stock-api.site/api
7575# See configuration.py for a list of all supported configuration parameters.
76- configuration = openapi_client .Configuration(
76+ configuration = src.IntelligentStockMarketAPI .Configuration(
7777 host = " http://https://gateway.eod-stock-api.site/api"
7878)
7979
8080
8181
8282# Enter a context with an instance of the API client
83- with openapi_client .ApiClient(configuration) as api_client:
83+ with src.IntelligentStockMarketAPI .ApiClient(configuration) as api_client:
8484 # Create an instance of the API class
85- api_instance = openapi_client .EodApi(api_client)
85+ api_instance = src.IntelligentStockMarketAPI .EodApi(api_client)
8686 date = ' date_example' # str |
8787exchange_code = ' exchange_code_example' # str |
8888
0 commit comments