seolpyo-mplchart 2.0.0.3__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 (54) hide show
  1. seolpyo_mplchart/__init__.py +17 -133
  2. seolpyo_mplchart/_chart/__init__.py +39 -31
  3. seolpyo_mplchart/_chart/base/__init__.py +111 -0
  4. seolpyo_mplchart/_chart/base/a_canvas.py +250 -0
  5. seolpyo_mplchart/_chart/base/b_artist.py +143 -0
  6. seolpyo_mplchart/_chart/base/c_draw.py +100 -0
  7. seolpyo_mplchart/_chart/base/d_segment.py +262 -0
  8. seolpyo_mplchart/_chart/base/e_axis.py +267 -0
  9. seolpyo_mplchart/_chart/base/f_background.py +62 -0
  10. seolpyo_mplchart/_chart/base/g_event.py +66 -0
  11. seolpyo_mplchart/_chart/base/h_data.py +138 -0
  12. seolpyo_mplchart/_chart/base/test.py +58 -0
  13. seolpyo_mplchart/_chart/cursor/__init__.py +125 -0
  14. seolpyo_mplchart/_chart/cursor/b_artist.py +130 -0
  15. seolpyo_mplchart/_chart/cursor/c_draw.py +96 -0
  16. seolpyo_mplchart/_chart/cursor/d_segment.py +359 -0
  17. seolpyo_mplchart/_chart/cursor/e_axis.py +65 -0
  18. seolpyo_mplchart/_chart/cursor/g_event.py +233 -0
  19. seolpyo_mplchart/_chart/cursor/h_data.py +61 -0
  20. seolpyo_mplchart/_chart/cursor/test.py +69 -0
  21. seolpyo_mplchart/_chart/slider/__init__.py +169 -0
  22. seolpyo_mplchart/_chart/slider/a_canvas.py +260 -0
  23. seolpyo_mplchart/_chart/slider/b_artist.py +91 -0
  24. seolpyo_mplchart/_chart/slider/c_draw.py +54 -0
  25. seolpyo_mplchart/_chart/slider/d_segment.py +166 -0
  26. seolpyo_mplchart/_chart/slider/e_axis.py +70 -0
  27. seolpyo_mplchart/_chart/slider/f_background.py +37 -0
  28. seolpyo_mplchart/_chart/slider/g_event.py +353 -0
  29. seolpyo_mplchart/_chart/slider/h_data.py +102 -0
  30. seolpyo_mplchart/_chart/slider/test.py +71 -0
  31. seolpyo_mplchart/_config/candle.py +1 -0
  32. seolpyo_mplchart/_config/figure.py +3 -4
  33. seolpyo_mplchart/_config/ma.py +2 -0
  34. seolpyo_mplchart/_config/slider/config.py +2 -2
  35. seolpyo_mplchart/_config/slider/figure.py +3 -4
  36. seolpyo_mplchart/_config/slider/nav.py +3 -2
  37. seolpyo_mplchart/_config/volume.py +1 -0
  38. seolpyo_mplchart/_utils/__init__.py +10 -0
  39. seolpyo_mplchart/_utils/nums.py +67 -0
  40. seolpyo_mplchart/_utils/theme/__init__.py +15 -0
  41. seolpyo_mplchart/_utils/theme/dark.py +57 -0
  42. seolpyo_mplchart/_utils/theme/light.py +56 -0
  43. seolpyo_mplchart/_utils/utils.py +28 -0
  44. seolpyo_mplchart/_utils/xl/__init__.py +15 -0
  45. seolpyo_mplchart/_utils/xl/csv.py +46 -0
  46. seolpyo_mplchart/_utils/xl/xlsx.py +49 -0
  47. seolpyo_mplchart/sample/apple.txt +6058 -0
  48. seolpyo_mplchart/sample/samsung.txt +5938 -0
  49. seolpyo_mplchart/test.py +5 -5
  50. {seolpyo_mplchart-2.0.0.3.dist-info → seolpyo_mplchart-2.1.0.dist-info}/METADATA +21 -13
  51. seolpyo_mplchart-2.1.0.dist-info/RECORD +89 -0
  52. seolpyo_mplchart-2.0.0.3.dist-info/RECORD +0 -50
  53. {seolpyo_mplchart-2.0.0.3.dist-info → seolpyo_mplchart-2.1.0.dist-info}/WHEEL +0 -0
  54. {seolpyo_mplchart-2.0.0.3.dist-info → seolpyo_mplchart-2.1.0.dist-info}/top_level.txt +0 -0
seolpyo_mplchart/test.py CHANGED
@@ -15,7 +15,7 @@ import matplotlib.pyplot as plt
15
15
  from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
16
16
 
17
17
  import seolpyo_mplchart as mc
18
- from seolpyo_mplchart.xl_to_dict import convert
18
+ from seolpyo_mplchart._utils.xl import xl_to_dataList
19
19
 
20
20
 
21
21
  path_file = path_pkg / 'sample' / 'apple.txt'
@@ -27,7 +27,7 @@ df = pd.DataFrame(data[:])
27
27
 
28
28
  def test():
29
29
  import seolpyo_mplchart as mc
30
- class C(mc.CursorChart):
30
+ class C(mc.SliderChart):
31
31
  # fraction = True
32
32
  # watermark = 0
33
33
  theme = 'light'
@@ -162,7 +162,7 @@ class TkChart:
162
162
  return
163
163
 
164
164
  def set_chart(self, path_file):
165
- data = convert(path_file)
165
+ data = xl_to_dataList(path_file)
166
166
  print(f'{len(data)=:,}')
167
167
  df = pd.DataFrame(data)
168
168
  self.chart.set_data(df)
@@ -182,6 +182,6 @@ def test_tk():
182
182
 
183
183
 
184
184
  if __name__ == '__main__':
185
- test()
186
- # test_tk()
185
+ # test()
186
+ test_tk()
187
187
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seolpyo-mplchart
3
- Version: 2.0.0.3
3
+ Version: 2.1.0
4
4
  Summary: Fast candlestick chart using Python. Includes navigator, slider, navigation, and text information display functions
5
5
  Author-email: white-seolpyo <white-seolpyo@naver.com>
6
6
  License: MIT License
@@ -32,7 +32,7 @@ Ethereum: 0x1c5fb8a5e0b1153cd4116c91736bd16fabf83520
32
32
 
33
33
 
34
34
  # Document
35
- [English Document](https://github.com/white-seolpyo/seolpyo-mplchart/blob/main/README.md)
35
+ [English Document](https://github.com/white-seolpyo/seolpyo-mplchart/tree/maind)
36
36
 
37
37
  [한글 설명서](https://white.seolpyo.com/entry/147/?from=pypi)
38
38
 
@@ -43,14 +43,14 @@ Ethereum: 0x1c5fb8a5e0b1153cd4116c91736bd16fabf83520
43
43
  reference version
44
44
  ----
45
45
 
46
- 2.0.0
46
+ 2.1.0
47
47
 
48
48
  Package Introduction
49
49
  ------
50
50
 
51
51
  ![](https://github.com/white-seolpyo/seolpyo-mplchart/blob/main/images/candle.png?raw=true)![](https://github.com/white-seolpyo/seolpyo-mplchart/blob/main/images/40000.gif?raw=true)
52
52
 
53
- Sample Charts with Over 40,000 Stock Price Data Points
53
+ Sample Charts with Over 40,000 Stock Price Data Points, with Intel i5 4690
54
54
 
55
55
  seolpyo-mplchart is a Python package built on top of matplotlib.
56
56
 
@@ -144,10 +144,10 @@ If not provided, the predefined CONFIG\* settings will be used.
144
144
  \* CONFIG: mc.DEFAULTCONFIG(OnlyChart, CursorChart) 또는 mc.SLIDERCONFIG(SliderChart)
145
145
 
146
146
 
147
- #### wartermark
147
+ #### watermark
148
148
 
149
149
  Watermark text displayed at the center of the chart.
150
- If if not self.wartermark evaluates to true, the watermark will not be rendered.
150
+ If if not self.watermark evaluates to true, the watermark will not be rendered.
151
151
 
152
152
 
153
153
  #### candle\_on\_ma
@@ -283,14 +283,20 @@ Determines whether the mouse cursor is located within the volume chart area.
283
283
 
284
284
  Creates a chart object.
285
285
 
286
- #### Chart.set\_data(df)
286
+ #### Chart.set_data(df, change_xlim=True)
287
287
 
288
288
  Passes stock price data to the chart object.
289
289
  The chart object generates chart data based on the received input.
290
290
  When retrieving data from a DataFrame, the predefined keys — Chart.key\_date, Chart.key\_open, Chart.key\_high, Chart.key\_low, Chart.key\_close, and Chart.key\_volume — are used.
291
291
  Therefore, these keys should be properly set before calling set\_data.
292
+ `if change_lim is True`, it retrieves the values from Chart.get_default_lim() and updates the xlim accordingly.
292
293
 
293
294
 
295
+
296
+ #### Chart.get_default_xlim()
297
+
298
+ It retrieves the xlim values set when Chart.set_data() is called.
299
+
294
300
  #### Chart.refresh()
295
301
 
296
302
  Refreshes the chart.
@@ -416,8 +422,8 @@ Predefined keyword arguments are passed via **kwargs.
416
422
 
417
423
  def get_info_kwargs(self, is_price, **kwargs):
418
424
  if is_price:
419
- kwargs['ci'] = 'You can add Custom text Info or Change text info.'
420
- kwargs['close'] = 'You can Change close price info.'
425
+ kwargs['ci'] = 'this is custom add info kwargs'
426
+ kwargs['close'] = 'Cusotom close value'
421
427
  return kwargs
422
428
 
423
429
  C = Chart()
@@ -428,6 +434,8 @@ Predefined keyword arguments are passed via **kwargs.
428
434
 
429
435
  mc.show()
430
436
 
437
+ ![](https://github.com/white-seolpyo/seolpyo-mplchart/blob/main/images/change%20text%20info.png?raw=true)
438
+
431
439
  #### Chart.on\_draw(e)
432
440
 
433
441
  Method called when the draw event is triggered.
@@ -487,7 +495,7 @@ CONFIG applied to SliderChart.
487
495
 
488
496
  CONFIG applied to SliderChart, with the price unit set to $, the volume unit set to Vol, and the formatting based on English conventions.
489
497
 
490
-
498
+ ```
491
499
  # seolpyo_mplchart/_config/slider/config.py
492
500
 
493
501
  from .. import config
@@ -513,9 +521,9 @@ CONFIG applied to SliderChart, with the price unit set to $, the volume unit set
513
521
  SLIDERCONFIG_EN: SliderConfigData = config.DEFAULTCONFIG_EN
514
522
  SLIDERCONFIG_EN.FIGURE = FIGURE
515
523
  SLIDERCONFIG_EN.SLIDER = SLIDER
516
-
517
-
524
+ ```
518
525
 
526
+ ```
519
527
  # seolpyo_mplchart/_config/config.py
520
528
 
521
529
  from . import figure, ax, candle, volume, ma, unit, cursor, format
@@ -538,7 +546,7 @@ CONFIG applied to SliderChart, with the price unit set to $, the volume unit set
538
546
  DEFAULTCONFIG_EN.UNIT = unit.UNIT_EN
539
547
  DEFAULTCONFIG_EN.MA = ma.MA_EN
540
548
  DEFAULTCONFIG_EN.FORMAT = format.FORMAT_EN
541
-
549
+ ```
542
550
 
543
551
 
544
552
  # Others
@@ -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,50 +0,0 @@
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,,