Skip to content

Commit 58b8a88

Browse files
updated sdk
1 parent 6cc7586 commit 58b8a88

File tree

128 files changed

+602
-602
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+602
-602
lines changed
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# coding: utf-8
2+
3+
# flake8: noqa
4+
5+
"""
6+
EOD STOCK API
7+
8+
<h2>Intelligent EOD Stocks API</h2> <p> End of day stock world wide STOCK API, this api is intended for use by web application developers, and service providers looking for up-to-date always available. <ul> <li>Exchange Information</li> <li>Stock Tickers Data</li> <li>End of Day (EOD) Stock Data</li> <li>Fundamental Data</li> <li>Stock Options And Splits Data</li> <li>Financial News API</li> <li>Social Media Trend Data For Stocks</li> <li>Sentiment Analysis for News & Social Media</li> </ul> The information provided covers more than 150 000 tickers, stocks, mutual funds and more around the world. we provide information for any period, including daily, weekly. </p> # noqa: E501
9+
10+
The version of the OpenAPI document: v1
11+
12+
Generated by: https://openapi-generator.tech
13+
"""
14+
15+
16+
from __future__ import absolute_import
17+
18+
__version__ = "1.0.0"
19+
20+
# import apis into sdk package
21+
from src.IntelligentStockMarketAPI.api.eod_api import EodApi
22+
from src.IntelligentStockMarketAPI.api.exchanges_api import ExchangesApi
23+
from src.IntelligentStockMarketAPI.api.financial_news_api import FinancialNewsApi
24+
from src.IntelligentStockMarketAPI.api.fundamentals_api import FundamentalsApi
25+
from src.IntelligentStockMarketAPI.api.options_api import OptionsApi
26+
from src.IntelligentStockMarketAPI.api.sentiment_api import SentimentApi
27+
from src.IntelligentStockMarketAPI.api.stocks_api import StocksApi
28+
29+
# import ApiClient
30+
from src.IntelligentStockMarketAPI.api_client import ApiClient
31+
from src.IntelligentStockMarketAPI.configuration import Configuration
32+
from src.IntelligentStockMarketAPI.exceptions import OpenApiException
33+
from src.IntelligentStockMarketAPI.exceptions import ApiTypeError
34+
from src.IntelligentStockMarketAPI.exceptions import ApiValueError
35+
from src.IntelligentStockMarketAPI.exceptions import ApiKeyError
36+
from src.IntelligentStockMarketAPI.exceptions import ApiException
37+
# import models into sdk package
38+
from src.IntelligentStockMarketAPI.models.address_response import AddressResponse
39+
from src.IntelligentStockMarketAPI.models.analyst import Analyst
40+
from src.IntelligentStockMarketAPI.models.annual_balance_sheet import AnnualBalanceSheet
41+
from src.IntelligentStockMarketAPI.models.annual_balance_sheet_response import AnnualBalanceSheetResponse
42+
from src.IntelligentStockMarketAPI.models.balance_sheet import BalanceSheet
43+
from src.IntelligentStockMarketAPI.models.balance_sheets import BalanceSheets
44+
from src.IntelligentStockMarketAPI.models.contract_response import ContractResponse
45+
from src.IntelligentStockMarketAPI.models.contracts import Contracts
46+
from src.IntelligentStockMarketAPI.models.eod_stock import EODStock
47+
from src.IntelligentStockMarketAPI.models.eod_stock_list_response import EODStockListResponse
48+
from src.IntelligentStockMarketAPI.models.eod_stock_response import EODStockResponse
49+
from src.IntelligentStockMarketAPI.models.exchange import Exchange
50+
from src.IntelligentStockMarketAPI.models.exchange_list_response import ExchangeListResponse
51+
from src.IntelligentStockMarketAPI.models.exchange_listed_companies_response import ExchangeListedCompaniesResponse
52+
from src.IntelligentStockMarketAPI.models.exchange_listed_stock import ExchangeListedStock
53+
from src.IntelligentStockMarketAPI.models.exchange_request import ExchangeRequest
54+
from src.IntelligentStockMarketAPI.models.exchange_response import ExchangeResponse
55+
from src.IntelligentStockMarketAPI.models.exchange_with_listed_tickers import ExchangeWithListedTickers
56+
from src.IntelligentStockMarketAPI.models.exchange_with_tickers import ExchangeWithTickers
57+
from src.IntelligentStockMarketAPI.models.general import General
58+
from src.IntelligentStockMarketAPI.models.general_address import GeneralAddress
59+
from src.IntelligentStockMarketAPI.models.general_contact import GeneralContact
60+
from src.IntelligentStockMarketAPI.models.general_listings import GeneralListings
61+
from src.IntelligentStockMarketAPI.models.general_officers import GeneralOfficers
62+
from src.IntelligentStockMarketAPI.models.general_response import GeneralResponse
63+
from src.IntelligentStockMarketAPI.models.highlights import Highlights
64+
from src.IntelligentStockMarketAPI.models.highlights_response import HighlightsResponse
65+
from src.IntelligentStockMarketAPI.models.news import News
66+
from src.IntelligentStockMarketAPI.models.news_response_list import NewsResponseList
67+
from src.IntelligentStockMarketAPI.models.number_dividends_by_year import NumberDividendsByYear
68+
from src.IntelligentStockMarketAPI.models.options import Options
69+
from src.IntelligentStockMarketAPI.models.options_response import OptionsResponse
70+
from src.IntelligentStockMarketAPI.models.payload import Payload
71+
from src.IntelligentStockMarketAPI.models.public_fundamental import PublicFundamental
72+
from src.IntelligentStockMarketAPI.models.public_fundamentals_response import PublicFundamentalsResponse
73+
from src.IntelligentStockMarketAPI.models.quarterly_balance_response import QuarterlyBalanceResponse
74+
from src.IntelligentStockMarketAPI.models.quarterly_balance_sheet import QuarterlyBalanceSheet
75+
from src.IntelligentStockMarketAPI.models.related_tickers import RelatedTickers
76+
from src.IntelligentStockMarketAPI.models.resolution import Resolution
77+
from src.IntelligentStockMarketAPI.models.sentiment import Sentiment
78+
from src.IntelligentStockMarketAPI.models.share_stats import ShareStats
79+
from src.IntelligentStockMarketAPI.models.split_dividends import SplitDividends
80+
from src.IntelligentStockMarketAPI.models.stock import Stock
81+
from src.IntelligentStockMarketAPI.models.stock1 import Stock1
82+
from src.IntelligentStockMarketAPI.models.stock_list_request import StockListRequest
83+
from src.IntelligentStockMarketAPI.models.stock_list_response import StockListResponse
84+
from src.IntelligentStockMarketAPI.models.stock_response import StockResponse
85+
from src.IntelligentStockMarketAPI.models.stock_trend_setters import StockTrendSetters
86+
from src.IntelligentStockMarketAPI.models.technicals import Technicals
87+
from src.IntelligentStockMarketAPI.models.thumbnail import Thumbnail
88+
from src.IntelligentStockMarketAPI.models.ticker_exchange_code import TickerExchangeCode
89+
from src.IntelligentStockMarketAPI.models.valuations import Valuations
90+
File renamed without changes.

src/openapi_client/api/eod_api.py renamed to src/IntelligentStockMarketAPI/api/eod_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# python 2 and python 3 compatibility library
1919
import six
2020

21-
from openapi_client.api_client import ApiClient
22-
from openapi_client.exceptions import ( # noqa: F401
21+
from src.IntelligentStockMarketAPI.api_client import ApiClient
22+
from src.IntelligentStockMarketAPI.exceptions import ( # noqa: F401
2323
ApiTypeError,
2424
ApiValueError
2525
)

src/openapi_client/api/exchanges_api.py renamed to src/IntelligentStockMarketAPI/api/exchanges_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# python 2 and python 3 compatibility library
1919
import six
2020

21-
from openapi_client.api_client import ApiClient
22-
from openapi_client.exceptions import ( # noqa: F401
21+
from src.IntelligentStockMarketAPI.api_client import ApiClient
22+
from src.IntelligentStockMarketAPI.exceptions import ( # noqa: F401
2323
ApiTypeError,
2424
ApiValueError
2525
)

src/openapi_client/api/financial_news_api.py renamed to src/IntelligentStockMarketAPI/api/financial_news_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# python 2 and python 3 compatibility library
1919
import six
2020

21-
from openapi_client.api_client import ApiClient
22-
from openapi_client.exceptions import ( # noqa: F401
21+
from src.IntelligentStockMarketAPI.api_client import ApiClient
22+
from src.IntelligentStockMarketAPI.exceptions import ( # noqa: F401
2323
ApiTypeError,
2424
ApiValueError
2525
)

src/openapi_client/api/fundamentals_api.py renamed to src/IntelligentStockMarketAPI/api/fundamentals_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# python 2 and python 3 compatibility library
1919
import six
2020

21-
from openapi_client.api_client import ApiClient
22-
from openapi_client.exceptions import ( # noqa: F401
21+
from src.IntelligentStockMarketAPI.api_client import ApiClient
22+
from src.IntelligentStockMarketAPI.exceptions import ( # noqa: F401
2323
ApiTypeError,
2424
ApiValueError
2525
)

src/openapi_client/api/options_api.py renamed to src/IntelligentStockMarketAPI/api/options_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# python 2 and python 3 compatibility library
1919
import six
2020

21-
from openapi_client.api_client import ApiClient
22-
from openapi_client.exceptions import ( # noqa: F401
21+
from src.IntelligentStockMarketAPI.api_client import ApiClient
22+
from src.IntelligentStockMarketAPI.exceptions import ( # noqa: F401
2323
ApiTypeError,
2424
ApiValueError
2525
)

src/openapi_client/api/sentiment_api.py renamed to src/IntelligentStockMarketAPI/api/sentiment_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# python 2 and python 3 compatibility library
1919
import six
2020

21-
from openapi_client.api_client import ApiClient
22-
from openapi_client.exceptions import ( # noqa: F401
21+
from src.IntelligentStockMarketAPI.api_client import ApiClient
22+
from src.IntelligentStockMarketAPI.exceptions import ( # noqa: F401
2323
ApiTypeError,
2424
ApiValueError
2525
)

src/openapi_client/api/stocks_api.py renamed to src/IntelligentStockMarketAPI/api/stocks_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# python 2 and python 3 compatibility library
1919
import six
2020

21-
from openapi_client.api_client import ApiClient
22-
from openapi_client.exceptions import ( # noqa: F401
21+
from src.IntelligentStockMarketAPI.api_client import ApiClient
22+
from src.IntelligentStockMarketAPI.exceptions import ( # noqa: F401
2323
ApiTypeError,
2424
ApiValueError
2525
)

src/openapi_client/api_client.py renamed to src/IntelligentStockMarketAPI/api_client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
import six
2626
from six.moves.urllib.parse import quote
2727

28-
from openapi_client.configuration import Configuration
29-
import openapi_client.models
30-
from openapi_client import rest
31-
from openapi_client.exceptions import ApiValueError, ApiException
28+
from src.IntelligentStockMarketAPI.configuration import Configuration
29+
import src.IntelligentStockMarketAPI.models
30+
from src.IntelligentStockMarketAPI import rest
31+
from src.IntelligentStockMarketAPI.exceptions import ApiValueError, ApiException
3232

3333

3434
class ApiClient(object):

0 commit comments

Comments
 (0)