seolpyo-mplchart 0.1.3.1__py3-none-any.whl → 2.0.0.3__py3-none-any.whl
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.
- seolpyo_mplchart/__init__.py +164 -99
- seolpyo_mplchart/_base.py +117 -0
- seolpyo_mplchart/_chart/__init__.py +137 -0
- seolpyo_mplchart/_chart/_base.py +217 -0
- seolpyo_mplchart/_chart/_cursor/__init__.py +2 -0
- seolpyo_mplchart/_chart/_cursor/_artist.py +217 -0
- seolpyo_mplchart/_chart/_cursor/_cursor.py +165 -0
- seolpyo_mplchart/_chart/_cursor/_info.py +187 -0
- seolpyo_mplchart/_chart/_draw/__init__.py +2 -0
- seolpyo_mplchart/_chart/_draw/_artist.py +50 -0
- seolpyo_mplchart/_chart/_draw/_data.py +314 -0
- seolpyo_mplchart/_chart/_draw/_draw.py +103 -0
- seolpyo_mplchart/_chart/_draw/_lim.py +265 -0
- seolpyo_mplchart/_chart/_slider/__init__.py +1 -0
- seolpyo_mplchart/_chart/_slider/_base.py +268 -0
- seolpyo_mplchart/_chart/_slider/_data.py +105 -0
- seolpyo_mplchart/_chart/_slider/_mouse.py +176 -0
- seolpyo_mplchart/_chart/_slider/_nav.py +204 -0
- seolpyo_mplchart/_chart/test.py +121 -0
- seolpyo_mplchart/_config/__init__.py +3 -0
- seolpyo_mplchart/_config/ax.py +28 -0
- seolpyo_mplchart/_config/candle.py +30 -0
- seolpyo_mplchart/_config/config.py +21 -0
- seolpyo_mplchart/_config/cursor.py +49 -0
- seolpyo_mplchart/_config/figure.py +41 -0
- seolpyo_mplchart/_config/format.py +51 -0
- seolpyo_mplchart/_config/ma.py +15 -0
- seolpyo_mplchart/_config/slider/__init__.py +2 -0
- seolpyo_mplchart/_config/slider/config.py +24 -0
- seolpyo_mplchart/_config/slider/figure.py +20 -0
- seolpyo_mplchart/_config/slider/nav.py +9 -0
- seolpyo_mplchart/_config/unit.py +19 -0
- seolpyo_mplchart/_config/utils.py +67 -0
- seolpyo_mplchart/_config/volume.py +26 -0
- seolpyo_mplchart/_cursor.py +559 -0
- seolpyo_mplchart/_draw.py +634 -0
- seolpyo_mplchart/_slider.py +634 -0
- seolpyo_mplchart/base.py +70 -67
- seolpyo_mplchart/cursor.py +308 -271
- seolpyo_mplchart/draw.py +449 -237
- seolpyo_mplchart/slider.py +451 -396
- seolpyo_mplchart/test.py +173 -24
- seolpyo_mplchart/utils.py +15 -4
- seolpyo_mplchart/xl_to_dict.py +47 -0
- seolpyo_mplchart-2.0.0.3.dist-info/METADATA +710 -0
- seolpyo_mplchart-2.0.0.3.dist-info/RECORD +50 -0
- {seolpyo_mplchart-0.1.3.1.dist-info → seolpyo_mplchart-2.0.0.3.dist-info}/WHEEL +1 -1
- seolpyo_mplchart-0.1.3.1.dist-info/METADATA +0 -49
- seolpyo_mplchart-0.1.3.1.dist-info/RECORD +0 -13
- {seolpyo_mplchart-0.1.3.1.dist-info → seolpyo_mplchart-2.0.0.3.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
seolpyo_mplchart/__init__.py,sha256=WvDEqZB6pLV4rb5AObTkRup5u4qfID3BaEyg3k8_eiM,5832
|
|
2
|
+
seolpyo_mplchart/_base.py,sha256=3iG4AVwHR_h3rh6c1oJahWt7NvBpBFrS0bUZd4PaHfY,3921
|
|
3
|
+
seolpyo_mplchart/_cursor.py,sha256=v__66q2P4MdIsHjCZL_WcW2A-iFmXZaQMvOmbXvvkno,23370
|
|
4
|
+
seolpyo_mplchart/_draw.py,sha256=kD-FliRDDB7Jpfj_wbOtDs9bHla0oNr9_ksh5PXhUDI,23057
|
|
5
|
+
seolpyo_mplchart/_slider.py,sha256=Tuaz0_R9_U0oFqsGPzOZ1Gc2RnDiHdDP-gJrNyMFUBc,23357
|
|
6
|
+
seolpyo_mplchart/base.py,sha256=0qdImsIMPzTTkkHzPv479BVe_ojrn45FidGE46eT5x4,3797
|
|
7
|
+
seolpyo_mplchart/cursor.py,sha256=qq1WJJa7vCE5C2XeGBECt2XqxR_WxfybZZ5u6zVx5Ps,20415
|
|
8
|
+
seolpyo_mplchart/draw.py,sha256=MiqDhbMJOSlWD6qdAghsyrZwCixcwm4nfmiinvwtt-o,21520
|
|
9
|
+
seolpyo_mplchart/slider.py,sha256=-jZ6D23orDj3NmtnOviO1NRx4BrRxWvwTV5pzGQuWNI,22188
|
|
10
|
+
seolpyo_mplchart/test.py,sha256=slN1c5OskSFmi-0NRdgyjd3MQpJnonWHitPxnwKtiRc,5736
|
|
11
|
+
seolpyo_mplchart/utils.py,sha256=a3XycRBTndrsjBw_1VKTxbSvOGpVYXHRK87v7azgRe8,1433
|
|
12
|
+
seolpyo_mplchart/xl_to_dict.py,sha256=rVZXL5EU23H7zQ6SjvdOax2yCj31N7F9-FqxIXF_yPM,1905
|
|
13
|
+
seolpyo_mplchart/_chart/__init__.py,sha256=JdWfHoKWXY09r0kWwwv5TvCQ303Pob6Hw65gS7RRGCc,6143
|
|
14
|
+
seolpyo_mplchart/_chart/_base.py,sha256=JvOzdcf67HoEP7lvgdQrTDBVjKOOa595X9Re96U8-Jw,6706
|
|
15
|
+
seolpyo_mplchart/_chart/test.py,sha256=PcL5pAUvKDNjUWUSKvqYr4WZcBOeVkg-QdGvAKhTZn8,3209
|
|
16
|
+
seolpyo_mplchart/_chart/_cursor/__init__.py,sha256=PBd-VYzyTYEWxv8QXBqWa1dJLeFVShj8Cs0Tr3nwDnE,39
|
|
17
|
+
seolpyo_mplchart/_chart/_cursor/_artist.py,sha256=mgIYRFmi0oiD8dvwLGO2RPf0EkMznKS6mSdUgY3YGHE,7790
|
|
18
|
+
seolpyo_mplchart/_chart/_cursor/_cursor.py,sha256=J4uPOgu11zZEWnBotXLzugdRLMqcY-bY3IQc8xeVzjY,6005
|
|
19
|
+
seolpyo_mplchart/_chart/_cursor/_info.py,sha256=C3lKwdSXp3vI0xq7-jpsNBlFuFwIGT5ZcpvvhSxbEZg,7951
|
|
20
|
+
seolpyo_mplchart/_chart/_draw/__init__.py,sha256=3LCM_-EIj2KshQCKY66bOSu91wtFD1p2xJ6vimFrepw,39
|
|
21
|
+
seolpyo_mplchart/_chart/_draw/_artist.py,sha256=dRtXUsf2pO6cWezNkIaqnrTL40I8qpkL4mZycq9Dtx8,1602
|
|
22
|
+
seolpyo_mplchart/_chart/_draw/_data.py,sha256=5A0Y-q9Uq_iueXtmRfq80sA_5MM-v0UOS3r-EyzvPzo,11701
|
|
23
|
+
seolpyo_mplchart/_chart/_draw/_draw.py,sha256=Lf-vfZmA-ATTCPqsB6EeA8N0Lwqf_bs0zJ3DeS0FPag,2588
|
|
24
|
+
seolpyo_mplchart/_chart/_draw/_lim.py,sha256=Qn47TBq4Uy6aIAGLosvVYrTvBy1jAUMgB-n-ZqKf8CY,9697
|
|
25
|
+
seolpyo_mplchart/_chart/_slider/__init__.py,sha256=cjNCSFbrUpafg6EtENigscgc4P1FLDGNsgpqjoyRvdk,34
|
|
26
|
+
seolpyo_mplchart/_chart/_slider/_base.py,sha256=3Z6TluMtawp-T-CIB5pzkKjinr6lWFwHLn651TyLLlY,9909
|
|
27
|
+
seolpyo_mplchart/_chart/_slider/_data.py,sha256=eizZu0OGC13X7O8FaKvzEI2-2qkTMyYigCyXCl15cqM,3435
|
|
28
|
+
seolpyo_mplchart/_chart/_slider/_mouse.py,sha256=RNLDutW-YVjW3KnQg6vtsY-yHEdRkyK4BT7XES9deDw,5878
|
|
29
|
+
seolpyo_mplchart/_chart/_slider/_nav.py,sha256=RQHFv8K_F5X2owtv4UzB1aOix-UBrLRtwLJOTSP8VJ4,7530
|
|
30
|
+
seolpyo_mplchart/_config/__init__.py,sha256=SDca-jQApd0JjBYav-Ymnvvmpw8RgueERtvCMg7bIL8,136
|
|
31
|
+
seolpyo_mplchart/_config/ax.py,sha256=2tEMuoIp9oKKkVoSfUjLF4moVIGpkJCsiyGNqRji-qo,668
|
|
32
|
+
seolpyo_mplchart/_config/candle.py,sha256=VhwddskWBp8sLKcXF8eZuVohMUj9OM11zJAZR8y4jJk,1109
|
|
33
|
+
seolpyo_mplchart/_config/config.py,sha256=WtNurQWhwp-WzY00s04DMFOfVs6NHsgM90izELPJ_yk,565
|
|
34
|
+
seolpyo_mplchart/_config/cursor.py,sha256=T2UUiSwS8SZN1IjXUai0B0kDNSOcg1AmnqF_SceJRXY,937
|
|
35
|
+
seolpyo_mplchart/_config/figure.py,sha256=0rR3jkrr9fhXiRQNx_BBxBxtEzwXmd7IyOsgs51L_VA,846
|
|
36
|
+
seolpyo_mplchart/_config/format.py,sha256=Vq3DnuxDTCCUyC1Bt6asQ1PU8qbJCVrjc88OMYnw0_A,1003
|
|
37
|
+
seolpyo_mplchart/_config/ma.py,sha256=tdKsMr83RWj_AyX9QPJA6jBzJO2QC5agQBdstBxoD2w,456
|
|
38
|
+
seolpyo_mplchart/_config/unit.py,sha256=9zOOVu1QVQMUN7OdMI-EEHMQRBIYUepOxmb0d_4-2Kc,387
|
|
39
|
+
seolpyo_mplchart/_config/utils.py,sha256=hPpHwVab7_FHh4H1RWdx9Pz8TxPVvbAxfBesfGB9ckA,1851
|
|
40
|
+
seolpyo_mplchart/_config/volume.py,sha256=hnZNwqKLZalDkO165eVnZec9QF-lzuef_7ExT_sCC1s,807
|
|
41
|
+
seolpyo_mplchart/_config/slider/__init__.py,sha256=kzkIMNQguZIRXgPbLmuyrShoGSC7CD4lkvu4EHQv7N8,71
|
|
42
|
+
seolpyo_mplchart/_config/slider/config.py,sha256=2FKdBCzyNNNfOUd4EP-7t9iu9rQ5yfYUDKLdc2QORXU,556
|
|
43
|
+
seolpyo_mplchart/_config/slider/figure.py,sha256=0DwaS3PEijOYg2dHx8Dtf6-MZKLumv8tduTy4bcs5vE,387
|
|
44
|
+
seolpyo_mplchart/_config/slider/nav.py,sha256=0SFYyrCk9QpQldWWUuoguFSM0QuLn-l_bZtf3fwbRFA,158
|
|
45
|
+
seolpyo_mplchart/data/apple.txt,sha256=0izAfweu1lLsC0IwVthdVlo9reG8KGbKGTSX5knI5Zc,1380864
|
|
46
|
+
seolpyo_mplchart/data/samsung.txt,sha256=UejaSkbzr4E5K3lkelCT0yJiWUPfmViBEaTyoXyphIs,2476424
|
|
47
|
+
seolpyo_mplchart-2.0.0.3.dist-info/METADATA,sha256=_njz_J5voJNdoDfcUxvzwQeOw-GUSDTUhs4TVb-gCss,22025
|
|
48
|
+
seolpyo_mplchart-2.0.0.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
49
|
+
seolpyo_mplchart-2.0.0.3.dist-info/top_level.txt,sha256=KgqFn7rKWize7OjMaTCHxKm9ie6vqnyb5c8fN7y_tSo,17
|
|
50
|
+
seolpyo_mplchart-2.0.0.3.dist-info/RECORD,,
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.2
|
|
2
|
-
Name: seolpyo-mplchart
|
|
3
|
-
Version: 0.1.3.1
|
|
4
|
-
Summary: Fast candlestick chart using Python. Includes navigator, slider, navigation, and text information display functions
|
|
5
|
-
Author-email: white-seolpyo <white-seolpyo@naver.com>
|
|
6
|
-
License: MIT License
|
|
7
|
-
Project-URL: Homepage, https://white.seolpyo.com/
|
|
8
|
-
Project-URL: Documentation(English), https://white.seolpyo.com/entry/148/
|
|
9
|
-
Project-URL: Documentation(한글), https://white.seolpyo.com/entry/147/
|
|
10
|
-
Project-URL: repository, https://github.com/white-seolpyo/seolpyo-mplchart
|
|
11
|
-
Project-URL: Issues, https://github.com/white-seolpyo/seolpyo-mplchart/issues
|
|
12
|
-
Keywords: chart,차트,stock,주식,invest,투자,finance,파이낸스,candle,캔들,candlestick,캔들스틱,matplotlib,mplfinance,pyqtgraph,finplot,virtual currency,가상화폐,coin,코인,bitcoin,비트코인,ethereum,이더리움
|
|
13
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
15
|
-
Classifier: Framework :: Matplotlib
|
|
16
|
-
Classifier: Operating System :: Microsoft :: Windows
|
|
17
|
-
Classifier: Intended Audience :: Developers
|
|
18
|
-
Classifier: Programming Language :: Python
|
|
19
|
-
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
-
Requires-Python: >=3.11
|
|
24
|
-
Description-Content-Type: text/markdown
|
|
25
|
-
Requires-Dist: matplotlib>=3.7.0
|
|
26
|
-
Requires-Dist: pandas>=2.0.0
|
|
27
|
-
|
|
28
|
-
# Donation
|
|
29
|
-
Bitcoin: 1MKCHW8smDZv5DFMiVkA5G3DeXcMn871ZX
|
|
30
|
-
|
|
31
|
-
Ethereum: 0x1c5fb8a5e0b1153cd4116c91736bd16fabf83520
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
# Document
|
|
35
|
-
[English](https://white.seolpyo.com/entry/148/)
|
|
36
|
-
|
|
37
|
-
[한글](https://white.seolpyo.com/entry/147/)
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
# Sample
|
|
41
|
-

|
|
42
|
-
|
|
43
|
-
<img alt="tkinter sample gif" src="https://github.com/white-seolpyo/seolpyo-mplchart/blob/main/images/with%20tkinter.gif?raw=true">
|
|
44
|
-
|
|
45
|
-

|
|
46
|
-
|
|
47
|
-

|
|
48
|
-
|
|
49
|
-
<img alt="40,000 sample" src="https://github.com/white-seolpyo/seolpyo-mplchart/blob/main/images/40000.gif?raw=true">
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
seolpyo_mplchart/__init__.py,sha256=FiuciCaX9lU12gwuDBYUNw0yLD06p4o7o19kR5jGips,5248
|
|
2
|
-
seolpyo_mplchart/base.py,sha256=vQ4OOBm3nGwjJ4wjDLaD_3LGxYzlP6AWpI6SZrZiwnQ,3600
|
|
3
|
-
seolpyo_mplchart/cursor.py,sha256=rXGWf0p3oElnsVfEPObGVnD8dBMfvTgx2o6RermkMbE,18405
|
|
4
|
-
seolpyo_mplchart/draw.py,sha256=NJH1dnmfepafMlc7K2ccwZbv0FDS3ItSiirCq4gMlOI,13145
|
|
5
|
-
seolpyo_mplchart/slider.py,sha256=R29vyNAdJkLEXgpP4hxe9O0WoLgoOnPOUHuKFNpdcnw,19601
|
|
6
|
-
seolpyo_mplchart/test.py,sha256=cW2hoaVbRtoSXlpmA4i1BKHBjI3-FAqYq__kryxkrC8,1007
|
|
7
|
-
seolpyo_mplchart/utils.py,sha256=-8cq4-WwiqKQxtwu3NPxOVTDDvoWH28tu4OTWr4hPTg,1208
|
|
8
|
-
seolpyo_mplchart/data/apple.txt,sha256=0izAfweu1lLsC0IwVthdVlo9reG8KGbKGTSX5knI5Zc,1380864
|
|
9
|
-
seolpyo_mplchart/data/samsung.txt,sha256=UejaSkbzr4E5K3lkelCT0yJiWUPfmViBEaTyoXyphIs,2476424
|
|
10
|
-
seolpyo_mplchart-0.1.3.1.dist-info/METADATA,sha256=3fGWiUtSqRHxnuEEOLdwvPJAr8dJELx8RdGzU1wF9Sw,2347
|
|
11
|
-
seolpyo_mplchart-0.1.3.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
12
|
-
seolpyo_mplchart-0.1.3.1.dist-info/top_level.txt,sha256=KgqFn7rKWize7OjMaTCHxKm9ie6vqnyb5c8fN7y_tSo,17
|
|
13
|
-
seolpyo_mplchart-0.1.3.1.dist-info/RECORD,,
|
|
File without changes
|