pypipr 1.0.114__py3-none-any.whl → 1.0.116__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.
pypipr/APIMixinView.py CHANGED
@@ -4,11 +4,19 @@ from django.http.response import HttpResponse
4
4
  class APIMixinView:
5
5
  """
6
6
  APIView adalah class view untuk membuat Website API
7
- Cara kerjanya adalah dengan menggunakan variabel GET untuk menerima data.
7
+
8
+ Cara kerjanya adalah dengan menggunakan variabel GET
9
+ untuk menerima data.
10
+ Cara ini dipilih untuk menghindari CORS protection.
11
+
12
+ Key dan value dari parameter get akan disimpan
13
+ dalam variabel dictionary APIDict yg bisa langsung
14
+ diakses.
8
15
 
9
16
  Class ini tidak bisa digunakan sendiri.
10
- Class ini harus menjadi mixin Class View karena perlu trigger untuk
11
- memanggil method get().
17
+ Class ini harus menjadi mixin Class View karena
18
+ perlu trigger untuk memanggil method get().
19
+
12
20
 
13
21
  ```py
14
22
  class ExampleAPIView(APIMixinView, View):
pypipr/__terminal__.py CHANGED
@@ -1,30 +1,32 @@
1
- import pypipr
2
-
1
+ from pypipr import *
3
2
 
4
3
  def main():
5
- m = pypipr.ivars(pypipr)
6
- m = m["module"] | m["variable"] | m["class"] | m["function"]
4
+ ppp = __import__("pypipr")
5
+ m = ivars(ppp)
6
+ # m = m["module"] | m["variable"] | m["class"] | m["function"]
7
+ m = m["variable"] | m["function"]
7
8
  m = [x for x in m]
8
- a = pypipr.iargv(1)
9
+
10
+ a = iargv(1)
9
11
  p = "Masukan Nomor Urut atau Nama Fungsi : "
10
- m = pypipr.choices(daftar=m, contains=a, prompt=p)
12
+ m = choices(daftar=m, contains=a, prompt=p)
11
13
 
12
- f = getattr(pypipr, m)
14
+ f = getattr(ppp, m)
13
15
 
14
- if a == m:
15
- pypipr.print_colorize(m)
16
+ if a != m:
17
+ print_colorize(m)
16
18
  print(f.__doc__)
17
19
 
18
- if pypipr.inspect.isclass(f):
19
- pypipr.print_log("Class tidak dapat dijalankan.")
20
- elif pypipr.inspect.ismodule(f):
21
- pypipr.print_log("Module tidak dapat dijalankan.")
22
- elif pypipr.inspect.isfunction(f):
23
- s = pypipr.inspect.signature(f)
20
+ if inspect.isclass(f):
21
+ print_log("Class tidak dapat dijalankan.")
22
+ elif inspect.ismodule(f):
23
+ print_log("Module tidak dapat dijalankan.")
24
+ elif inspect.isfunction(f):
25
+ s = inspect.signature(f)
24
26
 
25
27
  if not a:
26
28
  print(m, end="")
27
- pypipr.print_colorize(s)
29
+ print_colorize(s)
28
30
 
29
31
  k = {}
30
32
  for i, v in s.parameters.items():
@@ -34,9 +36,9 @@ def main():
34
36
  try:
35
37
  k[i] = eval(o)
36
38
  except Exception:
37
- pypipr.print_colorize(
39
+ print_colorize(
38
40
  "Input harus dalam syntax python.",
39
- color=pypipr.colorama.Fore.RED,
41
+ color=colorama.Fore.RED,
40
42
  )
41
43
 
42
44
  f = f(**k)
@@ -44,7 +46,7 @@ def main():
44
46
  # variable
45
47
  pass
46
48
 
47
- pypipr.iprint(f)
49
+ iprint(f)
48
50
 
49
51
 
50
52
  if __name__ == "__main__":
pypipr/chr_to_int.py CHANGED
@@ -1,4 +1,4 @@
1
- def chr_to_int(s, start=1, numbers="abcdefghijklmnopqrstuvwxyz"):
1
+ def chr_to_int(s, start=0, numbers="abcdefghijklmnopqrstuvwxyz"):
2
2
  """
3
3
  Fungsi ini berguna untuk mengubah urutan huruf menjadi angka.
4
4
 
pypipr/filter_empty.py CHANGED
@@ -9,6 +9,7 @@ def filter_empty(iterable, zero_is_empty=True, str_strip=True):
9
9
  ```python
10
10
  var = [1, None, False, 0, "0", True, {}, ['eee']]
11
11
  print(filter_empty(var))
12
+ iprint(filter_empty(var))
12
13
  ```
13
14
  """
14
15
  for i in iterable:
pypipr/idumps_html.py CHANGED
@@ -4,7 +4,8 @@ import lxml
4
4
  def idumps_html(data, indent=None):
5
5
  """
6
6
  Serialisasi python variabel menjadi HTML.
7
- ```
7
+
8
+ ```html
8
9
  List -> <ul>...</ul>
9
10
  Dict -> <table>...</table>
10
11
  ```
pypipr/ienumerate.py CHANGED
@@ -1,5 +1,15 @@
1
1
  from .int_to_int import int_to_int
2
2
 
3
3
  def ienumerate(iterator, start=0, key=int_to_int):
4
+ """
5
+ meningkatkan fungsi enumerate() pada python
6
+ untuk key menggunakan huruf dan basis angka lainnya.
7
+
8
+ ```python
9
+ it = ["ini", "contoh", "enumerator"]
10
+ print(ienumerate(i))
11
+ iprint(ienumerate(it, key=int_to_chr))
12
+ ```
13
+ """
4
14
  for i, v in enumerate(iterator, start):
5
15
  yield (key(i), v)
pypipr/iloads_html.py CHANGED
@@ -8,10 +8,12 @@ def iloads_html(html):
8
8
  Mengambil data yang berupa list `<ul>`, dan table `<table>` dari html
9
9
  dan menjadikannya data python berupa list.
10
10
  setiap data yang ditemukan akan dibungkus dengan tuple sebagai separator.
11
+
11
12
  ```
12
13
  list (<ul>) -> list -> list satu dimensi
13
14
  table (<table>) -> list[list] -> list satu dimensi didalam list
14
15
  ```
16
+
15
17
  apabila data berupa ul maka dapat dicek type(data) -> html_ul
16
18
  apabila data berupa ol maka dapat dicek type(data) -> html_ol
17
19
  apabila data berupa dl maka dapat dicek type(data) -> html_dl
pypipr/irange.py CHANGED
@@ -58,11 +58,16 @@ def irange(start, stop=None, step=None, index=0, numbers=None):
58
58
  Meningkatkan fungsi range() dari python untuk pengulangan menggunakan huruf
59
59
 
60
60
  ```python
61
- print(irange('a', 'c'))
62
- print(irange('z', 'a', 10))
63
- print(list(irange('a', 'z', 10)))
64
- print(list(irange(1, '7')))
65
- print(list(irange(10, 5)))
61
+ print(irange(10))
62
+ print(irange(3, 15))
63
+ iprint(irange(13, 5))
64
+ iprint(irange(2, 10, 3))
65
+ iprint(irange(2, '10', 3))
66
+ iprint(irange('10'))
67
+ iprint(irange('10', '100', 7))
68
+ iprint(irange("h"))
69
+ iprint(irange("A", "D"))
70
+ iprint(irange("z", "a", 4))
66
71
  ```
67
72
  """
68
73
  start, stop, step = fix_args_position(start, stop, step)
pypipr/ivars.py CHANGED
@@ -25,20 +25,23 @@ def ivars(obj, skip_underscore=True):
25
25
  if y(v):
26
26
  z = x
27
27
  break
28
-
29
- if z is None:
28
+ else:
30
29
  z = "variable"
30
+ # if z is None:
31
+ # z = "variable"
32
+ # z = z or "variable"
31
33
 
32
34
  if i.startswith("__") or i.endswith("__"):
33
35
  if skip_underscore:
34
36
  continue
35
37
  z = f"__{z}__"
36
38
 
37
- try:
38
- r[z][i] = v
39
- except Exception:
40
- r[z] = {}
41
- r[z][i] = v
39
+ r.setdefault(z, {})[i] = v
40
+ # try:
41
+ # r[z][i] = v
42
+ # except Exception:
43
+ # r[z] = {}
44
+ # r[z][i] = v
42
45
 
43
46
  return r
44
47
 
pypipr/restart.py CHANGED
@@ -3,6 +3,15 @@ import sys
3
3
 
4
4
 
5
5
  def restart(*argv):
6
+ """
7
+ Mengulang program dari awal seperti memulai awal.
8
+
9
+ Bisa ditambahkan dengan argumen tambahan
10
+
11
+ ```py
12
+ restart("--stdio")
13
+ ```
14
+ """
6
15
  e = sys.executable
7
16
  a = argv or sys.argv
8
17
  os.execl(e, e, *a)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.114
3
+ Version: 1.0.116
4
4
  Summary: The Python Package Index Project
5
5
  Author: ufiapjj
6
6
  Author-email: ufiapjj@gmail.com
@@ -163,7 +163,7 @@ file.py
163
163
 
164
164
  ## chr_to_int
165
165
 
166
- `chr_to_int(s, start=1, numbers='abcdefghijklmnopqrstuvwxyz')`
166
+ `chr_to_int(s, start=0, numbers='abcdefghijklmnopqrstuvwxyz')`
167
167
 
168
168
  Fungsi ini berguna untuk mengubah urutan huruf menjadi angka.
169
169
 
@@ -175,9 +175,9 @@ print(chr_to_int('abc', numbers="abc")) # Output: 18
175
175
 
176
176
  Output:
177
177
  ```py
178
+ 25
178
179
  26
179
- 27
180
- 18
180
+ 17
181
181
  ```
182
182
 
183
183
  ## int_to_chr
@@ -236,20 +236,30 @@ kmd
236
236
  Meningkatkan fungsi range() dari python untuk pengulangan menggunakan huruf
237
237
 
238
238
  ```python
239
- print(irange('a', 'c'))
240
- print(irange('z', 'a', 10))
241
- print(list(irange('a', 'z', 10)))
242
- print(list(irange(1, '7')))
243
- print(list(irange(10, 5)))
239
+ print(irange(10))
240
+ print(irange(3, 15))
241
+ iprint(irange(13, 5))
242
+ iprint(irange(2, 10, 3))
243
+ iprint(irange(2, '10', 3))
244
+ iprint(irange('10'))
245
+ iprint(irange('10', '100', 7))
246
+ iprint(irange("h"))
247
+ iprint(irange("A", "D"))
248
+ iprint(irange("z", "a", 4))
244
249
  ```
245
250
 
246
251
  Output:
247
252
  ```py
248
- <generator object chr_range at 0x7a71d44e10>
249
- <generator object chr_range at 0x7a71d44e10>
250
- ['a', 'k', 'u']
251
- [1, 2, 3, 4, 5, 6]
252
- [10, 9, 8, 7, 6]
253
+ <generator object int_range at 0x7c60520540>
254
+ <generator object int_range at 0x7c60520540>
255
+ [13, 12, 11, 10, 9, 8, 7, 6]
256
+ [2, 5, 8]
257
+ [2, 5, 8]
258
+ [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
259
+ [10, 17, 24, 31, 38, 45, 52, 59, 66, 73, 80, 87, 94]
260
+ ['a', 'b', 'c', 'd', 'e', 'f', 'g']
261
+ ['A', 'B', 'C']
262
+ ['z', 'v', 'r', 'n', 'j', 'f', 'b']
253
263
  ```
254
264
 
255
265
  ## batchmaker
@@ -273,7 +283,7 @@ print(list(batchmaker(s)))
273
283
 
274
284
  Output:
275
285
  ```py
276
- <generator object batchmaker at 0x7a71d743a0>
286
+ <generator object batchmaker at 0x7c605143a0>
277
287
  ['Urutan 1 dan 10 dan j dan Z saja.', 'Urutan 1 dan 10 dan j dan K saja.', 'Urutan 4 dan 10 dan j dan Z saja.', 'Urutan 4 dan 10 dan j dan K saja.']
278
288
  ```
279
289
 
@@ -327,7 +337,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
327
337
 
328
338
  Output:
329
339
  ```py
330
- <generator object batch_calculate at 0x7a71cf7010>
340
+ <generator object batch_calculate at 0x7c6049b010>
331
341
  [('1 m ** 1', <Quantity(1, 'meter')>), ('1 m ** 2', <Quantity(1, 'meter ** 2')>), ('2 m ** 1', <Quantity(2, 'meter')>), ('2 m ** 2', <Quantity(2, 'meter ** 2')>), ('3 m ** 1', <Quantity(3, 'meter')>), ('3 m ** 2', <Quantity(3, 'meter ** 2')>), ('4 m ** 1', <Quantity(4, 'meter')>), ('4 m ** 2', <Quantity(4, 'meter ** 2')>), ('5 m ** 1', <Quantity(5, 'meter')>), ('5 m ** 2', <Quantity(5, 'meter ** 2')>), ('6 m ** 1', <Quantity(6, 'meter')>), ('6 m ** 2', <Quantity(6, 'meter ** 2')>), ('7 m ** 1', <Quantity(7, 'meter')>), ('7 m ** 2', <Quantity(7, 'meter ** 2')>), ('8 m ** 1', <Quantity(8, 'meter')>), ('8 m ** 2', <Quantity(8, 'meter ** 2')>), ('9 m ** 1', <Quantity(9, 'meter')>), ('9 m ** 2', <Quantity(9, 'meter ** 2')>)]
332
342
  ```
333
343
 
@@ -439,7 +449,7 @@ print(list(chunk_array(arr, 5)))
439
449
 
440
450
  Output:
441
451
  ```py
442
- <generator object chunk_array at 0x7a71d84340>
452
+ <generator object chunk_array at 0x7c60520540>
443
453
  [[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
444
454
  ```
445
455
 
@@ -490,9 +500,9 @@ print(datetime_now("Etc/GMT+7"))
490
500
 
491
501
  Output:
492
502
  ```py
493
- 2024-04-30 21:17:14.498373+07:00
494
- 2024-04-30 14:17:14.499963+00:00
495
- 2024-04-30 07:17:14.504004-07:00
503
+ 2024-05-01 07:44:58.980167+07:00
504
+ 2024-05-01 00:44:58.982218+00:00
505
+ 2024-04-30 17:44:58.988830-07:00
496
506
  ```
497
507
 
498
508
  ## dict_first
@@ -593,11 +603,13 @@ Mengembalikan iterabel yang hanya memiliki nilai
593
603
  ```python
594
604
  var = [1, None, False, 0, "0", True, {}, ['eee']]
595
605
  print(filter_empty(var))
606
+ iprint(filter_empty(var))
596
607
  ```
597
608
 
598
609
  Output:
599
610
  ```py
600
- <generator object filter_empty at 0x7a71cf7010>
611
+ <generator object filter_empty at 0x7c6049b010>
612
+ [1, '0', True, {}, ['eee']]
601
613
  ```
602
614
 
603
615
  ## get_class_method
@@ -626,8 +638,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
626
638
 
627
639
  Output:
628
640
  ```py
629
- <generator object get_class_method at 0x7a71cf72e0>
630
- [<function ExampleGetClassMethod.a at 0x7a71d913a0>, <function ExampleGetClassMethod.b at 0x7a71d911c0>, <function ExampleGetClassMethod.c at 0x7a71d914e0>, <function ExampleGetClassMethod.d at 0x7a71d91580>]
641
+ <generator object get_class_method at 0x7c6049b2e0>
642
+ [<function ExampleGetClassMethod.a at 0x7c605391c0>, <function ExampleGetClassMethod.b at 0x7c605393a0>, <function ExampleGetClassMethod.c at 0x7c605394e0>, <function ExampleGetClassMethod.d at 0x7c60539580>]
631
643
  ```
632
644
 
633
645
  ## get_filesize
@@ -698,7 +710,8 @@ Output:
698
710
  `idumps_html(data, indent=None)`
699
711
 
700
712
  Serialisasi python variabel menjadi HTML.
701
- ```
713
+
714
+ ```html
702
715
  List -> <ul>...</ul>
703
716
  Dict -> <table>...</table>
704
717
  ```
@@ -880,7 +893,16 @@ Output:
880
893
 
881
894
  ## ienumerate
882
895
 
883
- `ienumerate(iterator, start=0, key=<function int_to_int at 0x7a73db1e40>)`
896
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x7c679d1e40>)`
897
+
898
+ meningkatkan fungsi enumerate() pada python
899
+ untuk key menggunakan huruf dan basis angka lainnya.
900
+
901
+ ```python
902
+ it = ["ini", "contoh", "enumerator"]
903
+ print(ienumerate(i))
904
+ iprint(ienumerate(it, key=int_to_chr))
905
+ ```
884
906
 
885
907
  ## ienv
886
908
 
@@ -945,7 +967,7 @@ print(ijoin(10, ' '))
945
967
 
946
968
  Output:
947
969
  ```py
948
- asd, dfs, weq, qweqw
970
+ weq, qweqw, asd, dfs
949
971
  ,ini,path,seperti,url,
950
972
  ini,path,seperti,url
951
973
  <li>satu</li>
@@ -970,10 +992,12 @@ ini,path,seperti,url
970
992
  Mengambil data yang berupa list `<ul>`, dan table `<table>` dari html
971
993
  dan menjadikannya data python berupa list.
972
994
  setiap data yang ditemukan akan dibungkus dengan tuple sebagai separator.
995
+
973
996
  ```
974
997
  list (<ul>) -> list -> list satu dimensi
975
998
  table (<table>) -> list[list] -> list satu dimensi didalam list
976
999
  ```
1000
+
977
1001
  apabila data berupa ul maka dapat dicek type(data) -> html_ul
978
1002
  apabila data berupa ol maka dapat dicek type(data) -> html_ol
979
1003
  apabila data berupa dl maka dapat dicek type(data) -> html_dl
@@ -988,10 +1012,10 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
988
1012
  Output:
989
1013
  ```py
990
1014
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
991
- [['Harga Emas Hari Ini - Selasa, 30 April 2024'],
992
- ['Spot Emas USD↓2.302,01 (-42,53) / oz',
993
- 'Kurs IDR↑16.249,00 (+27,00) / USD',
994
- 'Emas IDR↓1.202.610 (-20.183) / gr'],
1015
+ [['Harga Emas Hari Ini - Rabu, 01 Mei 2024'],
1016
+ ['Spot Emas USD↓2.288,73 (-7,29) / oz',
1017
+ 'Kurs IDR16.249,00 / USD',
1018
+ 'Emas IDR↓1.195.673 (-3.808) / gr'],
995
1019
  ['LM Antam (Jual)1.325.000 / gr', 'LM Antam (Beli)1.221.000 / gr']],
996
1020
  [['Harga Emas Hari Ini'],
997
1021
  ['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
@@ -1029,10 +1053,10 @@ Output:
1029
1053
  'Update harga LM Pegadaian :31 Agustus 2023']],
1030
1054
  [['Spot Harga Emas Hari Ini (Market Open)'],
1031
1055
  ['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
1032
- ['Ounce\xa0(oz)', '2.302,01 (-42,53)', '16.249,00 (+27,00)', '37.405.360'],
1033
- ['Gram\xa0(gr)', '74,01', '16.249,00', '1.202.610 (-20.183)'],
1034
- ['Kilogram\xa0(kg)', '74.011,34', '16.249,00', '1.202.610.267'],
1035
- ['Update harga emas :30 April 2024, pukul 21:17Update kurs :30 April 2024, '
1056
+ ['Ounce\xa0(oz)', '2.288,73 (-7,29)', '16.249,00', '37.189.574'],
1057
+ ['Gram\xa0(gr)', '73,58', '16.249,00', '1.195.673 (-3.808)'],
1058
+ ['Kilogram\xa0(kg)', '73.584,38', '16.249,00', '1.195.672.562'],
1059
+ ['Update harga emas :01 Mei 2024, pukul 07:44Update kurs :30 April 2024, '
1036
1060
  'pukul 13:10']],
1037
1061
  [['Gram', 'UBS Gold 99.99%'],
1038
1062
  ['Jual', 'Beli'],
@@ -1053,37 +1077,37 @@ Output:
1053
1077
  ['Waktu', 'Emas'],
1054
1078
  ['Unit', 'USD', 'IDR'],
1055
1079
  ['Angka', '+/-', 'Angka', '+/-'],
1056
- ['Hari Ini', 'Kurs', '', '', '16.222', '+27+0,17%'],
1057
- ['oz', '2.344,54', '-42,53-1,81%', '38.033.128', '-627.767-1,65%'],
1058
- ['gr', '75,38', '-1,37-1,81%', '1.222.793', '-20.183-1,65%'],
1059
- ['30 Hari', 'Kurs', '', '', '15.853', '+396+2,50%'],
1060
- ['oz', '2.232,75', '+69,26+3,10%', '35.395.786', '+2.009.575+5,68%'],
1061
- ['gr', '71,78', '+2,23+3,10%', '1.138.001', '+64.609+5,68%'],
1080
+ ['Hari Ini', 'Kurs', '', '', '16.249', '%'],
1081
+ ['oz', '2.296,02', '-7,29-0,32%', '37.308.029', '-118.455-0,32%'],
1082
+ ['gr', '73,82', '-0,23-0,32%', '1.199.481', '-3.808-0,32%'],
1083
+ ['30 Hari', 'Kurs', '', '', '15.873', '+376+2,37%'],
1084
+ ['oz', '2.239,34', '+49,39+2,21%', '35.545.044', '+1.644.530+4,63%'],
1085
+ ['gr', '72,00', '+1,59+2,21%', '1.142.800', '+52.873+4,63%'],
1062
1086
  ['2 Bulan', 'Kurs', '', '', '15.715', '+534+3,40%'],
1063
- ['oz', '2.081,20', '+220,81+10,61%', '32.706.058', '+4.699.302+14,37%'],
1064
- ['gr', '66,91', '+7,10+10,61', '1.051.524', '+151.086+14,37%'],
1065
- ['6 Bulan', 'Kurs', '', '', '15.946', '+303+1,90%'],
1066
- ['oz', '1.981,84', '+320,17+16,16%', '31.602.421', '+5.802.940+18,36%'],
1067
- ['gr', '63,72', '+10,29+16,16%', '1.016.041', '+186.569+18,36%'],
1087
+ ['oz', '2.082,55', '+206,18+9,90%', '32.727.273', '+4.462.301+13,63%'],
1088
+ ['gr', '66,96', '+6,63+9,90', '1.052.206', '+143.466+13,63%'],
1089
+ ['6 Bulan', 'Kurs', '', '', '15.861', '+388+2,45%'],
1090
+ ['oz', '1.990,54', '+298,19+14,98%', '31.571.955', '+5.617.619+17,79%'],
1091
+ ['gr', '64,00', '+9,59+14,98%', '1.015.062', '+180.611+17,79%'],
1068
1092
  ['1 Tahun', 'Kurs', '', '', '15.731', '+518+3,29%'],
1069
- ['oz', '1.823,86', '+478,15+26,22%', '28.691.142', '+8.714.219+30,37%'],
1070
- ['gr', '58,64', '+15,37+26,22%', '922.442', '+280.169+30,37%'],
1093
+ ['oz', '1.823,86', '+464,87+25,49%', '28.691.142', '+8.498.432+29,62%'],
1094
+ ['gr', '58,64', '+14,95+25,49%', '922.442', '+273.231+29,62%'],
1071
1095
  ['2 Tahun', 'Kurs', '', '', '14.418', '+1.831+12,70%'],
1072
- ['oz', '1.896,95', '+405,06+21,35%', '27.350.225', '+10.055.135+36,76%'],
1073
- ['gr', '60,99', '+13,02+21,35%', '879.330', '+323.280+36,76%'],
1096
+ ['oz', '1.867,23', '+421,50+22,57%', '26.921.722', '+10.267.852+38,14%'],
1097
+ ['gr', '60,03', '+13,55+22,57%', '865.553', '+330.119+38,14%'],
1074
1098
  ['3 Tahun', 'Kurs', '', '', '14.468', '+1.781+12,31%'],
1075
- ['oz', '1.768,91', '+533,10+30,14%', '25.592.590', '+11.812.771+46,16%'],
1076
- ['gr', '56,87', '+17,14+30,14%', '822.821', '+379.789+46,16%'],
1077
- ['5 Tahun', 'Kurs', '', '', '14.245', '+2.004+14,07%'],
1078
- ['oz', '1.270,94', '+1.031,07+81,13%', '18.104.540', '+19.300.820+106,61%'],
1079
- ['gr', '40,86', '+33,15+81,13%', '582.074', '+620.536+106,61%']])
1099
+ ['oz', '1.768,91', '+519,82+29,39%', '25.592.590', '+11.596.984+45,31%'],
1100
+ ['gr', '56,87', '+16,71+29,39%', '822.821', '+372.852+45,31%'],
1101
+ ['5 Tahun', 'Kurs', '', '', '14.282', '+1.967+13,77%'],
1102
+ ['oz', '1.280,82', '+1.007,91+78,69%', '18.292.671', '+18.896.903+103,30%'],
1103
+ ['gr', '41,18', '+32,41+78,69%', '588.123', '+607.550+103,30%']])
1080
1104
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1081
1105
  [[''],
1082
1106
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1083
- ['USD', '74,01↓', '-1,37-1,82%'],
1084
- ['KURS', '16.249,35↑', '+35,85+0,22%'],
1085
- ['IDR', '1.202.636,17↓', '-19.516,57-1,60%'],
1086
- ['Selasa, 30 April 2024 21:17']],
1107
+ ['USD', '73,58↓', '-0,24-0,33%'],
1108
+ ['KURS', '16.264,05↑', '+3,05+0,02%'],
1109
+ ['IDR', '1.196.780,01↓', '-3.586,80-0,30%'],
1110
+ ['Rabu, 01 Mei 2024 07:45']],
1087
1111
  [[''],
1088
1112
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1089
1113
  'Hari Ini',
@@ -1094,19 +1118,19 @@ Output:
1094
1118
  '']],
1095
1119
  [['Pergerakkan Harga Emas 1 Gram'],
1096
1120
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1097
- ['USD', '75,38', '74,01 - 75,38', '74,70'],
1098
- ['KURS', '16.213,50', '16.213,50 - 16.249,35', '16.231,43'],
1099
- ['IDR', '1.222.152,74', '1.202.636,17 - 1.222.152,74', '1.212.394,46'],
1121
+ ['USD', '73,82', '73,58 - 73,82', '73,70'],
1122
+ ['KURS', '16.261,00', '16.261,00 - 16.264,05', '16.262,53'],
1123
+ ['IDR', '1.200.366,81', '1.196.780,01 - 1.200.366,81', '1.198.573,41'],
1100
1124
  [''],
1101
1125
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1102
- ['USD', '66,32', '64,07 - 77,14', '+7,69 (11,60%)'],
1103
- ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+859,25 (5,58%)'],
1104
- ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+181.906,64 (17,82%)'],
1126
+ ['USD', '66,32', '64,07 - 77,14', '+7,26 (10,95%)'],
1127
+ ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+873,95 (5,68%)'],
1128
+ ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+176.050,48 (17,25%)'],
1105
1129
  [''],
1106
1130
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1107
- ['USD', '63,97', '58,43 - 77,14', '+10,04 (15,69%)'],
1108
- ['KURS', '14.673,55', '14.669,40 - 16.307,80', '+1.575,80 (10,74%)'],
1109
- ['IDR', '938.709,73', '912.925,68 - 1.256.829,06', '+263.926,44 (28,12%)']])
1131
+ ['USD', '63,97', '58,43 - 77,14', '+9,61 (15,02%)'],
1132
+ ['KURS', '14.673,55', '14.669,40 - 16.307,80', '+1.590,50 (10,84%)'],
1133
+ ['IDR', '938.709,73', '912.925,68 - 1.256.829,06', '+258.070,28 (27,49%)']])
1110
1134
  ```
1111
1135
 
1112
1136
  ## iloads
@@ -1236,7 +1260,7 @@ Output:
1236
1260
  ```py
1237
1261
  8
1238
1262
  ['mana', 'aja']
1239
- [<Element a at 0x7a71d8e530>, <Element a at 0x7a716d0eb0>, <Element a at 0x7a716d0f50>, <Element a at 0x7a716d0fa0>, <Element a at 0x7a716d0ff0>, <Element a at 0x7a716d1040>, <Element a at 0x7a716d1090>, <Element a at 0x7a716d10e0>, <Element a at 0x7a716d1130>, <Element a at 0x7a716d1180>, <Element a at 0x7a716d11d0>, <Element a at 0x7a716d1220>, <Element a at 0x7a716d1270>, <Element a at 0x7a716d12c0>, <Element a at 0x7a716d1310>, <Element a at 0x7a716d1360>, <Element a at 0x7a716d13b0>, <Element a at 0x7a716d1400>]
1263
+ [<Element a at 0x7c60536d50>, <Element a at 0x7c60571180>, <Element a at 0x7c60571220>, <Element a at 0x7c60571270>, <Element a at 0x7c605712c0>, <Element a at 0x7c60571310>, <Element a at 0x7c60571360>, <Element a at 0x7c605713b0>, <Element a at 0x7c60571400>, <Element a at 0x7c60571450>, <Element a at 0x7c605714a0>, <Element a at 0x7c605714f0>, <Element a at 0x7c60571540>, <Element a at 0x7c60571590>, <Element a at 0x7c605715e0>, <Element a at 0x7c60571630>, <Element a at 0x7c60571680>, <Element a at 0x7c605716d0>]
1240
1264
  False
1241
1265
  ```
1242
1266
 
@@ -1298,7 +1322,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1298
1322
 
1299
1323
  Output:
1300
1324
  ```py
1301
- <generator object iscandir at 0x7a71d84640>
1325
+ <generator object iscandir at 0x7c60520840>
1302
1326
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1303
1327
  ```
1304
1328
 
@@ -1335,73 +1359,73 @@ Output:
1335
1359
  'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1336
1360
  'PintUregQuantity': <class 'pint.Quantity'>,
1337
1361
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
1338
- 'function': {'avg': <function avg at 0x7a7c8b6700>,
1339
- 'get_filemtime': <function get_filemtime at 0x7a73f072e0>,
1340
- 'print_colorize': <function print_colorize at 0x7a73f074c0>,
1341
- 'print_log': <function print_log at 0x7a7419ab60>,
1342
- 'console_run': <function console_run at 0x7a73f07380>,
1343
- 'auto_reload': <function auto_reload at 0x7a740cbec0>,
1344
- 'basename': <function basename at 0x7a73f07240>,
1345
- 'chr_to_int': <function chr_to_int at 0x7a73f07a60>,
1346
- 'int_to_chr': <function int_to_chr at 0x7a73f07b00>,
1347
- 'irange': <function irange at 0x7a73f07d80>,
1348
- 'batchmaker': <function batchmaker at 0x7a73f07740>,
1349
- 'calculate': <function calculate at 0x7a73ef42c0>,
1350
- 'batch_calculate': <function batch_calculate at 0x7a73f07600>,
1351
- 'is_empty': <function is_empty at 0x7a73ef4540>,
1352
- 'exit_if_empty': <function exit_if_empty at 0x7a73ef4400>,
1353
- 'input_char': <function input_char at 0x7a73ef44a0>,
1354
- 'get_by_index': <function get_by_index at 0x7a73ef45e0>,
1355
- 'choices': <function choices at 0x7a73ef47c0>,
1356
- 'chunk_array': <function chunk_array at 0x7a73ef4860>,
1357
- 'create_folder': <function create_folder at 0x7a73ef4900>,
1358
- 'datetime_from_string': <function datetime_from_string at 0x7a73ef49a0>,
1359
- 'datetime_now': <function datetime_now at 0x7a73ef4a40>,
1360
- 'dict_first': <function dict_first at 0x7a73ef4ae0>,
1361
- 'dirname': <function dirname at 0x7a73ef4b80>,
1362
- 'is_iterable': <function is_iterable at 0x7a73ef4d60>,
1363
- 'to_str': <function to_str at 0x7a73ef4e00>,
1364
- 'filter_empty': <function filter_empty at 0x7a73ef4c20>,
1365
- 'get_class_method': <function get_class_method at 0x7a73ef4cc0>,
1366
- 'get_filesize': <function get_filesize at 0x7a73ef4f40>,
1367
- 'github_pull': <function github_pull at 0x7a73ef4fe0>,
1368
- 'github_push': <function github_push at 0x7a73ef51c0>,
1369
- 'github_user': <function github_user at 0x7a73ef5260>,
1370
- 'iargv': <function iargv at 0x7a73ef5080>,
1371
- 'idumps_html': <function idumps_html at 0x7a73ef54e0>,
1372
- 'idumps': <function idumps at 0x7a73ef53a0>,
1373
- 'int_to_int': <function int_to_int at 0x7a73db1e40>,
1374
- 'ienumerate': <function ienumerate at 0x7a73ef59e0>,
1375
- 'ienv': <function ienv at 0x7a73db1d00>,
1376
- 'iexec': <function iexec at 0x7a73db1ee0>,
1377
- 'ijoin': <function ijoin at 0x7a73db2020>,
1378
- 'iloads_html': <function iloads_html at 0x7a73db2200>,
1379
- 'iloads': <function iloads at 0x7a73db1f80>,
1380
- 'int_to_bin': <function int_to_bin at 0x7a73db2160>,
1381
- 'int_to_hex': <function int_to_hex at 0x7a73db22a0>,
1382
- 'int_to_oct': <function int_to_oct at 0x7a73db2340>,
1383
- 'is_valid_url': <function is_valid_url at 0x7a73db2520>,
1384
- 'iopen': <function iopen at 0x7a73df6980>,
1385
- 'iprint': <function iprint at 0x7a73db2480>,
1386
- 'ireplace': <function ireplace at 0x7a73db2840>,
1387
- 'iscandir': <function iscandir at 0x7a71dce0c0>,
1388
- 'isplit': <function isplit at 0x7a71dce160>,
1389
- 'ivars': <function ivars at 0x7a71dce200>,
1390
- 'log': <function log at 0x7a71dce2a0>,
1391
- 'password_generator': <function password_generator at 0x7a71dce340>,
1392
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7a71dce480>,
1393
- 'poetry_publish': <function poetry_publish at 0x7a71dce520>,
1394
- 'poetry_update_version': <function poetry_update_version at 0x7a71dce660>,
1395
- 'print_dir': <function print_dir at 0x7a71dce840>,
1396
- 'print_to_last_line': <function print_to_last_line at 0x7a71dce8e0>,
1397
- 'random_bool': <function random_bool at 0x7a71dce980>,
1398
- 'restart': <function restart at 0x7a71dcea20>,
1399
- 'set_timeout': <function set_timeout at 0x7a71dceac0>,
1400
- 'sets_ordered': <function sets_ordered at 0x7a71dceb60>,
1401
- 'str_cmp': <function str_cmp at 0x7a71dcec00>,
1402
- 'text_colorize': <function text_colorize at 0x7a71dceca0>},
1362
+ 'function': {'avg': <function avg at 0x7c6ccae700>,
1363
+ 'get_filemtime': <function get_filemtime at 0x7c67ad32e0>,
1364
+ 'print_colorize': <function print_colorize at 0x7c67ad34c0>,
1365
+ 'print_log': <function print_log at 0x7c67b8ab60>,
1366
+ 'console_run': <function console_run at 0x7c67ad3380>,
1367
+ 'auto_reload': <function auto_reload at 0x7c67abbec0>,
1368
+ 'basename': <function basename at 0x7c67ad3240>,
1369
+ 'chr_to_int': <function chr_to_int at 0x7c67ad3a60>,
1370
+ 'int_to_chr': <function int_to_chr at 0x7c67ad3b00>,
1371
+ 'irange': <function irange at 0x7c67ad3d80>,
1372
+ 'batchmaker': <function batchmaker at 0x7c67ad3740>,
1373
+ 'calculate': <function calculate at 0x7c678f82c0>,
1374
+ 'batch_calculate': <function batch_calculate at 0x7c67ad3600>,
1375
+ 'is_empty': <function is_empty at 0x7c678f8540>,
1376
+ 'exit_if_empty': <function exit_if_empty at 0x7c678f8400>,
1377
+ 'input_char': <function input_char at 0x7c678f84a0>,
1378
+ 'get_by_index': <function get_by_index at 0x7c678f85e0>,
1379
+ 'choices': <function choices at 0x7c678f87c0>,
1380
+ 'chunk_array': <function chunk_array at 0x7c678f8860>,
1381
+ 'create_folder': <function create_folder at 0x7c678f8900>,
1382
+ 'datetime_from_string': <function datetime_from_string at 0x7c678f89a0>,
1383
+ 'datetime_now': <function datetime_now at 0x7c678f8a40>,
1384
+ 'dict_first': <function dict_first at 0x7c678f8ae0>,
1385
+ 'dirname': <function dirname at 0x7c678f8b80>,
1386
+ 'is_iterable': <function is_iterable at 0x7c678f8d60>,
1387
+ 'to_str': <function to_str at 0x7c678f8e00>,
1388
+ 'filter_empty': <function filter_empty at 0x7c678f8c20>,
1389
+ 'get_class_method': <function get_class_method at 0x7c678f8cc0>,
1390
+ 'get_filesize': <function get_filesize at 0x7c678f8f40>,
1391
+ 'github_pull': <function github_pull at 0x7c678f8fe0>,
1392
+ 'github_push': <function github_push at 0x7c678f91c0>,
1393
+ 'github_user': <function github_user at 0x7c678f9260>,
1394
+ 'iargv': <function iargv at 0x7c678f9080>,
1395
+ 'idumps_html': <function idumps_html at 0x7c678f94e0>,
1396
+ 'idumps': <function idumps at 0x7c678f93a0>,
1397
+ 'int_to_int': <function int_to_int at 0x7c679d1e40>,
1398
+ 'ienumerate': <function ienumerate at 0x7c678f99e0>,
1399
+ 'ienv': <function ienv at 0x7c679d1d00>,
1400
+ 'iexec': <function iexec at 0x7c679d1ee0>,
1401
+ 'ijoin': <function ijoin at 0x7c679d2020>,
1402
+ 'iloads_html': <function iloads_html at 0x7c679d2200>,
1403
+ 'iloads': <function iloads at 0x7c679d1f80>,
1404
+ 'int_to_bin': <function int_to_bin at 0x7c679d2160>,
1405
+ 'int_to_hex': <function int_to_hex at 0x7c679d22a0>,
1406
+ 'int_to_oct': <function int_to_oct at 0x7c679d2340>,
1407
+ 'is_valid_url': <function is_valid_url at 0x7c679d2520>,
1408
+ 'iopen': <function iopen at 0x7c677be980>,
1409
+ 'iprint': <function iprint at 0x7c679d2480>,
1410
+ 'ireplace': <function ireplace at 0x7c679d2840>,
1411
+ 'iscandir': <function iscandir at 0x7c678760c0>,
1412
+ 'isplit': <function isplit at 0x7c67876160>,
1413
+ 'ivars': <function ivars at 0x7c67876200>,
1414
+ 'log': <function log at 0x7c678762a0>,
1415
+ 'password_generator': <function password_generator at 0x7c67876340>,
1416
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7c67876480>,
1417
+ 'poetry_publish': <function poetry_publish at 0x7c67876520>,
1418
+ 'poetry_update_version': <function poetry_update_version at 0x7c67876660>,
1419
+ 'print_dir': <function print_dir at 0x7c67876840>,
1420
+ 'print_to_last_line': <function print_to_last_line at 0x7c678768e0>,
1421
+ 'random_bool': <function random_bool at 0x7c67876980>,
1422
+ 'restart': <function restart at 0x7c67876a20>,
1423
+ 'set_timeout': <function set_timeout at 0x7c67876ac0>,
1424
+ 'sets_ordered': <function sets_ordered at 0x7c67876b60>,
1425
+ 'str_cmp': <function str_cmp at 0x7c67876c00>,
1426
+ 'text_colorize': <function text_colorize at 0x7c67876ca0>},
1403
1427
  'variable': {'LINUX': True,
1404
- 'PintUreg': <pint.registry.UnitRegistry object at 0x7a7c8bc450>,
1428
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x7c69c3c810>,
1405
1429
  'WINDOWS': False},
1406
1430
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
1407
1431
  'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
@@ -1475,7 +1499,7 @@ print(password_generator())
1475
1499
 
1476
1500
  Output:
1477
1501
  ```py
1478
- #~1.#5Oc
1502
+ ~,xp2sfL
1479
1503
  ```
1480
1504
 
1481
1505
  ## pip_freeze_without_version
@@ -1533,7 +1557,7 @@ Output:
1533
1557
  __enter__ : https:/www.google.com
1534
1558
  __fspath__ : https:/www.google.com
1535
1559
  __getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1536
- __hash__ : 1387072094101240364
1560
+ __hash__ : 6827837342351708966
1537
1561
  __init__ : None
1538
1562
  __init_subclass__ : None
1539
1563
  __module__ : pathlib
@@ -1546,8 +1570,8 @@ Output:
1546
1570
  _cached_cparts : ['https:', 'www.google.com']
1547
1571
  _cparts : ['https:', 'www.google.com']
1548
1572
  _drv :
1549
- _flavour : <pathlib._PosixFlavour object at 0x7a80eacb90>
1550
- _hash : 1387072094101240364
1573
+ _flavour : <pathlib._PosixFlavour object at 0x7c74074910>
1574
+ _hash : 6827837342351708966
1551
1575
  _parts : ['https:', 'www.google.com']
1552
1576
  _root :
1553
1577
  _str : https:/www.google.com
@@ -1569,7 +1593,7 @@ Output:
1569
1593
  is_reserved : False
1570
1594
  is_socket : False
1571
1595
  is_symlink : False
1572
- iterdir : <generator object Path.iterdir at 0x7a71d827a0>
1596
+ iterdir : <generator object Path.iterdir at 0x7c605266c0>
1573
1597
  joinpath : https:/www.google.com
1574
1598
  name : www.google.com
1575
1599
  parent : https:
@@ -1616,6 +1640,14 @@ False
1616
1640
 
1617
1641
  `restart(*argv)`
1618
1642
 
1643
+ Mengulang program dari awal seperti memulai awal.
1644
+
1645
+ Bisa ditambahkan dengan argumen tambahan
1646
+
1647
+ ```py
1648
+ restart("--stdio")
1649
+ ```
1650
+
1619
1651
  ## set_timeout
1620
1652
 
1621
1653
  `set_timeout(interval, func, args=None, kwargs=None)`
@@ -1635,7 +1667,7 @@ x.cancel()
1635
1667
 
1636
1668
  Output:
1637
1669
  ```py
1638
- <Timer(Thread-2, started 525871127792)>
1670
+ <Timer(Thread-2, started 534167129328)>
1639
1671
  menghentikan timeout 7
1640
1672
  ```
1641
1673
 
@@ -1653,7 +1685,7 @@ print(list(sets_ordered(array)))
1653
1685
 
1654
1686
  Output:
1655
1687
  ```py
1656
- <generator object sets_ordered at 0x7a71da8d40>
1688
+ <generator object sets_ordered at 0x7c60548e10>
1657
1689
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
1658
1690
  ```
1659
1691
 
@@ -1693,11 +1725,19 @@ text_colorize("Print some text", color=colorama.Fore.RED)
1693
1725
  `APIMixinView()`
1694
1726
 
1695
1727
  APIView adalah class view untuk membuat Website API
1696
- Cara kerjanya adalah dengan menggunakan variabel GET untuk menerima data.
1728
+
1729
+ Cara kerjanya adalah dengan menggunakan variabel GET
1730
+ untuk menerima data.
1731
+ Cara ini dipilih untuk menghindari CORS protection.
1732
+
1733
+ Key dan value dari parameter get akan disimpan
1734
+ dalam variabel dictionary APIDict yg bisa langsung
1735
+ diakses.
1697
1736
 
1698
1737
  Class ini tidak bisa digunakan sendiri.
1699
- Class ini harus menjadi mixin Class View karena perlu trigger untuk
1700
- memanggil method get().
1738
+ Class ini harus menjadi mixin Class View karena
1739
+ perlu trigger untuk memanggil method get().
1740
+
1701
1741
 
1702
1742
  ```py
1703
1743
  class ExampleAPIView(APIMixinView, View):
@@ -1739,7 +1779,7 @@ print(ExampleComparePerformance().compare_performance())
1739
1779
 
1740
1780
  Output:
1741
1781
  ```py
1742
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7a71da8860>,
1782
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7c60548930>,
1743
1783
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
1744
1784
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
1745
1785
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
@@ -1,4 +1,4 @@
1
- pypipr/APIMixinView.py,sha256=ECROEfZpGcojFq1gMWaMLkF5jeft5dnR_5zO1b2RdNw,1093
1
+ pypipr/APIMixinView.py,sha256=3qarMHPSBtLp19JMHv6nfl2XRMbyK9zOygpy3L3uEeQ,1275
2
2
  pypipr/ComparePerformance.py,sha256=fCATdlDgmgiz7QkQNLDMF9VweicesjOaTtfQeBRr64U,2229
3
3
  pypipr/LINUX.py,sha256=p8OJwS9GCs50pz2UlcbUooPWSZgWmLI67PjcnzDTSWI,100
4
4
  pypipr/PintUreg.py,sha256=_jmHZhUn8AcgFkXvZ6OTsWnjtp-CYcXUJ-dG_QdcARY,222
@@ -6,7 +6,7 @@ pypipr/PintUregQuantity.py,sha256=ErSZKB-GHShi1zKac30XgFdBwAUrxMo80IQzIjQ2HVc,11
6
6
  pypipr/RunParallel.py,sha256=BnMasZTnr2gUVVy9dOXePlL_-ud2rWkVPFL2i-sN7rg,7358
7
7
  pypipr/WINDOWS.py,sha256=D-qiViq9LWTCaTefJhbxt-7Z2ty8ll7-DZ5NPFitT94,105
8
8
  pypipr/__init__.py,sha256=YQuHPOQIeHGXzT_KNQlowCifuL4744t5hqtRfI7Ke8c,3002
9
- pypipr/__terminal__.py,sha256=zVY3cg4F_keSvySI4QUziYiK_cUnm_bc3VrJpVgZIew,1279
9
+ pypipr/__terminal__.py,sha256=UdlGb8SIBYjIUHcqx-IQBGUS-Mex02jsVN04b6KdIL0,1253
10
10
  pypipr/auto_reload.py,sha256=h31UvIzunCaPGvP1F5E-jvspk3K06P-EJuGfiN7WEtY,954
11
11
  pypipr/avg.py,sha256=wUtX3x8dgLoODhQLyMB-HRMVo8Ha2yz3cp7lgcUNbr0,218
12
12
  pypipr/basename.py,sha256=nypVfls6YL_7sY-MYHDcatm5flpBpGj2aMlIOKG9YqE,194
@@ -15,7 +15,7 @@ pypipr/batchmaker.py,sha256=y0D-fU0oCJsdffwZZyJMC0iLPjjiv-_43a7hLrChJDM,1110
15
15
  pypipr/calculate.py,sha256=wzEbP8V1haM-JeIz85fBAuT2mgPc7uxQZ7wEuSUEXLc,805
16
16
  pypipr/choices.py,sha256=VQXs6Uissmhwl6qfL9Fek-LRi632itXnhYeKfD0firA,1569
17
17
  pypipr/choices.py.bak,sha256=hjVToqAIeMoMfL3kJxOERAicEVsQyUGwzbnorhLdMA4,1664
18
- pypipr/chr_to_int.py,sha256=e2rP9IouL-irUZ2TLiC5JatskYfxt9pUJ_Ey5-qZ7jY,715
18
+ pypipr/chr_to_int.py,sha256=M7LFGF5dPY_fBEOeWGM1wjMedAs02VQZP81vnkVD7Wg,715
19
19
  pypipr/chunk_array.py,sha256=aodjp-daihl-Xd8kPqcpHZICZub7Jx0QBqyoF0bd0dY,385
20
20
  pypipr/console_run.py,sha256=vCJqDa1rExisqaFLNeWM-hnuXHfUfiYcyNAOJjldOHs,525
21
21
  pypipr/create_folder.py,sha256=0G78lY4Zig25Tlz5ky3kMNQxd6wL8Fjo2n8ZlgxtRwE,383
@@ -24,7 +24,7 @@ pypipr/datetime_now.py,sha256=YEaatUOp0KBWYRhOFnxnVW0X7C1XEx3dpdBEn5Vwy9w,379
24
24
  pypipr/dict_first.py,sha256=X_pSaY0DLGZJSR2zJBa17yqbwAFLJrVpzb2gxR5wzZg,377
25
25
  pypipr/dirname.py,sha256=rG3Y7EdOiY4gQo-BoYE_0C4XFKz3U9A1Ly4D28YaMDY,229
26
26
  pypipr/exit_if_empty.py,sha256=2qUqmYPSkr1NtKPqIN7BAc-WGtcmPPAw8AdO8HirOv8,321
27
- pypipr/filter_empty.py,sha256=wJH15cR-bz-pgtWvgkduWpUbIxG7d0R36u_ZGCDfQSI,543
27
+ pypipr/filter_empty.py,sha256=yLGsStM7SLcCZOKO-gKzhVckzYtmhrhJoaa9R6LuNLc,573
28
28
  pypipr/get_by_index.py,sha256=wCJa8su5QZyZPA4UfEvR2nSEir0NfXcU0pxx2Lzpux8,335
29
29
  pypipr/get_class_method.py,sha256=RThCReUbF0uAlU-n5u0ELuP5yUbFqcKFfShswh7mgqc,639
30
30
  pypipr/get_filemtime.py,sha256=e8Glf4p9PJcL2yU8ZbrKOHYB-puaSNQsTS6Qhgp9F9s,227
@@ -34,13 +34,13 @@ pypipr/github_push.py,sha256=8Gnn_A3ilU0NBnwEQdarc81L2dl1wPLNt604dV7ktuY,921
34
34
  pypipr/github_user.py,sha256=3uPTKwzUjcVx0rNCrkVwE_Bftlr_0BRKtikiW9000gk,590
35
35
  pypipr/iargv.py,sha256=PsKWNLeB7oH-CrUK5ut2R8_tNI0Ptcu0GKuZlgOAJPE,552
36
36
  pypipr/idumps.py,sha256=-YMI6aZmRAMaiQOYXYDvuQLmJMCc4Z4tREEuuoVmFR4,748
37
- pypipr/idumps_html.py,sha256=gKngmLaxGQRip3XEiWEK2TvsVkjYhizapS_Tscqn1Ts,1423
38
- pypipr/ienumerate.py,sha256=z8skzjRjlQKTSrzGkuA2zkoS-F7tO2H6mH9IY_-UCrw,157
37
+ pypipr/idumps_html.py,sha256=IdDLF3YB7fKvoCjeQC4pLhrVdeWFpVupnSDeI_TsqEY,1428
38
+ pypipr/ienumerate.py,sha256=RDHMzpTtidh_f00ki8e_ogCBvdJvb6MMwBaa3jXfmxo,410
39
39
  pypipr/ienv.py,sha256=DYFz_liUc4yYGKBqgVSLY0GBCsarfmRqVGsMjhTdRbc,657
40
40
  pypipr/iexec.py,sha256=nK_WMRK2LnyZh9i7NpYii_bfDZUKfAsJ5PVf5ZrHuRo,465
41
41
  pypipr/ijoin.py,sha256=2qi9Dx3t1ksZShC6a15FAJ-A8DnscohZxZFXwYM_x0g,2036
42
42
  pypipr/iloads.py,sha256=eyvSgqDxOXzU5dcPDT8cbtGtUIfjogxOqeQfwIhc92Q,638
43
- pypipr/iloads_html.py,sha256=gGGOwv0gHsWAMxxBxNGZL3jpXz9ycTiAbAbarFndckg,4146
43
+ pypipr/iloads_html.py,sha256=HwpSvnV5PgjtPcXeYUeC_NovQ3jeKvGKkL3s4GfdVr8,4152
44
44
  pypipr/input_char.py,sha256=5GmpeWWn5eGeozvfX5A886vrtuEuextGjbbK5HAYeeE,1008
45
45
  pypipr/int_to_bin.py,sha256=hRq8ANw5d32GC5dKaTdORWvfrPnYJyaU0Vi4TLodips,215
46
46
  pypipr/int_to_chr.py,sha256=tQhnnzlob4yF6j7RXCwvyyuZZ6Crg1C7LzjgzR9KNBE,610
@@ -49,14 +49,14 @@ pypipr/int_to_int.py,sha256=8qocfQtQowaVac4o4g1tpywMxm7OHDIbBqNl1RP6lGk,215
49
49
  pypipr/int_to_oct.py,sha256=GWu7VbHJXJxC6IvLEjQofUrbbXjQSEYPZvT2f6wh_Is,215
50
50
  pypipr/iopen.py,sha256=y1cLJuML1_lb64UfavXw8RemxM_olJhwZnECbXdOmi8,2786
51
51
  pypipr/iprint.py,sha256=5ekT7RzcTd8Lsb8IQ9JeFJmFl2V6OYFbiHECt9W4iWg,838
52
- pypipr/irange.py,sha256=o4e9hWcnZ9AuMOJtSBUKLr14GULS4iZuqW_AW3ouT50,2981
52
+ pypipr/irange.py,sha256=wOKFsN1BipHG4LcVVwOZQMn-820TDD4NckYyan2dj2g,3098
53
53
  pypipr/ireplace.py,sha256=RcVMXmbXH_cl4hXpTI5wnuzdPtkatpuZgYsZkfBLAJU,722
54
54
  pypipr/is_empty.py,sha256=eqsH6ATuuOLVVSpIsV_8zTBBibPrWjESu9LCMAv8YyY,683
55
55
  pypipr/is_iterable.py,sha256=VCzLfFZyQO5qF2wFTVbuZIxyf4BVkflWiRQaOjd9kFs,922
56
56
  pypipr/is_valid_url.py,sha256=g72vv4_9Zy8dtT0i1JvToRX-mgCzojQCBVHdO1KDwqo,1008
57
57
  pypipr/iscandir.py,sha256=U1zvRZrz--5Kge0JooQbY4kQN17bRt-8XR26ZFxUyoA,748
58
58
  pypipr/isplit.py,sha256=N2BiA_wVnrENYwokSzvo0CAiQWk3g7AnwuWFIUgevNM,383
59
- pypipr/ivars.py,sha256=CM9HFjF9qLg9Bn385CZXLtTALCt_pxhEOEueTm1uNDM,899
59
+ pypipr/ivars.py,sha256=9_DYkv5_X7d5W2PIzGYrQHv__bombI-fAFlr7JGiF-Q,1010
60
60
  pypipr/log.py,sha256=aQ9DeFG03xIAUQYR4TiBdh80M6WvxDtNDTSjpKOSXHk,1041
61
61
  pypipr/password_generator.py,sha256=NnFAYkAr6kZiED4JZIJ15_VeGWSpBCCy9rSA5Re_CW4,496
62
62
  pypipr/pip_freeze_without_version.py,sha256=s-sJAtyI9Rdmsaw0dR8YB6cMkJ8bZRArqGrbajiaEJQ,794
@@ -67,13 +67,13 @@ pypipr/print_dir.py,sha256=kO-YruOQ_gCaN7gsSXfcTbufWqAqtRemW8KrUqIijC8,919
67
67
  pypipr/print_log.py,sha256=Oct2xfcMv_8iK2ySioQYrtlTYou6Cd671PqgPL9IGUE,282
68
68
  pypipr/print_to_last_line.py,sha256=sggQngYMHH9P3cQO2m9Z5n7d_lin2CzDawWmokbrvXo,914
69
69
  pypipr/random_bool.py,sha256=99kM1fy7figeG5mZhbPzQ3FFzV47Jxg1aPImF78298E,405
70
- pypipr/restart.py,sha256=yFqjvFAEtmEnv1wUubyW7sgIKUFqO441R9T1D3GSIFk,114
70
+ pypipr/restart.py,sha256=jUhsjZACAAcItYzCuiULHLFikoVyYDJWj16hCLARmAw,272
71
71
  pypipr/set_timeout.py,sha256=heg1J3jSArgG5_75BNLrujjh7I9meTyAzHpuAY_4IBc,698
72
72
  pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
73
73
  pypipr/str_cmp.py,sha256=2kavWiT4VTddXcBotF1CxDOWSygk5rFrbllKxBjw9dc,377
74
74
  pypipr/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
75
75
  pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
76
- pypipr-1.0.114.dist-info/METADATA,sha256=aHSFNzbmcGE9C3ZmbFZ6QGdf2F7Z0WpEoCtte-uPLs8,50779
77
- pypipr-1.0.114.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
78
- pypipr-1.0.114.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
79
- pypipr-1.0.114.dist-info/RECORD,,
76
+ pypipr-1.0.116.dist-info/METADATA,sha256=ofWou1lWKnEW5xxBis_BBP2HzgMKIR--EeSvssfa3LY,51610
77
+ pypipr-1.0.116.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
78
+ pypipr-1.0.116.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
79
+ pypipr-1.0.116.dist-info/RECORD,,