seolpyo-mplchart 1.4.1__py3-none-any.whl → 2.1.0__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.
Files changed (83) hide show
  1. seolpyo_mplchart/__init__.py +53 -333
  2. seolpyo_mplchart/_chart/__init__.py +145 -0
  3. seolpyo_mplchart/_chart/_base.py +217 -0
  4. seolpyo_mplchart/_chart/_cursor/__init__.py +2 -0
  5. seolpyo_mplchart/_chart/_cursor/_artist.py +217 -0
  6. seolpyo_mplchart/_chart/_cursor/_cursor.py +165 -0
  7. seolpyo_mplchart/_chart/_cursor/_info.py +187 -0
  8. seolpyo_mplchart/_chart/_draw/__init__.py +2 -0
  9. seolpyo_mplchart/_chart/_draw/_artist.py +50 -0
  10. seolpyo_mplchart/_chart/_draw/_data.py +314 -0
  11. seolpyo_mplchart/_chart/_draw/_draw.py +103 -0
  12. seolpyo_mplchart/_chart/_draw/_lim.py +265 -0
  13. seolpyo_mplchart/_chart/_slider/__init__.py +1 -0
  14. seolpyo_mplchart/_chart/_slider/_base.py +268 -0
  15. seolpyo_mplchart/_chart/_slider/_data.py +105 -0
  16. seolpyo_mplchart/_chart/_slider/_mouse.py +176 -0
  17. seolpyo_mplchart/_chart/_slider/_nav.py +204 -0
  18. seolpyo_mplchart/_chart/base/__init__.py +111 -0
  19. seolpyo_mplchart/_chart/base/a_canvas.py +250 -0
  20. seolpyo_mplchart/_chart/base/b_artist.py +143 -0
  21. seolpyo_mplchart/_chart/base/c_draw.py +100 -0
  22. seolpyo_mplchart/_chart/base/d_segment.py +262 -0
  23. seolpyo_mplchart/_chart/base/e_axis.py +267 -0
  24. seolpyo_mplchart/_chart/base/f_background.py +62 -0
  25. seolpyo_mplchart/_chart/base/g_event.py +66 -0
  26. seolpyo_mplchart/_chart/base/h_data.py +138 -0
  27. seolpyo_mplchart/_chart/base/test.py +58 -0
  28. seolpyo_mplchart/_chart/cursor/__init__.py +125 -0
  29. seolpyo_mplchart/_chart/cursor/b_artist.py +130 -0
  30. seolpyo_mplchart/_chart/cursor/c_draw.py +96 -0
  31. seolpyo_mplchart/_chart/cursor/d_segment.py +359 -0
  32. seolpyo_mplchart/_chart/cursor/e_axis.py +65 -0
  33. seolpyo_mplchart/_chart/cursor/g_event.py +233 -0
  34. seolpyo_mplchart/_chart/cursor/h_data.py +61 -0
  35. seolpyo_mplchart/_chart/cursor/test.py +69 -0
  36. seolpyo_mplchart/_chart/slider/__init__.py +169 -0
  37. seolpyo_mplchart/_chart/slider/a_canvas.py +260 -0
  38. seolpyo_mplchart/_chart/slider/b_artist.py +91 -0
  39. seolpyo_mplchart/_chart/slider/c_draw.py +54 -0
  40. seolpyo_mplchart/_chart/slider/d_segment.py +166 -0
  41. seolpyo_mplchart/_chart/slider/e_axis.py +70 -0
  42. seolpyo_mplchart/_chart/slider/f_background.py +37 -0
  43. seolpyo_mplchart/_chart/slider/g_event.py +353 -0
  44. seolpyo_mplchart/_chart/slider/h_data.py +102 -0
  45. seolpyo_mplchart/_chart/slider/test.py +71 -0
  46. seolpyo_mplchart/_chart/test.py +121 -0
  47. seolpyo_mplchart/_config/__init__.py +3 -0
  48. seolpyo_mplchart/_config/ax.py +28 -0
  49. seolpyo_mplchart/_config/candle.py +31 -0
  50. seolpyo_mplchart/_config/config.py +21 -0
  51. seolpyo_mplchart/_config/cursor.py +49 -0
  52. seolpyo_mplchart/_config/figure.py +40 -0
  53. seolpyo_mplchart/_config/format.py +51 -0
  54. seolpyo_mplchart/_config/ma.py +17 -0
  55. seolpyo_mplchart/_config/slider/__init__.py +2 -0
  56. seolpyo_mplchart/_config/slider/config.py +24 -0
  57. seolpyo_mplchart/_config/slider/figure.py +19 -0
  58. seolpyo_mplchart/_config/slider/nav.py +10 -0
  59. seolpyo_mplchart/_config/unit.py +19 -0
  60. seolpyo_mplchart/_config/utils.py +67 -0
  61. seolpyo_mplchart/_config/volume.py +27 -0
  62. seolpyo_mplchart/_cursor.py +27 -25
  63. seolpyo_mplchart/_draw.py +7 -18
  64. seolpyo_mplchart/_slider.py +26 -20
  65. seolpyo_mplchart/_utils/__init__.py +10 -0
  66. seolpyo_mplchart/_utils/nums.py +67 -0
  67. seolpyo_mplchart/_utils/theme/__init__.py +15 -0
  68. seolpyo_mplchart/_utils/theme/dark.py +57 -0
  69. seolpyo_mplchart/_utils/theme/light.py +56 -0
  70. seolpyo_mplchart/_utils/utils.py +28 -0
  71. seolpyo_mplchart/_utils/xl/__init__.py +15 -0
  72. seolpyo_mplchart/_utils/xl/csv.py +46 -0
  73. seolpyo_mplchart/_utils/xl/xlsx.py +49 -0
  74. seolpyo_mplchart/sample/apple.txt +6058 -0
  75. seolpyo_mplchart/sample/samsung.txt +5938 -0
  76. seolpyo_mplchart/test.py +172 -56
  77. seolpyo_mplchart/xl_to_dict.py +47 -0
  78. seolpyo_mplchart-2.1.0.dist-info/METADATA +718 -0
  79. seolpyo_mplchart-2.1.0.dist-info/RECORD +89 -0
  80. {seolpyo_mplchart-1.4.1.dist-info → seolpyo_mplchart-2.1.0.dist-info}/WHEEL +1 -1
  81. seolpyo_mplchart-1.4.1.dist-info/METADATA +0 -57
  82. seolpyo_mplchart-1.4.1.dist-info/RECORD +0 -17
  83. {seolpyo_mplchart-1.4.1.dist-info → seolpyo_mplchart-2.1.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,89 @@
1
+ seolpyo_mplchart/__init__.py,sha256=WPQ6979ZX_cz6oYPwesiuLEZSZ7vQWBqCZsLYjn6UVY,1865
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=xUlz3auM--BPD3XpzCK__mBJ0GDIcMMJ98NFtPHEVUs,5749
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=quhiNqWw95f_emgXsrevEiJ0G9oznZK-oik_foAT6FE,5492
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/_chart/base/__init__.py,sha256=mVQlCfkb617jFcct4j5sBKj03yM5HawXespz6xD2C_I,2527
31
+ seolpyo_mplchart/_chart/base/a_canvas.py,sha256=1TQ_Znsi7dOA-4MttvuWksLjU3FpaPgjMC57brXu3J0,8443
32
+ seolpyo_mplchart/_chart/base/b_artist.py,sha256=LcRc3jlXjWOFgkpnnFw-lfGhOcmEKq0Dz9IqcGvAmTY,4976
33
+ seolpyo_mplchart/_chart/base/c_draw.py,sha256=B_bWn0KmQBkwIejulDNpxtOrjz7vZ4i3oAwQUEc6V-0,2533
34
+ seolpyo_mplchart/_chart/base/d_segment.py,sha256=2RhZCBi5dgFjeUpBjHrjx4qwip9JFLp4sPQ7iKD4Dn4,9220
35
+ seolpyo_mplchart/_chart/base/e_axis.py,sha256=j4fPa_UGBr5fpfef2IuyLvPT7Su9lS3WPmRmH63ZtJA,9714
36
+ seolpyo_mplchart/_chart/base/f_background.py,sha256=dsyvI6oYwib6TuG1_tbGzRE2E0rKWMXTEcJSRVE4apg,1509
37
+ seolpyo_mplchart/_chart/base/g_event.py,sha256=rgYaHVicdMZZpVp5RIDZh0Xe6A2rm34erl_J30PK6nw,1795
38
+ seolpyo_mplchart/_chart/base/h_data.py,sha256=1SI031vol37rGSVK0nnpSx3N5cPi3NU1BqP4E3ymUzE,4379
39
+ seolpyo_mplchart/_chart/base/test.py,sha256=3lZSJBxvswp_MSHT8aBPaPGdxzPnYC_M4UuMe8XHsRg,1346
40
+ seolpyo_mplchart/_chart/cursor/__init__.py,sha256=VbjJBckQHc243aLmIWgzJ_0lTXPg8EghKoIDlyANVQo,2607
41
+ seolpyo_mplchart/_chart/cursor/b_artist.py,sha256=jNIQ3ic9nA4NhSm-a1kmmLc8SgI4B-fmwZrtEBMn63M,3921
42
+ seolpyo_mplchart/_chart/cursor/c_draw.py,sha256=oc3ppUhnMLqvweYfzNPs8DYV2rmKJbH4haid1CVFhCY,2320
43
+ seolpyo_mplchart/_chart/cursor/d_segment.py,sha256=UWkTtrG1ovq-QiGkzmyUGTALQOv9kEmVVd-KgRNwWEE,12350
44
+ seolpyo_mplchart/_chart/cursor/e_axis.py,sha256=qzsqYZy_mjo5T4ojQo87nSgQqoHIyUReAJRME7ChbZc,1428
45
+ seolpyo_mplchart/_chart/cursor/g_event.py,sha256=ZhYLsO64QhSUYZoXdPDdsTiWviGFdLigEsBju4rdp4A,6493
46
+ seolpyo_mplchart/_chart/cursor/h_data.py,sha256=J89eWOnDkkcvFo_sDjVEjhjUjXVobyOyGu6N5RWQXUs,2424
47
+ seolpyo_mplchart/_chart/cursor/test.py,sha256=55-zz_5s6RakB87-cnYCN1JXX8wJok9QEzqVz1fwp0g,1873
48
+ seolpyo_mplchart/_chart/slider/__init__.py,sha256=KtdIDFZ1jOJF4n4fuwlGJcD0js9wzCg9pOgI5sn5WJ0,3628
49
+ seolpyo_mplchart/_chart/slider/a_canvas.py,sha256=BoHNK_DY1rxrrBhp2ugFl2MU7wzApLhV1824kswDwPM,8980
50
+ seolpyo_mplchart/_chart/slider/b_artist.py,sha256=ttphd_u3NUH3qIedGmErWaPilfPaWv963WLKEkKtXt0,2833
51
+ seolpyo_mplchart/_chart/slider/c_draw.py,sha256=fnT1mvl61dzyMHLGfj58YOX_KbNOPj-98tBjVa8Ipps,1276
52
+ seolpyo_mplchart/_chart/slider/d_segment.py,sha256=KwKkL3iXXgVRlnFvJNTy02Hb4Aw3rwcruK4xFyEdiV8,4881
53
+ seolpyo_mplchart/_chart/slider/e_axis.py,sha256=quJUxCOCDmnbzQ-KAuFRSHMs-8sXaP8paqKIkYM43_A,2445
54
+ seolpyo_mplchart/_chart/slider/f_background.py,sha256=9V3yPhJaZDZfl48J56XITXFSPAmWDa8vBrWeNzwLGv4,704
55
+ seolpyo_mplchart/_chart/slider/g_event.py,sha256=ozz0SmnPrd443iOd6Yz5UJYTUPJhPysDHTL8BxwWpJQ,10859
56
+ seolpyo_mplchart/_chart/slider/h_data.py,sha256=nUBFMxquSYNr4djNygAZyshwbpKTTh1PosJGocmkPWE,2795
57
+ seolpyo_mplchart/_chart/slider/test.py,sha256=dYSeCxaVkNSXhLPadQIYeWKVOnjQM9vjBQsCrIk8ecU,1973
58
+ seolpyo_mplchart/_config/__init__.py,sha256=SDca-jQApd0JjBYav-Ymnvvmpw8RgueERtvCMg7bIL8,136
59
+ seolpyo_mplchart/_config/ax.py,sha256=2tEMuoIp9oKKkVoSfUjLF4moVIGpkJCsiyGNqRji-qo,668
60
+ seolpyo_mplchart/_config/candle.py,sha256=jalt_rixg_DS0GGFEaWuYYFsVGmkzlpNVswxYqIOUg4,1139
61
+ seolpyo_mplchart/_config/config.py,sha256=WtNurQWhwp-WzY00s04DMFOfVs6NHsgM90izELPJ_yk,565
62
+ seolpyo_mplchart/_config/cursor.py,sha256=T2UUiSwS8SZN1IjXUai0B0kDNSOcg1AmnqF_SceJRXY,937
63
+ seolpyo_mplchart/_config/figure.py,sha256=M1pGX3iJ52_S5gKKe5TXhOvchCxT40Pa88hE6TcJ4m0,826
64
+ seolpyo_mplchart/_config/format.py,sha256=Vq3DnuxDTCCUyC1Bt6asQ1PU8qbJCVrjc88OMYnw0_A,1003
65
+ seolpyo_mplchart/_config/ma.py,sha256=aaJ8vh2rGM4MomOl5NBBcGZt29ma--uXx2nYiR6axGQ,508
66
+ seolpyo_mplchart/_config/unit.py,sha256=9zOOVu1QVQMUN7OdMI-EEHMQRBIYUepOxmb0d_4-2Kc,387
67
+ seolpyo_mplchart/_config/utils.py,sha256=hPpHwVab7_FHh4H1RWdx9Pz8TxPVvbAxfBesfGB9ckA,1851
68
+ seolpyo_mplchart/_config/volume.py,sha256=NHwo53HrGF9V3vLakIFZiRWy2vIAz4wEmJ4F2upL5oo,837
69
+ seolpyo_mplchart/_config/slider/__init__.py,sha256=kzkIMNQguZIRXgPbLmuyrShoGSC7CD4lkvu4EHQv7N8,71
70
+ seolpyo_mplchart/_config/slider/config.py,sha256=sm6o_cHMBKITXfyXWmM_IPHf0AUcuhBWRKvnPzBUmH8,538
71
+ seolpyo_mplchart/_config/slider/figure.py,sha256=qwDzQU0CN_GDyFqa9ikd97AepA8V6RGUzGRnWOmsBaw,363
72
+ seolpyo_mplchart/_config/slider/nav.py,sha256=Qlar209yjdEUxzewDR_mdrNq5SsKXSfwsduLxqkgaRI,159
73
+ seolpyo_mplchart/_utils/__init__.py,sha256=0eUbo75GJLePAefed__UiK5pWAEDVWbJDy3mIMdFVe4,260
74
+ seolpyo_mplchart/_utils/nums.py,sha256=FUkJSWM2RjSdyTzO3QERotkBlgKTcbwG5Kpg-smyWjE,1871
75
+ seolpyo_mplchart/_utils/utils.py,sha256=JOdJY__3mHTzMV2DCmlJHa8P2jsc3QK_0xbJ1CcIPao,632
76
+ seolpyo_mplchart/_utils/theme/__init__.py,sha256=T9Z75r4gBj00ZMLwtaF8Q5unxLqYNgP2Kchlx8lMYrE,368
77
+ seolpyo_mplchart/_utils/theme/dark.py,sha256=gvZSrYpTI6MmDg6lvFpUWVghyPP8Vuw4KNyHuqc0_sU,1751
78
+ seolpyo_mplchart/_utils/theme/light.py,sha256=lGUNfSQC5xjU9NrAtQGbzNIuWlF-h3NUhisDiO3rX5o,1701
79
+ seolpyo_mplchart/_utils/xl/__init__.py,sha256=udL3Eg1msTHqbS72F4bG5z2RxwiquDpiL_vsUN_u4dg,407
80
+ seolpyo_mplchart/_utils/xl/csv.py,sha256=2k2LVLp8PErvvLVLwkb3BqZzHZ2G02zny9lGbHZv69k,1336
81
+ seolpyo_mplchart/_utils/xl/xlsx.py,sha256=GabEKOxXFjYTtSabYoK1MuRAgovtHHYDBVgF6F-clQg,1911
82
+ seolpyo_mplchart/data/apple.txt,sha256=0izAfweu1lLsC0IwVthdVlo9reG8KGbKGTSX5knI5Zc,1380864
83
+ seolpyo_mplchart/data/samsung.txt,sha256=UejaSkbzr4E5K3lkelCT0yJiWUPfmViBEaTyoXyphIs,2476424
84
+ seolpyo_mplchart/sample/apple.txt,sha256=vCN3oilzXZG8VQ39LYBMG1BKhwcv0ZFC1IUptJANJRA,110438
85
+ seolpyo_mplchart/sample/samsung.txt,sha256=LIL30O0mk9Zcmd_7vQwP8FvoAMi_ttKTJZ7wXWMC-Lw,105228
86
+ seolpyo_mplchart-2.1.0.dist-info/METADATA,sha256=F0lVEwme9B8OaVlbj2q5yLHPyvnHq-hUdoAtt7p6EMI,22343
87
+ seolpyo_mplchart-2.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
88
+ seolpyo_mplchart-2.1.0.dist-info/top_level.txt,sha256=KgqFn7rKWize7OjMaTCHxKm9ie6vqnyb5c8fN7y_tSo,17
89
+ seolpyo_mplchart-2.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (79.0.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,57 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: seolpyo-mplchart
3
- Version: 1.4.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 Document](https://white.seolpyo.com/entry/148/?from=pypi)
36
-
37
- [한글 설명서](https://white.seolpyo.com/entry/147/?from=pypi)
38
-
39
-
40
- # Sample Image
41
- ## sample
42
- ![sample gif](https://raw.githubusercontent.com/white-seolpyo/seolpyo-mplchart/refs/heads/main/images/sample.gif)
43
-
44
- ## tkinter sample
45
- ![tkinter sample gif](https://raw.githubusercontent.com/white-seolpyo/seolpyo-mplchart/refs/heads/main/images/with%20tkinter.gif)
46
-
47
- ## English format sample
48
- ![english sample](https://raw.githubusercontent.com/white-seolpyo/seolpyo-mplchart/refs/heads/main/images/change%20color.png)
49
-
50
- ## Korean format sample
51
- ![korean sample](https://raw.githubusercontent.com/white-seolpyo/seolpyo-mplchart/refs/heads/main/images/sample%20kor.png)
52
-
53
- ## change Candle shape sample
54
- ![Candle shape sample](https://github.com/white-seolpyo/seolpyo-mplchart/blob/main/images/change%20candle%20segment.png)
55
-
56
- # 40,000 data sample
57
- ![40,000 sample](https://raw.githubusercontent.com/white-seolpyo/seolpyo-mplchart/refs/heads/main/images/40000.gif)
@@ -1,17 +0,0 @@
1
- seolpyo_mplchart/__init__.py,sha256=1rY6PP1OMMr1d_5x7dlAD2ImQAXChT5spvB45j6yDp8,18255
2
- seolpyo_mplchart/_base.py,sha256=3iG4AVwHR_h3rh6c1oJahWt7NvBpBFrS0bUZd4PaHfY,3921
3
- seolpyo_mplchart/_cursor.py,sha256=w3ndsyfFMRp8nnkAEVXtJH8-YLm1r-mA8bCdS82iSWE,23442
4
- seolpyo_mplchart/_draw.py,sha256=iBaFkllpaXewjECU82gZ0RQm8qTG0c1kP0PZdq8PtFo,23242
5
- seolpyo_mplchart/_slider.py,sha256=4zcanX9KSdtjn12IE3zKERaqTh07x42LKfFD2KEMcB8,23309
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=VWpAbgALqeW04LKvvf8-lLK6OwwJWuMlqfTB5ylTpnY,1830
11
- seolpyo_mplchart/utils.py,sha256=a3XycRBTndrsjBw_1VKTxbSvOGpVYXHRK87v7azgRe8,1433
12
- seolpyo_mplchart/data/apple.txt,sha256=0izAfweu1lLsC0IwVthdVlo9reG8KGbKGTSX5knI5Zc,1380864
13
- seolpyo_mplchart/data/samsung.txt,sha256=UejaSkbzr4E5K3lkelCT0yJiWUPfmViBEaTyoXyphIs,2476424
14
- seolpyo_mplchart-1.4.1.dist-info/METADATA,sha256=k0bgms5mfNlNhn5PrLB2zJkqc3xwy7XLFC3kZ86Oqus,2655
15
- seolpyo_mplchart-1.4.1.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
16
- seolpyo_mplchart-1.4.1.dist-info/top_level.txt,sha256=KgqFn7rKWize7OjMaTCHxKm9ie6vqnyb5c8fN7y_tSo,17
17
- seolpyo_mplchart-1.4.1.dist-info/RECORD,,