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.
- {pycharting-0.2.4 → pycharting-0.2.6}/PKG-INFO +1 -1
- {pycharting-0.2.4 → pycharting-0.2.6}/pyproject.toml +1 -1
- {pycharting-0.2.4 → pycharting-0.2.6}/src/api/interface.py +3 -3
- {pycharting-0.2.4 → pycharting-0.2.6}/src/api/routes.py +1 -1
- {pycharting-0.2.4 → pycharting-0.2.6}/src/core/server.py +1 -1
- {pycharting-0.2.4 → pycharting-0.2.6}/README.md +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/api/__init__.py +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/core/__init__.py +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/core/lifecycle.py +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/pycharting/__init__.py +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/web/__init__.py +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/web/static/demo.html +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/web/static/js/chart.js +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/web/static/js/sync.js +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/web/static/js/viewport.js +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/web/static/multi-chart-demo.html +0 -0
- {pycharting-0.2.4 → pycharting-0.2.6}/src/web/static/viewport-demo.html +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pycharting"
|
|
3
|
-
version = "0.2.
|
|
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
|
|
11
|
-
from
|
|
12
|
-
from
|
|
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
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|