pycharting 0.2.6__tar.gz → 0.2.7__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.6 → pycharting-0.2.7}/PKG-INFO +10 -1
- {pycharting-0.2.6 → pycharting-0.2.7}/README.md +9 -0
- {pycharting-0.2.6 → pycharting-0.2.7}/pyproject.toml +1 -1
- {pycharting-0.2.6 → pycharting-0.2.7}/src/api/interface.py +3 -3
- {pycharting-0.2.6 → pycharting-0.2.7}/src/api/routes.py +1 -1
- {pycharting-0.2.6 → pycharting-0.2.7}/src/core/server.py +1 -1
- {pycharting-0.2.6 → pycharting-0.2.7}/src/web/static/js/chart.js +317 -317
- {pycharting-0.2.6 → pycharting-0.2.7}/src/web/static/js/viewport.js +389 -389
- {pycharting-0.2.6 → pycharting-0.2.7}/src/api/__init__.py +0 -0
- {pycharting-0.2.6 → pycharting-0.2.7}/src/core/__init__.py +0 -0
- {pycharting-0.2.6 → pycharting-0.2.7}/src/core/lifecycle.py +0 -0
- {pycharting-0.2.6 → pycharting-0.2.7}/src/pycharting/__init__.py +0 -0
- {pycharting-0.2.6 → pycharting-0.2.7}/src/web/__init__.py +0 -0
- {pycharting-0.2.6 → pycharting-0.2.7}/src/web/static/demo.html +0 -0
- {pycharting-0.2.6 → pycharting-0.2.7}/src/web/static/js/sync.js +0 -0
- {pycharting-0.2.6 → pycharting-0.2.7}/src/web/static/multi-chart-demo.html +0 -0
- {pycharting-0.2.6 → pycharting-0.2.7}/src/web/static/viewport-demo.html +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pycharting
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
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
|
|
@@ -27,6 +27,10 @@ Description-Content-Type: text/markdown
|
|
|
27
27
|
|
|
28
28
|
# PyCharting
|
|
29
29
|
|
|
30
|
+
[](https://pypi.org/project/pycharting/)
|
|
31
|
+
[](https://pypi.org/project/pycharting/)
|
|
32
|
+
[](LICENSE)
|
|
33
|
+
|
|
30
34
|
High‑performance financial charting library for OHLC data visualization with technical indicators.
|
|
31
35
|
|
|
32
36
|
## Overview
|
|
@@ -78,6 +82,11 @@ poetry install
|
|
|
78
82
|
## Quick start
|
|
79
83
|
|
|
80
84
|
The primary API is a single `plot` function that takes OHLC arrays (plus optional overlays and subplots), starts a local server, and opens your default browser on the interactive chart.
|
|
85
|
+
You normally import everything you need like this:
|
|
86
|
+
|
|
87
|
+
```python
|
|
88
|
+
from pycharting import plot, stop_server, get_server_status
|
|
89
|
+
```
|
|
81
90
|
|
|
82
91
|
When you run this script, PyCharting will:
|
|
83
92
|
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# PyCharting
|
|
2
2
|
|
|
3
|
+
[](https://pypi.org/project/pycharting/)
|
|
4
|
+
[](https://pypi.org/project/pycharting/)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
|
|
3
7
|
High‑performance financial charting library for OHLC data visualization with technical indicators.
|
|
4
8
|
|
|
5
9
|
## Overview
|
|
@@ -51,6 +55,11 @@ poetry install
|
|
|
51
55
|
## Quick start
|
|
52
56
|
|
|
53
57
|
The primary API is a single `plot` function that takes OHLC arrays (plus optional overlays and subplots), starts a local server, and opens your default browser on the interactive chart.
|
|
58
|
+
You normally import everything you need like this:
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
from pycharting import plot, stop_server, get_server_status
|
|
62
|
+
```
|
|
54
63
|
|
|
55
64
|
When you run this script, PyCharting will:
|
|
56
65
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pycharting"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.7"
|
|
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 .routes import _data_managers
|
|
10
|
+
from data.ingestion import DataManager
|
|
11
|
+
from core.lifecycle import ChartServer
|
|
12
|
+
from api.routes import _data_managers
|
|
13
13
|
|
|
14
14
|
logger = logging.getLogger(__name__)
|
|
15
15
|
|