Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion example_app_equities.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def on_kill_process(sig, frame):
summarize_thread = Summarize(stop_event)
summarize_thread.start()

time.sleep(60 * 60 * 8)
time.sleep(60 * 60 * 24)

# sigint, or ctrl+c, during the thread wait will also perform the same below code.
print("Stopping")
Expand Down
2 changes: 1 addition & 1 deletion example_app_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,6 @@ def on_kill_process(sig, frame):
# Use this to subscribe, dynamically, a list of specific option contracts or option chains.
# intrinioRealtimeOptionsClient.join("GOOG__220408C02870000", "MSFT__220408C00315000", "AAPL__220414C00180000", "TSLA", "GE")

time.sleep(60 * 60 * 8)
time.sleep(60 * 60 * 24)
# sigint, or ctrl+c, during the thread wait will also perform the same below code.
on_kill_process(None, None)
2 changes: 1 addition & 1 deletion intriniorealtime/equities_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
HEADER_MESSAGE_FORMAT_KEY = "UseNewEquitiesFormat"
HEADER_MESSAGE_FORMAT_VALUE = "v2"
HEADER_CLIENT_INFORMATION_KEY = "Client-Information"
HEADER_CLIENT_INFORMATION_VALUE = "IntrinioPythonSDKv6.1.0"
HEADER_CLIENT_INFORMATION_VALUE = "IntrinioPythonSDKv6.2.0"


class EquitiesQuote:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def readme():
setup(
name = 'intriniorealtime',
packages = ['intriniorealtime'],
version = '6.1.0',
version = '6.2.0',
author = 'Intrinio Python SDK for Real-Time Stock Prices',
author_email = 'success@intrinio.com',
url = 'https://intrinio.com',
Expand All @@ -16,7 +16,7 @@ def readme():
long_description_content_type = 'text/markdown',
install_requires = ['requests>=2.26.0','websocket-client>=1.2.1','wsaccel>=0.6.3', 'intrinio-sdk>=6.26.0'],
python_requires = '~=3.10',
download_url = 'https://github.com/intrinio/intrinio-realtime-python-sdk/archive/v6.1.0.tar.gz',
download_url = 'https://github.com/intrinio/intrinio-realtime-python-sdk/archive/v6.2.0.tar.gz',
keywords = ['realtime','stock prices','intrinio','stock market','stock data','financial'],
classifiers = [
'Intended Audience :: Financial and Insurance Industry',
Expand Down