pycharting 0.2.4__tar.gz → 0.2.6__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.1
2
2
  Name: pycharting
3
- Version: 0.2.4
3
+ Version: 0.2.6
4
4
  Summary: High-performance financial charting library for OHLC data visualization with technical indicators
5
5
  Home-page: https://github.com/alihaskar/pycharting
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pycharting"
3
- version = "0.2.4"
3
+ version = "0.2.6"
4
4
  description = "High-performance financial charting library for OHLC data visualization with technical indicators"
5
5
  authors = ["ali askar <26202651+alihaskar@users.noreply.github.com>"]
6
6
  readme = "README.md"
@@ -7,9 +7,9 @@ from typing import Optional, Dict, Any, Union
7
7
  import numpy as np
8
8
  import pandas as pd
9
9
 
10
- from src.data.ingestion import DataManager
11
- from src.core.lifecycle import ChartServer
12
- from src.api.routes import _data_managers
10
+ from ..data.ingestion import DataManager
11
+ from ..core.lifecycle import ChartServer
12
+ from .routes import _data_managers
13
13
 
14
14
  logger = logging.getLogger(__name__)
15
15
 
@@ -103,7 +103,7 @@ async def initialize_data(
103
103
  Session information
104
104
  """
105
105
  import numpy as np
106
- from src.data.ingestion import DataManager
106
+ from ..data.ingestion import DataManager
107
107
 
108
108
  try:
109
109
  # Generate demo OHLC data
@@ -136,7 +136,7 @@ def create_app() -> FastAPI:
136
136
  """
137
137
 
138
138
  # Include API routes
139
- from src.api.routes import router as api_router
139
+ from ..api.routes import router as api_router
140
140
  app.include_router(api_router)
141
141
 
142
142
  # Health check endpoint
File without changes