py2ls 0.1.6.0__py3-none-any.whl → 0.1.6.1__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.
py2ls/.DS_Store CHANGED
Binary file
@@ -123,3 +123,15 @@ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be1
123
123
  a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721298434 +0200 remote set-head
124
124
  a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721300398 +0200 remote set-head
125
125
  a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721302501 +0200 remote set-head
126
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721304466 +0200 remote set-head
127
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721306430 +0200 remote set-head
128
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721308395 +0200 remote set-head
129
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721310359 +0200 remote set-head
130
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721312323 +0200 remote set-head
131
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721314287 +0200 remote set-head
132
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721316252 +0200 remote set-head
133
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721318216 +0200 remote set-head
134
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721320179 +0200 remote set-head
135
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721322143 +0200 remote set-head
136
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721324108 +0200 remote set-head
137
+ a15389729850729fc7bd78a54f26fce77f30be12 a15389729850729fc7bd78a54f26fce77f30be12 Jianfeng Liu <macjianfeng@JFLMBP.cin.medizin.uni-tuebingen.de> 1721326072 +0200 remote set-head
py2ls/ips.py CHANGED
@@ -2043,7 +2043,17 @@ def figsets(*args,**kwargs):
2043
2043
  box=['right','bottom'],
2044
2044
  xrot=-45,
2045
2045
  yangle=20,
2046
- font_sz = 2
2046
+ font_sz = 2,
2047
+ legend=dict(labels=['group_a','group_b'],
2048
+ loc='upper left',
2049
+ edgecolor='k',
2050
+ facecolor='r',
2051
+ title='title',
2052
+ fancybox=1,
2053
+ shadow=1,
2054
+ ncols=4,
2055
+ bbox_to_anchor=[-0.5,0.7],
2056
+ alignment='left')
2047
2057
  )
2048
2058
  """
2049
2059
  fig = plt.gcf()
@@ -2107,6 +2117,10 @@ def figsets(*args,**kwargs):
2107
2117
  "tic" not in key.lower() and "tk" not in key.lower()
2108
2118
  ):
2109
2119
  ax.set_zlabel(value, fontname=fontname)
2120
+ if key=='xlabel' and isinstance(value,dict):
2121
+ ax.set_xlabel(**value)
2122
+ if key=='ylabel' and isinstance(value,dict):
2123
+ ax.set_ylabel(**value)
2110
2124
  # tick location
2111
2125
  if "tic" in key.lower() or "tk" in key.lower():
2112
2126
  if ("loc" in key.lower()) or ("po" in key.lower()):
@@ -2278,7 +2292,12 @@ def figsets(*args,**kwargs):
2278
2292
  if "c" in key.lower() and ("sp" in key.lower() or "ax" in key.lower()):# spine color
2279
2293
  for loc, spi in ax.spines.items():
2280
2294
  spi.set_color(value)
2281
-
2295
+ if 'leg' in key.lower(): # legend
2296
+ legend_kws = kwargs.get('legend', None)
2297
+ if legend_kws:
2298
+ # https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.legend.html
2299
+ ax.legend(**legend_kws)
2300
+
2282
2301
  for arg in args:
2283
2302
  if isinstance(arg,matplotlib.axes._axes.Axes):
2284
2303
  ax=arg
py2ls/plot.py CHANGED
@@ -333,8 +333,43 @@ def adjust_spines(ax=None, spines=['left', 'bottom'],distance=2):
333
333
  else:
334
334
  # no xaxis ticks
335
335
  ax.xaxis.set_ticks([])
336
- # And then plot the data:
337
- def figsets(*args):
336
+
337
+
338
+ def figsets(*args,**kwargs):
339
+ """
340
+ usage:
341
+ figsets(ax=axs[1],
342
+ ylim=[0, 10],
343
+ spine=2,
344
+ xticklabel=['wake','sleep'],
345
+ yticksdddd=np.arange(0,316,60),
346
+ labels_loc=['right','top'],
347
+ ticks=dict(
348
+ ax='x',
349
+ which='minor',
350
+ direction='out',
351
+ width=2,
352
+ length=2,
353
+ c_tick='m',
354
+ pad=5,
355
+ label_size=11),
356
+ grid=dict(which='minor',
357
+ ax='x',
358
+ alpha=.4,
359
+ c='b',
360
+ ls='-.',
361
+ lw=0.75,
362
+ ),
363
+ supertitleddddd=f'sleep druations\n(min)',
364
+ c_spine='r',
365
+ minor_ticks='xy',
366
+ style='paper',
367
+ box=['right','bottom'],
368
+ xrot=-45,
369
+ yangle=20,
370
+ font_sz = 2
371
+ )
372
+ """
338
373
  fig = plt.gcf()
339
374
  fontsize = 11
340
375
  fontname = "Arial"
@@ -344,7 +379,7 @@ def figsets(*args):
344
379
  "scatter","ieee","no-latex","std-colors","high-vis","bright","dark_background","science",
345
380
  "high-vis","vibrant","muted","retro","grid","high-contrast","light","cjk-tc-font","cjk-kr-font",
346
381
  ]
347
- def sets_priority(ax,key, value):
382
+ def set_step_1(ax,key, value):
348
383
  if ("fo" in key) and (("size" in key) or ("sz" in key)):
349
384
  fontsize=value
350
385
  plt.rcParams.update({"font.size": value})
@@ -376,13 +411,13 @@ def figsets(*args):
376
411
  if "la" in key.lower():
377
412
  if "loc" in key.lower() or "po" in key.lower():
378
413
  for i in value:
379
- if "l" in i.lower():
380
- ax.yaxis.set_label_position("left")
381
- if "r" in i.lower():
414
+ if "l" in i.lower() and not 'g' in i.lower():
415
+ ax.yaxis.set_label_position("left")
416
+ if "r" in i.lower() and not 'o' in i.lower():
382
417
  ax.yaxis.set_label_position("right")
383
- if "t" in i.lower():
418
+ if "t" in i.lower() and not 'l' in i.lower():
384
419
  ax.xaxis.set_label_position("top")
385
- if "b" in i.lower():
420
+ if "b" in i.lower()and not 'o' in i.lower():
386
421
  ax.xaxis.set_label_position("bottom")
387
422
  if ("x" in key.lower()) and (
388
423
  "tic" not in key.lower() and "tk" not in key.lower()
@@ -448,18 +483,17 @@ def figsets(*args):
448
483
  if "y" in key.lower():
449
484
  ax.tick_params(axis="y", rotation=value)
450
485
 
451
- if "bo" in key in key: # and ("p" in key or "l" in key):
452
- # print("'ticks' style is recommended")
486
+ if "bo" in key in key: # box setting, and ("p" in key or "l" in key):
453
487
  if isinstance(value, (str, list)):
454
488
  locations = []
455
489
  for i in value:
456
- if "l" in i.lower():
490
+ if "l" in i.lower() and not 't' in i.lower():
457
491
  locations.append("left")
458
- if "r" in i.lower():
492
+ if "r" in i.lower()and not 'o' in i.lower(): # right
459
493
  locations.append("right")
460
- if "t" in i.lower():
494
+ if "t" in i.lower() and not 'r' in i.lower(): #top
461
495
  locations.append("top")
462
- if "b" in i.lower():
496
+ if "b" in i.lower() and not 't' in i.lower():
463
497
  locations.append("bottom")
464
498
  if i.lower() in ["a", "both", "all", "al", ":"]:
465
499
  [
@@ -475,7 +509,7 @@ def figsets(*args):
475
509
  spi.set_position(("outward", 0))
476
510
  else:
477
511
  spi.set_color("none") # no spine
478
- if key == "tick" or key == "ticks" or key == "ticks_para":
512
+ if 'tick' in key.lower(): # tick ticks tick_para ={}
479
513
  if isinstance(value, dict):
480
514
  for k, val in value.items():
481
515
  if "wh" in k.lower():
@@ -484,28 +518,28 @@ def figsets(*args):
484
518
  ) # {'major', 'minor', 'both'}, default: 'major'
485
519
  elif "dir" in k.lower():
486
520
  ax.tick_params(direction=val) # {'in', 'out', 'inout'}
487
- elif "len" in k.lower():
521
+ elif "len" in k.lower():# length
488
522
  ax.tick_params(length=val)
489
- elif ("wid" in k.lower()) or ("wd" in k.lower()):
523
+ elif ("wid" in k.lower()) or ("wd" in k.lower()): # width
490
524
  ax.tick_params(width=val)
491
- elif "ax" in k.lower():
525
+ elif "ax" in k.lower(): # ax
492
526
  ax.tick_params(axis=val) # {'x', 'y', 'both'}, default: 'both'
493
527
  elif ("c" in k.lower()) and ("ect" not in k.lower()):
494
528
  ax.tick_params(colors=val) # Tick color.
495
- elif "pad" in k.lower():
529
+ elif "pad" in k.lower() or 'space' in k.lower():
496
530
  ax.tick_params(
497
531
  pad=val
498
532
  ) # float, distance in points between tick and label
499
533
  elif (
500
- ("lab" in k.lower())
534
+ ("lab" in k.lower() or 'text' in k.lower())
501
535
  and ("s" in k.lower())
502
536
  and ("z" in k.lower())
503
- ):
537
+ ): # label_size
504
538
  ax.tick_params(
505
539
  labelsize=val
506
540
  ) # float, distance in points between tick and label
507
541
 
508
- if "mi" in key.lower() and "tic" in key.lower():
542
+ if "mi" in key.lower() and "tic" in key.lower():# minor_ticks
509
543
  if "x" in value.lower() or "x" in key.lower():
510
544
  ax.xaxis.set_minor_locator(tck.AutoMinorLocator()) # ax.minorticks_on()
511
545
  if "y" in value.lower() or "y" in key.lower():
@@ -516,16 +550,16 @@ def figsets(*args):
516
550
  ax.minorticks_on()
517
551
  if key == "colormap" or key == "cmap":
518
552
  plt.set_cmap(value)
519
- def sets_small(ax,key, value):
553
+ def set_step_2(ax,key, value):
520
554
  if key == "figsize":
521
555
  pass
522
- if key == "xlim":
556
+ if "xlim" in key.lower():
523
557
  ax.set_xlim(value)
524
- if key == "ylim":
558
+ if "ylim" in key.lower():
525
559
  ax.set_ylim(value)
526
- if key == "zlim":
560
+ if "zlim" in key.lower():
527
561
  ax.set_zlim(value)
528
- if "sc" in key.lower():
562
+ if "sc" in key.lower(): #scale
529
563
  if "x" in key.lower():
530
564
  ax.set_xscale(value)
531
565
  if "y" in key.lower():
@@ -535,19 +569,19 @@ def figsets(*args):
535
569
  if key == "grid":
536
570
  if isinstance(value, dict):
537
571
  for k, val in value.items():
538
- if "wh" in k.lower():
572
+ if "wh" in k.lower(): # which
539
573
  ax.grid(
540
574
  which=val
541
575
  ) # {'major', 'minor', 'both'}, default: 'major'
542
- elif "ax" in k.lower():
576
+ elif "ax" in k.lower(): # ax
543
577
  ax.grid(axis=val) # {'x', 'y', 'both'}, default: 'both'
544
- elif ("c" in k.lower()) and ("ect" not in k.lower()):
578
+ elif ("c" in k.lower()) and ("ect" not in k.lower()): # c: color
545
579
  ax.grid(color=val) # Tick color.
546
- elif "l" in k.lower() and ("s" in k.lower()):
580
+ elif "l" in k.lower() and ("s" in k.lower()):# ls:line stype
547
581
  ax.grid(linestyle=val)
548
- elif "l" in k.lower() and ("w" in k.lower()):
582
+ elif "l" in k.lower() and ("w" in k.lower()): # lw: line width
549
583
  ax.grid(linewidth=val)
550
- elif "al" in k.lower():
584
+ elif "al" in k.lower():# alpha:
551
585
  ax.grid(alpha=val)
552
586
  else:
553
587
  if value == "on" or value is True:
@@ -565,23 +599,26 @@ def figsets(*args):
565
599
  adjust_spines(ax) # dafault distance=2
566
600
  if isinstance(value, (float, int)):
567
601
  adjust_spines(ax=ax, distance=value)
568
- if "c" in key.lower() and ("sp" in key.lower() or "ax" in key.lower()):
602
+ if "c" in key.lower() and ("sp" in key.lower() or "ax" in key.lower()):# spine color
569
603
  for loc, spi in ax.spines.items():
570
604
  spi.set_color(value)
571
-
605
+
572
606
  for arg in args:
573
607
  if isinstance(arg,matplotlib.axes._axes.Axes):
574
608
  ax=arg
575
609
  args=args[1:]
576
- if 'ax' not in locals():
610
+ ax = kwargs.get('ax',plt.gca())
611
+ if 'ax' not in locals() or ax is None:
577
612
  ax=plt.gca()
578
-
613
+ for key, value in kwargs.items():
614
+ set_step_1(ax, key, value)
615
+ set_step_2(ax, key, value)
579
616
  for arg in args:
580
617
  if isinstance(arg, dict):
581
618
  for k, val in arg.items():
582
- sets_priority(ax,k, val)
619
+ set_step_1(ax,k, val)
583
620
  for k, val in arg.items():
584
- sets_small(ax,k, val)
621
+ set_step_2(ax,k, val)
585
622
  else:
586
623
  Nargin = len(args) // 2
587
624
  ax.labelFontSizeMultiplier = 1
@@ -591,11 +628,11 @@ def figsets(*args):
591
628
  for ip in range(Nargin):
592
629
  key = args[ip * 2].lower()
593
630
  value = args[ip * 2 + 1]
594
- sets_priority(ax,key, value)
631
+ set_step_1(ax,key, value)
595
632
  for ip in range(Nargin):
596
633
  key = args[ip * 2].lower()
597
634
  value = args[ip * 2 + 1]
598
- sets_small(ax,key, value)
635
+ set_step_2(ax,key, value)
599
636
  colors = [
600
637
  "#474747",
601
638
  "#FF2C00",
@@ -611,55 +648,5 @@ def figsets(*args):
611
648
  plt.gcf().align_labels()
612
649
 
613
650
 
614
- def figsave(*args,dpi=300):
615
- dir_save = None
616
- fname = None
617
- for arg in args:
618
- if isinstance(arg, str):
619
- if '/' in arg or '\\' in arg:
620
- dir_save = arg
621
- elif '/' not in arg and '\\' not in arg:
622
- fname = arg
623
- # Backup original values
624
- if '/' in dir_save:
625
- if dir_save[-1] != '/':
626
- dir_save = dir_save + '/'
627
- elif '\\' in dir_save:
628
- if dir_save[-1] != '\\':
629
- dir_save = dir_save + '\\'
630
- else:
631
- raise ValueError('Check the Path of dir_save Directory')
632
- ftype = fname.split('.')[-1]
633
- if len(fname.split('.')) == 1:
634
- ftype = 'nofmt'
635
- fname = dir_save + fname + '.' + ftype
636
- else:
637
- fname = dir_save + fname
638
- # Save figure based on file type
639
- if ftype.lower() == 'eps':
640
- plt.savefig(fname, format='eps', bbox_inches='tight')
641
- plt.savefig(fname.replace('.eps', '.pdf'),
642
- format='pdf', bbox_inches='tight',dpi=dpi)
643
- elif ftype.lower() == 'nofmt': # default: both "tif" and "pdf"
644
- fname_corr=fname.replace('nofmt','pdf')
645
- plt.savefig(fname_corr, format='pdf', bbox_inches='tight',dpi=dpi)
646
- fname=fname.replace('nofmt','tif')
647
- plt.savefig(fname, format='tiff', dpi=dpi, bbox_inches='tight')
648
- print(f"default saving filetype: both 'tif' and 'pdf")
649
- elif ftype.lower() == 'pdf':
650
- plt.savefig(fname, format='pdf', bbox_inches='tight',dpi=dpi)
651
- elif ftype.lower() in ['jpg', 'jpeg']:
652
- plt.savefig(fname, format='jpeg', dpi=dpi, bbox_inches='tight')
653
- elif ftype.lower() == 'png':
654
- plt.savefig(fname, format='png', dpi=dpi,
655
- bbox_inches='tight', transparent=True)
656
- elif ftype.lower() in ['tiff', 'tif']:
657
- plt.savefig(fname, format='tiff', dpi=dpi, bbox_inches='tight')
658
- elif ftype.lower() == 'emf':
659
- plt.savefig(fname, format='emf', dpi=dpi, bbox_inches='tight')
660
- elif ftype.lower() == 'fig':
661
- plt.savefig(fname, format='pdf', bbox_inches='tight',dpi=dpi)
662
- print(f'\nSaved @: dpi={dpi}\n{fname}')
663
-
664
651
  def get_cmap():
665
652
  return plt.colormaps()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: py2ls
3
- Version: 0.1.6.0
3
+ Version: 0.1.6.1
4
4
  Summary: py(thon)2(too)ls
5
5
  Author: Jianfeng
6
6
  Author-email: Jianfeng.Liu0413@gmail.com
@@ -1,4 +1,4 @@
1
- py2ls/.DS_Store,sha256=jsc3BMbeCYhUpyXqdRFfTdhu4W-R3wYJ1vXblV_RcvU,6148
1
+ py2ls/.DS_Store,sha256=l7m93mLt2ckidOORlgzbfdGcDJ5emCexs-GHEiKbEaQ,6148
2
2
  py2ls/.git/COMMIT_EDITMSG,sha256=EBFQ6F6FLLKqdBpaLROBL68CNyHmTvOC--uM_TlZ6KI,11
3
3
  py2ls/.git/FETCH_HEAD,sha256=ZYJf1HGynl3E4z5mK-iNYPEV63GUwDCoI31sbgjlgL0,100
4
4
  py2ls/.git/HEAD,sha256=KNJb-Cr0wOK3L1CVmyvrhZ4-YLljCl6MYD2tTdsrboA,21
@@ -21,7 +21,7 @@ py2ls/.git/index,sha256=XDvwp0KaZw_2pZgn1OPTmqBe78Abnq6O-xcw_aZuOB8,1855
21
21
  py2ls/.git/info/exclude,sha256=ZnH-g7egfIky7okWTR8nk7IxgFjri5jcXAbuClo7DsE,240
22
22
  py2ls/.git/logs/HEAD,sha256=0Al8yWeB2OiUKgtEdzKf8Kx9p8_1WI1Mx_X2DXQCbU0,3227
23
23
  py2ls/.git/logs/refs/heads/main,sha256=0Al8yWeB2OiUKgtEdzKf8Kx9p8_1WI1Mx_X2DXQCbU0,3227
24
- py2ls/.git/logs/refs/remotes/origin/HEAD,sha256=sQ4JNeAIjzuiiff10hVIzpu7z8LWIChvpGBPjTmcWsQ,20902
24
+ py2ls/.git/logs/refs/remotes/origin/HEAD,sha256=Ofz2UGxUefJXTI9_-ai1ypszAHLZDEmoOEgG0MK7dRk,23038
25
25
  py2ls/.git/logs/refs/remotes/origin/main,sha256=oKNSm-3X1G53hmgJH1DL6RHf4sTppI3Xe-ljAB2ETJA,2888
26
26
  py2ls/.git/objects/01/d5bd8065e6860c0bd23ff9fa57161806a099e1,sha256=hEQ8nqJnGsfFsuV5wc4cZas58rehXvT0v5ANx1zmMAY,584
27
27
  py2ls/.git/objects/09/08da26de58c114225ad81f484b80bf5d351b34,sha256=NOyYvrJxATpK3aDdP1_stwkqOQRDwJn7DSy6isyKImE,925
@@ -133,14 +133,14 @@ py2ls/data/lang_code_iso639.json,sha256=qZiU7H2RLJjDMXK22C-jhwzLJCI5vKmampjB1ys4
133
133
  py2ls/db2ls.py,sha256=MMfFX47aIPIyu7fU9aPvX9lbPRPYOpJ_VXwlnWk-8qo,13615
134
134
  py2ls/doc.py,sha256=xN3g1OWfoaGUhikbJ0NqbN5eKy1VZVvWwRlhHMgyVEc,4243
135
135
  py2ls/freqanalysis.py,sha256=F4218VSPbgL5tnngh6xNCYuNnfR-F_QjECUUxrPYZss,32594
136
- py2ls/ips.py,sha256=wbKjFnF3FwLkV-aEX53R-TwAf9NNOatB-wA79MT0V68,99593
136
+ py2ls/ips.py,sha256=AaB2GGZmEG_jY3zqZ1qIIdUYSmwWB5pxrISm9HdcCTE,100423
137
137
  py2ls/netfinder.py,sha256=ZsLWGYMeRuGvxj2nqE0Z8ANoaVl18Necfw0HQfh2q7I,45548
138
- py2ls/plot.py,sha256=Yu7aGCH8WTTUpcXOO6pJjjKntPT9VQ-kckx02fJWxdA,25563
138
+ py2ls/plot.py,sha256=jEPy4G-8H9H4kV2bPUpHE2kdS5E0QHu8ruWwEPCVxOU,24876
139
139
  py2ls/setuptools-70.1.0-py3-none-any.whl,sha256=2bi3cUVal8ip86s0SOvgspteEF8SKLukECi-EWmFomc,882588
140
140
  py2ls/sleep_events_detectors.py,sha256=36MCuRrpurn0Uvzpo3p3b3_JlVsRNHSWCXbJxCGM3mg,51546
141
141
  py2ls/stats.py,sha256=Wd9yCKQ_61QD29WMEgMuEcreFxF91NmlPW65iWT2B5w,39041
142
142
  py2ls/translator.py,sha256=6S7MmTZmjj8NljVmj0W5uEauu4ePxso3AMf2LvGVRQA,30516
143
143
  py2ls/wb_detector.py,sha256=7y6TmBUj9exCZeIgBAJ_9hwuhkDh1x_-yg4dvNY1_GQ,6284
144
- py2ls-0.1.6.0.dist-info/METADATA,sha256=Kj2bqmZmUw-wBFtBjXd_zkvwe8KSobjKB_0jJXzFZxo,17943
145
- py2ls-0.1.6.0.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
146
- py2ls-0.1.6.0.dist-info/RECORD,,
144
+ py2ls-0.1.6.1.dist-info/METADATA,sha256=q3UMQWGGRezjD_20oGOajmiKe5t1qzePfICwPaGe1rQ,17943
145
+ py2ls-0.1.6.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
146
+ py2ls-0.1.6.1.dist-info/RECORD,,