pycharting 0.2.3__tar.gz → 0.2.5__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.3 → pycharting-0.2.5}/PKG-INFO +1 -1
- {pycharting-0.2.3 → pycharting-0.2.5}/pyproject.toml +3 -2
- {pycharting-0.2.3 → pycharting-0.2.5}/src/api/interface.py +3 -3
- {pycharting-0.2.3 → pycharting-0.2.5}/src/api/routes.py +1 -1
- pycharting-0.2.5/src/pycharting/__init__.py +17 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/README.md +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/api/__init__.py +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/core/__init__.py +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/core/lifecycle.py +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/core/server.py +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/web/__init__.py +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/web/static/demo.html +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/web/static/js/chart.js +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/web/static/js/sync.js +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/web/static/js/viewport.js +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/src/web/static/multi-chart-demo.html +0 -0
- {pycharting-0.2.3 → pycharting-0.2.5}/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.5"
|
|
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"
|
|
@@ -19,8 +19,9 @@ classifiers = [
|
|
|
19
19
|
"Topic :: Scientific/Engineering :: Visualization",
|
|
20
20
|
]
|
|
21
21
|
|
|
22
|
-
#
|
|
22
|
+
# expose the public package as `pycharting` and ship internal modules as top-level packages
|
|
23
23
|
packages = [
|
|
24
|
+
{ include = "pycharting", from = "src" },
|
|
24
25
|
{ include = "api", from = "src" },
|
|
25
26
|
{ include = "core", from = "src" },
|
|
26
27
|
{ include = "data", from = "src" },
|
|
@@ -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
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Public package for the PyCharting library.
|
|
2
|
+
|
|
3
|
+
This module re-exports the main Python API surface so that users can do:
|
|
4
|
+
|
|
5
|
+
from pycharting import plot, stop_server, get_server_status
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from typing import Any, Dict # re-exported types are only for type checkers
|
|
9
|
+
|
|
10
|
+
from api.interface import plot, stop_server, get_server_status # type: ignore F401
|
|
11
|
+
|
|
12
|
+
__all__ = ["plot", "stop_server", "get_server_status", "__version__"]
|
|
13
|
+
|
|
14
|
+
# Keep this in sync with pyproject.toml
|
|
15
|
+
__version__ = "0.2.3"
|
|
16
|
+
|
|
17
|
+
|
|
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
|