kuhl-haus-mdp-servers 0.1.7__tar.gz → 0.1.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kuhl-haus-mdp-servers
3
- Version: 0.1.7
3
+ Version: 0.1.9
4
4
  Summary: Container image build repository for market data processing servers
5
5
  Author-Email: Tom Pounders <git@oldschool.engineer>
6
6
  License-File: LICENSE.txt
@@ -33,7 +33,7 @@ dependencies = [
33
33
  "python-dotenv",
34
34
  "massive",
35
35
  ]
36
- version = "0.1.7"
36
+ version = "0.1.9"
37
37
 
38
38
  [project.urls]
39
39
  Homepage = "https://github.com/kuhl-haus/kuhl-haus-mdp-servers"
@@ -9,8 +9,8 @@ from fastapi import FastAPI, Response, status
9
9
  from massive.websocket import Feed, Market
10
10
  from pydantic_settings import BaseSettings
11
11
 
12
- from kuhl_haus.mdp.integ.massive_data_queues import MassiveDataQueues
13
- from kuhl_haus.mdp.integ.massive_data_listener import MassiveDataListener
12
+ from kuhl_haus.mdp.components.massive_data_queues import MassiveDataQueues
13
+ from kuhl_haus.mdp.components.massive_data_listener import MassiveDataListener
14
14
  from kuhl_haus.mdp.helpers.utils import get_massive_api_key
15
15
 
16
16
 
@@ -14,10 +14,10 @@ from massive.rest import RESTClient
14
14
  from kuhl_haus.mdp.analyzers.top_stocks import TopStocksAnalyzer
15
15
  from kuhl_haus.mdp.components.market_data_scanner import MarketDataScanner
16
16
  from kuhl_haus.mdp.components.market_data_cache import MarketDataCache
17
- from kuhl_haus.mdp.models.market_data_cache_keys import MarketDataCacheKeys
18
- from kuhl_haus.mdp.models.market_data_scanner_names import MarketDataScannerNames
19
- from kuhl_haus.mdp.models.massive_data_queue import MassiveDataQueue
20
- from kuhl_haus.mdp.integ.massive_data_processor import MassiveDataProcessor
17
+ from kuhl_haus.mdp.components.massive_data_processor import MassiveDataProcessor
18
+ from kuhl_haus.mdp.enum.market_data_cache_keys import MarketDataCacheKeys
19
+ from kuhl_haus.mdp.enum.market_data_scanner_names import MarketDataScannerNames
20
+ from kuhl_haus.mdp.enum.massive_data_queue import MassiveDataQueue
21
21
  from kuhl_haus.mdp.helpers.utils import get_massive_api_key
22
22
  from kuhl_haus.mdp.helpers.process_manager import ProcessManager
23
23