From 91306185aecd7a491318b073222ca09b8072b47c Mon Sep 17 00:00:00 2001 From: Shawn Snyder Date: Thu, 25 Sep 2025 08:27:21 -0500 Subject: [PATCH 1/2] Reasons --- example_app_equities.py | 2 +- example_app_options.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example_app_equities.py b/example_app_equities.py index c8d5cad..23c2cfe 100644 --- a/example_app_equities.py +++ b/example_app_equities.py @@ -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") diff --git a/example_app_options.py b/example_app_options.py index 8a9d5fb..e437b12 100644 --- a/example_app_options.py +++ b/example_app_options.py @@ -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) From b7b69663fafbaaeae0adbf476fbef7520924ae35 Mon Sep 17 00:00:00 2001 From: Shawn Snyder Date: Thu, 25 Sep 2025 08:29:23 -0500 Subject: [PATCH 2/2] version bump --- intriniorealtime/equities_client.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/intriniorealtime/equities_client.py b/intriniorealtime/equities_client.py index d7dedec..016e7a3 100644 --- a/intriniorealtime/equities_client.py +++ b/intriniorealtime/equities_client.py @@ -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: diff --git a/setup.py b/setup.py index 129eb8d..0caa244 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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',