pypipr 1.0.110__py3-none-any.whl → 1.0.112__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/__init__.py CHANGED
@@ -32,13 +32,18 @@ from .github_user import github_user
32
32
  from .iargv import iargv
33
33
  from .idumps import idumps
34
34
  from .idumps_html import idumps_html
35
+ from .ienumerate import ienumerate
35
36
  from .ienv import ienv
36
37
  from .iexec import iexec
37
38
  from .ijoin import ijoin
38
39
  from .iloads import iloads
39
40
  from .iloads_html import iloads_html
40
41
  from .input_char import input_char
42
+ from .int_to_bin import int_to_bin
41
43
  from .int_to_chr import int_to_chr
44
+ from .int_to_hex import int_to_hex
45
+ from .int_to_int import int_to_int
46
+ from .int_to_oct import int_to_oct
42
47
  from .iopen import iopen
43
48
  from .iprint import iprint
44
49
  from .irange import irange
pypipr/__terminal__.py CHANGED
@@ -10,7 +10,8 @@ def main():
10
10
  while isinstance(m, list):
11
11
  if a is None:
12
12
  pd = True
13
- for i, v in dict(enumerate(m)).items():
13
+ # for i, v in dict(enumerate(m)).items():
14
+ for i, v in enumerate(m):
14
15
  print(f"{i}. {v}")
15
16
  pypipr.print_colorize("Masukan Nomor Urut atau Nama Fungsi : ", text_end="")
16
17
  a = input()
@@ -20,7 +21,8 @@ def main():
20
21
  if a.isdigit():
21
22
  m = pypipr.get_by_index(m, int(a))
22
23
  else:
23
- m = [v for v in m if v.__contains__(a)]
24
+ # m = [v for v in m if v.__contains__(a)]
25
+ m = [v for v in m if a in v]
24
26
  if len(m) == 1:
25
27
  m = pypipr.get_by_index(m, 0)
26
28
  pypipr.exit_if_empty(m)
pypipr/choices.py CHANGED
@@ -1,10 +1,11 @@
1
- from .is_iterable import is_iterable
1
+ from .ienumerate import ienumerate
2
2
  from .WINDOWS import WINDOWS
3
3
  from .print_to_last_line import print_to_last_line
4
4
  from .text_colorize import text_colorize
5
+ from .int_to_int import int_to_int
5
6
 
6
7
 
7
- def choices(iterator, title=None, prompt="", default=None):
8
+ def choices(iterator, title=None, prompt="", default=None, key=int_to_int):
8
9
  """
9
10
  Memudahkan dalam membuat pilihan untuk user dalam tampilan console
10
11
 
@@ -28,17 +29,13 @@ def choices(iterator, title=None, prompt="", default=None):
28
29
  """
29
30
 
30
31
  def build_iterator(iterator):
31
- if not is_iterable(iterator):
32
- iterator = [iterator]
33
- if not isinstance(iterator, dict):
34
- iterator = dict(enumerate(iterator))
35
- return iterator
32
+ return ienumerate(iterator, key=key)
36
33
 
37
34
  def print_choices(dictionary, title=None):
38
35
  if title:
39
36
  print(title)
40
37
  for k, v in dictionary.items():
41
- print(f"[{k}] {v}")
38
+ print(f"{k}. {v}")
42
39
 
43
40
  def input_choices(prompt):
44
41
  i = input(prompt)
pypipr/choices.py.bak ADDED
@@ -0,0 +1,64 @@
1
+ from .is_iterable import is_iterable
2
+ from .WINDOWS import WINDOWS
3
+ from .print_to_last_line import print_to_last_line
4
+ from .text_colorize import text_colorize
5
+
6
+
7
+ def choices(iterator, title=None, prompt="", default=None):
8
+ """
9
+ Memudahkan dalam membuat pilihan untuk user dalam tampilan console
10
+
11
+ ```py
12
+ a = choices("ini hanya satu pilihan")
13
+ b = choices(
14
+ {
15
+ "sedan": "audi",
16
+ "suv": "volvo",
17
+ "truck": "tesla",
18
+ },
19
+ title="Car Model",
20
+ prompt="Pilih Mobil : ",
21
+ )
22
+ c = choices(
23
+ iscandir(recursive=False),
24
+ title="List File dan Folder",
25
+ prompt="Pilih File atau Folder : ",
26
+ )
27
+ ```
28
+ """
29
+
30
+ def build_iterator(iterator):
31
+ if not is_iterable(iterator):
32
+ iterator = [iterator]
33
+ if not isinstance(iterator, dict):
34
+ iterator = dict(enumerate(iterator))
35
+ return iterator
36
+
37
+ def print_choices(dictionary, title=None):
38
+ if title:
39
+ print(title)
40
+ for k, v in dictionary.items():
41
+ print(f"[{k}] {v}")
42
+
43
+ def input_choices(prompt):
44
+ i = input(prompt)
45
+ if WINDOWS:
46
+ i = i.decode()
47
+ if i.isdigit():
48
+ i = int(i)
49
+ return i
50
+
51
+ def return_choices(iterator, key, on_error):
52
+ try:
53
+ result = iterator[key]
54
+ except Exception:
55
+ result = on_error
56
+ return result
57
+
58
+ d = build_iterator(iterator)
59
+ print_choices(d, title)
60
+ key = input_choices(prompt)
61
+ result = return_choices(d, key, default)
62
+ r = text_colorize(result)
63
+ print_to_last_line(f"{prompt}{key} [{r}]")
64
+ return result
pypipr/ienumerate.py ADDED
@@ -0,0 +1,5 @@
1
+ from .int_to_int import int_to_int
2
+
3
+ def ienumerate(iterator, start=0, key=int_to_int):
4
+ for i, v in enumerate(iterator, start):
5
+ yield (key(i), v)
pypipr/int_to_bin.py ADDED
@@ -0,0 +1,10 @@
1
+ def int_to_bin(n):
2
+ """
3
+ Fungsi ini sama seperti fungsi bin().
4
+ fungsi ini dibuat hanya untuk keperluan pembuatan module semata.
5
+
6
+ ```python
7
+ print(int_to_bin(7777))
8
+ ```
9
+ """
10
+ return bin(n)
pypipr/int_to_chr.py CHANGED
@@ -1,4 +1,4 @@
1
- def int_to_chr(n, start=1, numbers="abcdefghijklmnopqrstuvwxyz"):
1
+ def int_to_chr(n, start=0, numbers="abcdefghijklmnopqrstuvwxyz"):
2
2
  """
3
3
  Fungsi ini berguna untuk membuat urutan dari huruf.
4
4
  Seperti a, b, ...., z, aa, bb, ....
pypipr/int_to_hex.py ADDED
@@ -0,0 +1,10 @@
1
+ def int_to_hex(n):
2
+ """
3
+ Fungsi ini sama seperti fungsi hex().
4
+ fungsi ini dibuat hanya untuk keperluan pembuatan module semata.
5
+
6
+ ```python
7
+ print(int_to_hex(7777))
8
+ ```
9
+ """
10
+ return hex(n)
pypipr/int_to_int.py ADDED
@@ -0,0 +1,10 @@
1
+ def int_to_int(n):
2
+ """
3
+ Fungsi ini sama seperti fungsi int().
4
+ fungsi ini dibuat hanya untuk keperluan pembuatan module semata.
5
+
6
+ ```python
7
+ print(int_to_int(7777))
8
+ ```
9
+ """
10
+ return int(n)
pypipr/int_to_oct.py ADDED
@@ -0,0 +1,10 @@
1
+ def int_to_oct(n):
2
+ """
3
+ Fungsi ini sama seperti fungsi oct().
4
+ fungsi ini dibuat hanya untuk keperluan pembuatan module semata.
5
+
6
+ ```python
7
+ print(int_to_oct(7777))
8
+ ```
9
+ """
10
+ return oct(n)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.110
3
+ Version: 1.0.112
4
4
  Summary: The Python Package Index Project
5
5
  Author: ufiapjj
6
6
  Author-email: ufiapjj@gmail.com
@@ -182,7 +182,7 @@ Output:
182
182
 
183
183
  ## int_to_chr
184
184
 
185
- `int_to_chr(n, start=1, numbers='abcdefghijklmnopqrstuvwxyz')`
185
+ `int_to_chr(n, start=0, numbers='abcdefghijklmnopqrstuvwxyz')`
186
186
 
187
187
  Fungsi ini berguna untuk membuat urutan dari huruf.
188
188
  Seperti a, b, ...., z, aa, bb, ....
@@ -196,37 +196,37 @@ print(int_to_chr(7777))
196
196
 
197
197
  Output:
198
198
  ```py
199
- 0 =
200
- 1 = a
201
- 2 = b
202
- 3 = c
203
- 4 = d
204
- 5 = e
205
- 6 = f
206
- 7 = g
207
- 8 = h
208
- 9 = i
209
- 10 = j
210
- 11 = k
211
- 12 = l
212
- 13 = m
213
- 14 = n
214
- 15 = o
215
- 16 = p
216
- 17 = q
217
- 18 = r
218
- 19 = s
219
- 20 = t
220
- 21 = u
221
- 22 = v
222
- 23 = w
223
- 24 = x
224
- 25 = y
225
- 26 = z
226
- 27 = aa
227
- 28 = ab
228
- 29 = ac
229
- kmc
199
+ 0 = a
200
+ 1 = b
201
+ 2 = c
202
+ 3 = d
203
+ 4 = e
204
+ 5 = f
205
+ 6 = g
206
+ 7 = h
207
+ 8 = i
208
+ 9 = j
209
+ 10 = k
210
+ 11 = l
211
+ 12 = m
212
+ 13 = n
213
+ 14 = o
214
+ 15 = p
215
+ 16 = q
216
+ 17 = r
217
+ 18 = s
218
+ 19 = t
219
+ 20 = u
220
+ 21 = v
221
+ 22 = w
222
+ 23 = x
223
+ 24 = y
224
+ 25 = z
225
+ 26 = aa
226
+ 27 = ab
227
+ 28 = ac
228
+ 29 = ad
229
+ kmd
230
230
  ```
231
231
 
232
232
  ## irange
@@ -245,8 +245,8 @@ print(list(irange(10, 5)))
245
245
 
246
246
  Output:
247
247
  ```py
248
- <generator object chr_range at 0x73aefcbde0>
249
- <generator object chr_range at 0x73aefcbde0>
248
+ <generator object chr_range at 0x730b2b89d0>
249
+ <generator object chr_range at 0x730b2b89d0>
250
250
  ['a', 'k', 'u']
251
251
  [1, 2, 3, 4, 5, 6]
252
252
  [10, 9, 8, 7, 6]
@@ -273,7 +273,7 @@ print(list(batchmaker(s)))
273
273
 
274
274
  Output:
275
275
  ```py
276
- <generator object batchmaker at 0x73aeef8280>
276
+ <generator object batchmaker at 0x730b2e4280>
277
277
  ['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
278
  ```
279
279
 
@@ -327,38 +327,30 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
327
327
 
328
328
  Output:
329
329
  ```py
330
- <generator object batch_calculate at 0x73aee7b010>
330
+ <generator object batch_calculate at 0x730b25f100>
331
331
  [('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
332
  ```
333
333
 
334
- ## is_iterable
334
+ ## int_to_int
335
335
 
336
- `is_iterable(var, str_is_iterable=False)`
336
+ `int_to_int(n)`
337
337
 
338
- Mengecek apakah suatu variabel bisa dilakukan forloop atau tidak
338
+ Fungsi ini sama seperti fungsi int().
339
+ fungsi ini dibuat hanya untuk keperluan pembuatan module semata.
339
340
 
340
341
  ```python
341
- s = 'ini string'
342
- print(is_iterable(s))
343
-
344
- l = [12,21,2,1]
345
- print(is_iterable(l))
346
-
347
- r = range(100)
348
- print(is_iterable(r))
349
-
350
- d = {'a':1, 'b':2}
351
- print(is_iterable(d.values()))
342
+ print(int_to_int(7777))
352
343
  ```
353
344
 
354
345
  Output:
355
346
  ```py
356
- False
357
- True
358
- True
359
- True
347
+ 7777
360
348
  ```
361
349
 
350
+ ## ienumerate
351
+
352
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x731029c4a0>)`
353
+
362
354
  ## print_to_last_line
363
355
 
364
356
  `print_to_last_line(text: str, latest=1, clear=True)`
@@ -384,7 +376,7 @@ text_colorize("Print some text", color=colorama.Fore.RED)
384
376
 
385
377
  ## choices
386
378
 
387
- `choices(iterator, title=None, prompt='', default=None)`
379
+ `choices(iterator, title=None, prompt='', default=None, key=<function int_to_int at 0x731029c4a0>)`
388
380
 
389
381
  Memudahkan dalam membuat pilihan untuk user dalam tampilan console
390
382
 
@@ -420,7 +412,7 @@ print(list(chunk_array(arr, 5)))
420
412
 
421
413
  Output:
422
414
  ```py
423
- <generator object chunk_array at 0x73aef04440>
415
+ <generator object chunk_array at 0x730b2f0540>
424
416
  [[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
425
417
  ```
426
418
 
@@ -471,9 +463,9 @@ print(datetime_now("Etc/GMT+7"))
471
463
 
472
464
  Output:
473
465
  ```py
474
- 2024-04-30 17:29:10.591045+07:00
475
- 2024-04-30 10:29:10.593588+00:00
476
- 2024-04-30 03:29:10.598016-07:00
466
+ 2024-04-30 19:16:49.963720+07:00
467
+ 2024-04-30 12:16:49.965180+00:00
468
+ 2024-04-30 05:16:49.969415-07:00
477
469
  ```
478
470
 
479
471
  ## dict_first
@@ -555,6 +547,34 @@ var2 = '0'
555
547
  exit_if_empty(var1, var2)
556
548
  ```
557
549
 
550
+ ## is_iterable
551
+
552
+ `is_iterable(var, str_is_iterable=False)`
553
+
554
+ Mengecek apakah suatu variabel bisa dilakukan forloop atau tidak
555
+
556
+ ```python
557
+ s = 'ini string'
558
+ print(is_iterable(s))
559
+
560
+ l = [12,21,2,1]
561
+ print(is_iterable(l))
562
+
563
+ r = range(100)
564
+ print(is_iterable(r))
565
+
566
+ d = {'a':1, 'b':2}
567
+ print(is_iterable(d.values()))
568
+ ```
569
+
570
+ Output:
571
+ ```py
572
+ False
573
+ True
574
+ True
575
+ True
576
+ ```
577
+
558
578
  ## to_str
559
579
 
560
580
  `to_str(value)`
@@ -591,7 +611,7 @@ print(filter_empty(var))
591
611
 
592
612
  Output:
593
613
  ```py
594
- <generator object filter_empty at 0x73aee795d0>
614
+ <generator object filter_empty at 0x730b25d6c0>
595
615
  ```
596
616
 
597
617
  ## get_by_index
@@ -637,8 +657,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
637
657
 
638
658
  Output:
639
659
  ```py
640
- <generator object get_class_method at 0x73aee7b2e0>
641
- [<function ExampleGetClassMethod.a at 0x73aef14b80>, <function ExampleGetClassMethod.b at 0x73aef14e00>, <function ExampleGetClassMethod.c at 0x73aef14ea0>, <function ExampleGetClassMethod.d at 0x73aef14f40>]
660
+ <generator object get_class_method at 0x730b25f3d0>
661
+ [<function ExampleGetClassMethod.a at 0x730b301080>, <function ExampleGetClassMethod.b at 0x730b301120>, <function ExampleGetClassMethod.c at 0x730b3011c0>, <function ExampleGetClassMethod.d at 0x730b301260>]
642
662
  ```
643
663
 
644
664
  ## get_filesize
@@ -936,7 +956,7 @@ print(ijoin(10, ' '))
936
956
 
937
957
  Output:
938
958
  ```py
939
- dfs, qweqw, weq, asd
959
+ asd, weq, dfs, qweqw
940
960
  ,ini,path,seperti,url,
941
961
  ini,path,seperti,url
942
962
  <li>satu</li>
@@ -980,9 +1000,9 @@ Output:
980
1000
  ```py
981
1001
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
982
1002
  [['Harga Emas Hari Ini - Selasa, 30 April 2024'],
983
- ['Spot Emas USD↓2.316,80 (-27,74) / oz',
1003
+ ['Spot Emas USD↓2.311,01 (-33,53) / oz',
984
1004
  'Kurs IDR↑16.249,00 (+27,00) / USD',
985
- 'Emas IDR↓1.210.337 (-12.457) / gr'],
1005
+ 'Emas IDR↓1.207.312 (-15.481) / gr'],
986
1006
  ['LM Antam (Jual)1.325.000 / gr', 'LM Antam (Beli)1.221.000 / gr']],
987
1007
  [['Harga Emas Hari Ini'],
988
1008
  ['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
@@ -1020,10 +1040,10 @@ Output:
1020
1040
  'Update harga LM Pegadaian :31 Agustus 2023']],
1021
1041
  [['Spot Harga Emas Hari Ini (Market Open)'],
1022
1042
  ['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
1023
- ['Ounce\xa0(oz)', '2.316,80 (-27,74)', '16.249,00 (+27,00)', '37.645.683'],
1024
- ['Gram\xa0(gr)', '74,49', '16.249,00', '1.210.337 (-12.457)'],
1025
- ['Kilogram\xa0(kg)', '74.486,85', '16.249,00', '1.210.336.821'],
1026
- ['Update harga emas :30 April 2024, pukul 17:29Update kurs :30 April 2024, '
1043
+ ['Ounce\xa0(oz)', '2.311,01 (-33,53)', '16.249,00 (+27,00)', '37.551.601'],
1044
+ ['Gram\xa0(gr)', '74,30', '16.249,00', '1.207.312 (-15.481)'],
1045
+ ['Kilogram\xa0(kg)', '74.300,70', '16.249,00', '1.207.312.024'],
1046
+ ['Update harga emas :30 April 2024, pukul 19:16Update kurs :30 April 2024, '
1027
1047
  'pukul 13:10']],
1028
1048
  [['Gram', 'UBS Gold 99.99%'],
1029
1049
  ['Jual', 'Beli'],
@@ -1045,36 +1065,36 @@ Output:
1045
1065
  ['Unit', 'USD', 'IDR'],
1046
1066
  ['Angka', '+/-', 'Angka', '+/-'],
1047
1067
  ['Hari Ini', 'Kurs', '', '', '16.222', '+27+0,17%'],
1048
- ['oz', '2.344,54', '-27,74-1,18%', '38.033.128', '-387.445-1,02%'],
1049
- ['gr', '75,38', '-0,89-1,18%', '1.222.793', '-12.457-1,02%'],
1068
+ ['oz', '2.344,54', '-33,53-1,43%', '38.033.128', '-481.526-1,27%'],
1069
+ ['gr', '75,38', '-1,08-1,43%', '1.222.793', '-15.481-1,27%'],
1050
1070
  ['30 Hari', 'Kurs', '', '', '15.853', '+396+2,50%'],
1051
- ['oz', '2.232,75', '+84,05+3,76%', '35.395.786', '+2.249.897+6,36%'],
1052
- ['gr', '71,78', '+2,70+3,76%', '1.138.001', '+72.336+6,36%'],
1071
+ ['oz', '2.232,75', '+78,26+3,51%', '35.395.786', '+2.155.816+6,09%'],
1072
+ ['gr', '71,78', '+2,52+3,51%', '1.138.001', '+69.311+6,09%'],
1053
1073
  ['2 Bulan', 'Kurs', '', '', '15.715', '+534+3,40%'],
1054
- ['oz', '2.081,20', '+235,60+11,32%', '32.706.058', '+4.939.625+15,10%'],
1055
- ['gr', '66,91', '+7,57+11,32', '1.051.524', '+158.813+15,10%'],
1074
+ ['oz', '2.081,20', '+229,81+11,04%', '32.706.058', '+4.845.543+14,82%'],
1075
+ ['gr', '66,91', '+7,39+11,04', '1.051.524', '+155.788+14,82%'],
1056
1076
  ['6 Bulan', 'Kurs', '', '', '15.946', '+303+1,90%'],
1057
- ['oz', '1.981,84', '+334,96+16,90%', '31.602.421', '+6.043.263+19,12%'],
1058
- ['gr', '63,72', '+10,77+16,90%', '1.016.041', '+194.295+19,12%'],
1077
+ ['oz', '1.981,84', '+329,17+16,61%', '31.602.421', '+5.949.181+18,83%'],
1078
+ ['gr', '63,72', '+10,58+16,61%', '1.016.041', '+191.271+18,83%'],
1059
1079
  ['1 Tahun', 'Kurs', '', '', '15.731', '+518+3,29%'],
1060
- ['oz', '1.823,86', '+492,94+27,03%', '28.691.142', '+8.954.542+31,21%'],
1061
- ['gr', '58,64', '+15,85+27,03%', '922.442', '+287.895+31,21%'],
1080
+ ['oz', '1.823,86', '+487,15+26,71%', '28.691.142', '+8.860.460+30,88%'],
1081
+ ['gr', '58,64', '+15,66+26,71%', '922.442', '+284.870+30,88%'],
1062
1082
  ['2 Tahun', 'Kurs', '', '', '14.418', '+1.831+12,70%'],
1063
- ['oz', '1.896,95', '+419,85+22,13%', '27.350.225', '+10.295.458+37,64%'],
1064
- ['gr', '60,99', '+13,50+22,13%', '879.330', '+331.007+37,64%'],
1083
+ ['oz', '1.896,95', '+414,06+21,83%', '27.350.225', '+10.201.376+37,30%'],
1084
+ ['gr', '60,99', '+13,31+21,83%', '879.330', '+327.982+37,30%'],
1065
1085
  ['3 Tahun', 'Kurs', '', '', '14.468', '+1.781+12,31%'],
1066
- ['oz', '1.768,91', '+547,89+30,97%', '25.592.590', '+12.053.093+47,10%'],
1067
- ['gr', '56,87', '+17,62+30,97%', '822.821', '+387.516+47,10%'],
1086
+ ['oz', '1.768,91', '+542,10+30,65%', '25.592.590', '+11.959.012+46,73%'],
1087
+ ['gr', '56,87', '+17,43+30,65%', '822.821', '+384.491+46,73%'],
1068
1088
  ['5 Tahun', 'Kurs', '', '', '14.245', '+2.004+14,07%'],
1069
- ['oz', '1.270,94', '+1.045,86+82,29%', '18.104.540', '+19.541.143+107,94%'],
1070
- ['gr', '40,86', '+33,63+82,29%', '582.074', '+628.262+107,94%']])
1089
+ ['oz', '1.270,94', '+1.040,07+81,83%', '18.104.540', '+19.447.061+107,42%'],
1090
+ ['gr', '40,86', '+33,44+81,83%', '582.074', '+625.238+107,42%']])
1071
1091
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1072
1092
  [[''],
1073
1093
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1074
- ['USD', '74,49↓', '-0,89-1,18%'],
1075
- ['KURS', '16.239,25↑', '+25,75+0,16%'],
1076
- ['IDR', '1.209.610,57↓', '-12.542,17-1,03%'],
1077
- ['Selasa, 30 April 2024 17:29']],
1094
+ ['USD', '74,30↓', '-1,08-1,43%'],
1095
+ ['KURS', '16.243,45↑', '+29,95+0,18%'],
1096
+ ['IDR', '1.206.899,66↓', '-15.253,08-1,25%'],
1097
+ ['Selasa, 30 April 2024 19:16']],
1078
1098
  [[''],
1079
1099
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1080
1100
  'Hari Ini',
@@ -1085,19 +1105,19 @@ Output:
1085
1105
  '']],
1086
1106
  [['Pergerakkan Harga Emas 1 Gram'],
1087
1107
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1088
- ['USD', '75,38', '74,49 - 75,38', '74,94'],
1089
- ['KURS', '16.213,50', '16.213,50 - 16.239,25', '16.226,38'],
1090
- ['IDR', '1.222.152,74', '1.209.610,57 - 1.222.152,74', '1.215.881,66'],
1108
+ ['USD', '75,38', '74,30 - 75,38', '74,84'],
1109
+ ['KURS', '16.213,50', '16.213,50 - 16.243,45', '16.228,48'],
1110
+ ['IDR', '1.222.152,74', '1.206.899,66 - 1.222.152,74', '1.214.526,20'],
1091
1111
  [''],
1092
1112
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1093
- ['USD', '66,32', '64,07 - 77,14', '+8,17 (12,32%)'],
1094
- ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+849,15 (5,52%)'],
1095
- ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+188.881,04 (18,50%)'],
1113
+ ['USD', '66,32', '64,07 - 77,14', '+7,98 (12,03%)'],
1114
+ ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+853,35 (5,54%)'],
1115
+ ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+186.170,13 (18,24%)'],
1096
1116
  [''],
1097
1117
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1098
- ['USD', '63,97', '58,43 - 77,14', '+10,52 (16,45%)'],
1099
- ['KURS', '14.673,55', '14.669,40 - 16.307,80', '+1.565,70 (10,67%)'],
1100
- ['IDR', '938.709,73', '912.925,68 - 1.256.829,06', '+270.900,84 (28,86%)']])
1118
+ ['USD', '63,97', '58,43 - 77,14', '+10,33 (16,15%)'],
1119
+ ['KURS', '14.673,55', '14.669,40 - 16.307,80', '+1.569,90 (10,70%)'],
1120
+ ['IDR', '938.709,73', '912.925,68 - 1.256.829,06', '+268.189,93 (28,57%)']])
1101
1121
  ```
1102
1122
 
1103
1123
  ## iloads
@@ -1134,6 +1154,54 @@ input_char("Input char : ", default='Y')
1134
1154
  input_char("Input Char without print : ", echo_char=False)
1135
1155
  ```
1136
1156
 
1157
+ ## int_to_bin
1158
+
1159
+ `int_to_bin(n)`
1160
+
1161
+ Fungsi ini sama seperti fungsi bin().
1162
+ fungsi ini dibuat hanya untuk keperluan pembuatan module semata.
1163
+
1164
+ ```python
1165
+ print(int_to_bin(7777))
1166
+ ```
1167
+
1168
+ Output:
1169
+ ```py
1170
+ 0b1111001100001
1171
+ ```
1172
+
1173
+ ## int_to_hex
1174
+
1175
+ `int_to_hex(n)`
1176
+
1177
+ Fungsi ini sama seperti fungsi hex().
1178
+ fungsi ini dibuat hanya untuk keperluan pembuatan module semata.
1179
+
1180
+ ```python
1181
+ print(int_to_hex(7777))
1182
+ ```
1183
+
1184
+ Output:
1185
+ ```py
1186
+ 0x1e61
1187
+ ```
1188
+
1189
+ ## int_to_oct
1190
+
1191
+ `int_to_oct(n)`
1192
+
1193
+ Fungsi ini sama seperti fungsi oct().
1194
+ fungsi ini dibuat hanya untuk keperluan pembuatan module semata.
1195
+
1196
+ ```python
1197
+ print(int_to_oct(7777))
1198
+ ```
1199
+
1200
+ Output:
1201
+ ```py
1202
+ 0o17141
1203
+ ```
1204
+
1137
1205
  ## is_valid_url
1138
1206
 
1139
1207
  `is_valid_url(path)`
@@ -1191,7 +1259,7 @@ Output:
1191
1259
  ```py
1192
1260
  8
1193
1261
  ['mana', 'aja']
1194
- [<Element a at 0x73aef12670>, <Element a at 0x73aef4cd20>, <Element a at 0x73aef4cdc0>, <Element a at 0x73aef4ce10>, <Element a at 0x73aef4ce60>, <Element a at 0x73aef4ceb0>, <Element a at 0x73aef4cf00>, <Element a at 0x73aef4cf50>, <Element a at 0x73aef4cfa0>, <Element a at 0x73aef4cff0>, <Element a at 0x73aef4d040>, <Element a at 0x73aef4d090>, <Element a at 0x73aef4d0e0>, <Element a at 0x73aef4d130>, <Element a at 0x73aef4d180>, <Element a at 0x73aef4d1d0>, <Element a at 0x73aef4d220>, <Element a at 0x73aef4d270>]
1262
+ [<Element a at 0x730b2faad0>, <Element a at 0x730b339180>, <Element a at 0x730b339220>, <Element a at 0x730b339270>, <Element a at 0x730b3392c0>, <Element a at 0x730b339310>, <Element a at 0x730b339360>, <Element a at 0x730b3393b0>, <Element a at 0x730b339400>, <Element a at 0x730b339450>, <Element a at 0x730b3394a0>, <Element a at 0x730b3394f0>, <Element a at 0x730b339540>, <Element a at 0x730b339590>, <Element a at 0x730b3395e0>, <Element a at 0x730b339630>, <Element a at 0x730b339680>, <Element a at 0x730b3396d0>]
1195
1263
  False
1196
1264
  ```
1197
1265
 
@@ -1253,7 +1321,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1253
1321
 
1254
1322
  Output:
1255
1323
  ```py
1256
- <generator object iscandir at 0x73aef04740>
1324
+ <generator object iscandir at 0x730b2f0740>
1257
1325
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1258
1326
  ```
1259
1327
 
@@ -1290,68 +1358,73 @@ Output:
1290
1358
  'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1291
1359
  'PintUregQuantity': <class 'pint.Quantity'>,
1292
1360
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
1293
- 'function': {'avg': <function avg at 0x73bc16a700>,
1294
- 'get_filemtime': <function get_filemtime at 0x73b7bff2e0>,
1295
- 'print_colorize': <function print_colorize at 0x73b7bff4c0>,
1296
- 'print_log': <function print_log at 0x73b7cc2b60>,
1297
- 'console_run': <function console_run at 0x73b7bff380>,
1298
- 'auto_reload': <function auto_reload at 0x73b7bebec0>,
1299
- 'basename': <function basename at 0x73b7bff240>,
1300
- 'chr_to_int': <function chr_to_int at 0x73b7bffa60>,
1301
- 'int_to_chr': <function int_to_chr at 0x73b7bffb00>,
1302
- 'irange': <function irange at 0x73b7bffd80>,
1303
- 'batchmaker': <function batchmaker at 0x73b7bff740>,
1304
- 'calculate': <function calculate at 0x73b7a282c0>,
1305
- 'batch_calculate': <function batch_calculate at 0x73b7bff600>,
1306
- 'is_iterable': <function is_iterable at 0x73b7a28360>,
1307
- 'print_to_last_line': <function print_to_last_line at 0x73b7a28400>,
1308
- 'text_colorize': <function text_colorize at 0x73b7a284a0>,
1309
- 'choices': <function choices at 0x73b7bff6a0>,
1310
- 'chunk_array': <function chunk_array at 0x73b7bff7e0>,
1311
- 'create_folder': <function create_folder at 0x73b7a28540>,
1312
- 'datetime_from_string': <function datetime_from_string at 0x73b7a285e0>,
1313
- 'datetime_now': <function datetime_now at 0x73b7a28680>,
1314
- 'dict_first': <function dict_first at 0x73b7a28720>,
1315
- 'dirname': <function dirname at 0x73b7a287c0>,
1316
- 'is_empty': <function is_empty at 0x73b7a289a0>,
1317
- 'exit_if_empty': <function exit_if_empty at 0x73b7bff560>,
1318
- 'to_str': <function to_str at 0x73b7a28ae0>,
1319
- 'filter_empty': <function filter_empty at 0x73b7a28860>,
1320
- 'get_by_index': <function get_by_index at 0x73b7a28a40>,
1321
- 'get_class_method': <function get_class_method at 0x73b7a28b80>,
1322
- 'get_filesize': <function get_filesize at 0x73b7a28cc0>,
1323
- 'github_pull': <function github_pull at 0x73b7a28d60>,
1324
- 'github_push': <function github_push at 0x73b7a28f40>,
1325
- 'github_user': <function github_user at 0x73b7a28fe0>,
1326
- 'iargv': <function iargv at 0x73b7a28e00>,
1327
- 'idumps_html': <function idumps_html at 0x73b7a29260>,
1328
- 'idumps': <function idumps at 0x73b7a29120>,
1329
- 'ienv': <function ienv at 0x73b7a29760>,
1330
- 'iexec': <function iexec at 0x73b7b01a80>,
1331
- 'ijoin': <function ijoin at 0x73b7b01c60>,
1332
- 'iloads_html': <function iloads_html at 0x73b7b01e40>,
1333
- 'iloads': <function iloads at 0x73b7b01bc0>,
1334
- 'input_char': <function input_char at 0x73b7b01da0>,
1335
- 'is_valid_url': <function is_valid_url at 0x73b7b02020>,
1336
- 'iopen': <function iopen at 0x73b792e480>,
1337
- 'iprint': <function iprint at 0x73b7b01f80>,
1338
- 'ireplace': <function ireplace at 0x73b7b02340>,
1339
- 'iscandir': <function iscandir at 0x73b79e1bc0>,
1340
- 'isplit': <function isplit at 0x73b79e1c60>,
1341
- 'ivars': <function ivars at 0x73b79e1d00>,
1342
- 'log': <function log at 0x73b79e1da0>,
1343
- 'password_generator': <function password_generator at 0x73b79e1e40>,
1344
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x73b79e1f80>,
1345
- 'poetry_publish': <function poetry_publish at 0x73b79e2020>,
1346
- 'poetry_update_version': <function poetry_update_version at 0x73b79e2160>,
1347
- 'print_dir': <function print_dir at 0x73b79e2340>,
1348
- 'random_bool': <function random_bool at 0x73b79e23e0>,
1349
- 'restart': <function restart at 0x73b79e2480>,
1350
- 'set_timeout': <function set_timeout at 0x73b79e2520>,
1351
- 'sets_ordered': <function sets_ordered at 0x73b79e25c0>,
1352
- 'str_cmp': <function str_cmp at 0x73b79e2660>},
1361
+ 'function': {'avg': <function avg at 0x7315236700>,
1362
+ 'get_filemtime': <function get_filemtime at 0x73102ab2e0>,
1363
+ 'print_colorize': <function print_colorize at 0x73102ab4c0>,
1364
+ 'print_log': <function print_log at 0x7310532b60>,
1365
+ 'console_run': <function console_run at 0x73102ab380>,
1366
+ 'auto_reload': <function auto_reload at 0x7310463ec0>,
1367
+ 'basename': <function basename at 0x73102ab240>,
1368
+ 'chr_to_int': <function chr_to_int at 0x73102aba60>,
1369
+ 'int_to_chr': <function int_to_chr at 0x73102abb00>,
1370
+ 'irange': <function irange at 0x73102abd80>,
1371
+ 'batchmaker': <function batchmaker at 0x73102ab740>,
1372
+ 'calculate': <function calculate at 0x731029c2c0>,
1373
+ 'batch_calculate': <function batch_calculate at 0x73102ab600>,
1374
+ 'int_to_int': <function int_to_int at 0x731029c4a0>,
1375
+ 'ienumerate': <function ienumerate at 0x731029c360>,
1376
+ 'print_to_last_line': <function print_to_last_line at 0x731029c400>,
1377
+ 'text_colorize': <function text_colorize at 0x731029c540>,
1378
+ 'choices': <function choices at 0x73102ab6a0>,
1379
+ 'chunk_array': <function chunk_array at 0x73102ab7e0>,
1380
+ 'create_folder': <function create_folder at 0x731029c5e0>,
1381
+ 'datetime_from_string': <function datetime_from_string at 0x731029c680>,
1382
+ 'datetime_now': <function datetime_now at 0x731029c720>,
1383
+ 'dict_first': <function dict_first at 0x731029c7c0>,
1384
+ 'dirname': <function dirname at 0x731029c860>,
1385
+ 'is_empty': <function is_empty at 0x731029ca40>,
1386
+ 'exit_if_empty': <function exit_if_empty at 0x731029c900>,
1387
+ 'is_iterable': <function is_iterable at 0x731029cb80>,
1388
+ 'to_str': <function to_str at 0x731029cc20>,
1389
+ 'filter_empty': <function filter_empty at 0x731029c9a0>,
1390
+ 'get_by_index': <function get_by_index at 0x731029cae0>,
1391
+ 'get_class_method': <function get_class_method at 0x731029ccc0>,
1392
+ 'get_filesize': <function get_filesize at 0x731029ce00>,
1393
+ 'github_pull': <function github_pull at 0x731029cea0>,
1394
+ 'github_push': <function github_push at 0x731029d080>,
1395
+ 'github_user': <function github_user at 0x731029d120>,
1396
+ 'iargv': <function iargv at 0x731029cfe0>,
1397
+ 'idumps_html': <function idumps_html at 0x731029d3a0>,
1398
+ 'idumps': <function idumps at 0x731029d260>,
1399
+ 'ienv': <function ienv at 0x731029d8a0>,
1400
+ 'iexec': <function iexec at 0x7310379bc0>,
1401
+ 'ijoin': <function ijoin at 0x7310379da0>,
1402
+ 'iloads_html': <function iloads_html at 0x7310379f80>,
1403
+ 'iloads': <function iloads at 0x7310379d00>,
1404
+ 'input_char': <function input_char at 0x7310379ee0>,
1405
+ 'int_to_bin': <function int_to_bin at 0x731037a020>,
1406
+ 'int_to_hex': <function int_to_hex at 0x731037a0c0>,
1407
+ 'int_to_oct': <function int_to_oct at 0x731037a160>,
1408
+ 'is_valid_url': <function is_valid_url at 0x731037a340>,
1409
+ 'iopen': <function iopen at 0x73101ae7a0>,
1410
+ 'iprint': <function iprint at 0x731037a2a0>,
1411
+ 'ireplace': <function ireplace at 0x731037a660>,
1412
+ 'iscandir': <function iscandir at 0x7310265ee0>,
1413
+ 'isplit': <function isplit at 0x7310265f80>,
1414
+ 'ivars': <function ivars at 0x7310266020>,
1415
+ 'log': <function log at 0x73102660c0>,
1416
+ 'password_generator': <function password_generator at 0x7310266160>,
1417
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x73102662a0>,
1418
+ 'poetry_publish': <function poetry_publish at 0x7310266340>,
1419
+ 'poetry_update_version': <function poetry_update_version at 0x7310266480>,
1420
+ 'print_dir': <function print_dir at 0x7310266660>,
1421
+ 'random_bool': <function random_bool at 0x7310266700>,
1422
+ 'restart': <function restart at 0x73102667a0>,
1423
+ 'set_timeout': <function set_timeout at 0x7310266840>,
1424
+ 'sets_ordered': <function sets_ordered at 0x73102668e0>,
1425
+ 'str_cmp': <function str_cmp at 0x7310266980>},
1353
1426
  'variable': {'LINUX': True,
1354
- 'PintUreg': <pint.registry.UnitRegistry object at 0x73bc34ff90>,
1427
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x7310fac810>,
1355
1428
  'WINDOWS': False},
1356
1429
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
1357
1430
  'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
@@ -1425,7 +1498,7 @@ print(password_generator())
1425
1498
 
1426
1499
  Output:
1427
1500
  ```py
1428
- DHOV[xra
1501
+ ~N5#gon~
1429
1502
  ```
1430
1503
 
1431
1504
  ## pip_freeze_without_version
@@ -1483,7 +1556,7 @@ Output:
1483
1556
  __enter__ : https:/www.google.com
1484
1557
  __fspath__ : https:/www.google.com
1485
1558
  __getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1486
- __hash__ : 6851376060723217171
1559
+ __hash__ : -3740726322500476650
1487
1560
  __init__ : None
1488
1561
  __init_subclass__ : None
1489
1562
  __module__ : pathlib
@@ -1496,8 +1569,8 @@ Output:
1496
1569
  _cached_cparts : ['https:', 'www.google.com']
1497
1570
  _cparts : ['https:', 'www.google.com']
1498
1571
  _drv :
1499
- _flavour : <pathlib._PosixFlavour object at 0x73c1f20710>
1500
- _hash : 6851376060723217171
1572
+ _flavour : <pathlib._PosixFlavour object at 0x7318530b90>
1573
+ _hash : -3740726322500476650
1501
1574
  _parts : ['https:', 'www.google.com']
1502
1575
  _root :
1503
1576
  _str : https:/www.google.com
@@ -1519,7 +1592,7 @@ Output:
1519
1592
  is_reserved : False
1520
1593
  is_socket : False
1521
1594
  is_symlink : False
1522
- iterdir : <generator object Path.iterdir at 0x73aef0a0a0>
1595
+ iterdir : <generator object Path.iterdir at 0x730b2ee7a0>
1523
1596
  joinpath : https:/www.google.com
1524
1597
  name : www.google.com
1525
1598
  parent : https:
@@ -1547,7 +1620,7 @@ print(random_bool())
1547
1620
 
1548
1621
  Output:
1549
1622
  ```py
1550
- True
1623
+ False
1551
1624
  ```
1552
1625
 
1553
1626
  ## restart
@@ -1573,7 +1646,7 @@ x.cancel()
1573
1646
 
1574
1647
  Output:
1575
1648
  ```py
1576
- <Timer(Thread-2, started 496827874544)>
1649
+ <Timer(Thread-2, started 494080605424)>
1577
1650
  menghentikan timeout 7
1578
1651
  ```
1579
1652
 
@@ -1591,7 +1664,7 @@ print(list(sets_ordered(array)))
1591
1664
 
1592
1665
  Output:
1593
1666
  ```py
1594
- <generator object sets_ordered at 0x73aef28a00>
1667
+ <generator object sets_ordered at 0x730b314e10>
1595
1668
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
1596
1669
  ```
1597
1670
 
@@ -1666,7 +1739,7 @@ print(ExampleComparePerformance().compare_performance())
1666
1739
 
1667
1740
  Output:
1668
1741
  ```py
1669
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x73aef28450>,
1742
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x730b314860>,
1670
1743
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
1671
1744
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
1672
1745
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
@@ -5,15 +5,16 @@ pypipr/PintUreg.py,sha256=_jmHZhUn8AcgFkXvZ6OTsWnjtp-CYcXUJ-dG_QdcARY,222
5
5
  pypipr/PintUregQuantity.py,sha256=ErSZKB-GHShi1zKac30XgFdBwAUrxMo80IQzIjQ2HVc,118
6
6
  pypipr/RunParallel.py,sha256=BnMasZTnr2gUVVy9dOXePlL_-ud2rWkVPFL2i-sN7rg,7358
7
7
  pypipr/WINDOWS.py,sha256=D-qiViq9LWTCaTefJhbxt-7Z2ty8ll7-DZ5NPFitT94,105
8
- pypipr/__init__.py,sha256=s4rjNyzo6yk4ElhuCbSRy_hR1Vn3qLXd3JcLgXf_4rc,2827
9
- pypipr/__terminal__.py,sha256=4w-2p_Rudm_dNdfG-rkO24heVgKLrve4xVXiRpWxVcc,1800
8
+ pypipr/__init__.py,sha256=YQuHPOQIeHGXzT_KNQlowCifuL4744t5hqtRfI7Ke8c,3002
9
+ pypipr/__terminal__.py,sha256=stikBvdJQCTn_sKAQ8DGEHlsTgMl2JnutLq3Cf1DEis,1883
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
13
13
  pypipr/batch_calculate.py,sha256=rHDXHvzxqKdQlusb6L8mTn27nfadCJMkud9LtGgRNIU,836
14
14
  pypipr/batchmaker.py,sha256=y0D-fU0oCJsdffwZZyJMC0iLPjjiv-_43a7hLrChJDM,1110
15
15
  pypipr/calculate.py,sha256=wzEbP8V1haM-JeIz85fBAuT2mgPc7uxQZ7wEuSUEXLc,805
16
- pypipr/choices.py,sha256=hjVToqAIeMoMfL3kJxOERAicEVsQyUGwzbnorhLdMA4,1664
16
+ pypipr/choices.py,sha256=Q6SFk4bIimMS2z8qTpPfIoKDVgRdUtmG99og80GeHzY,1569
17
+ pypipr/choices.py.bak,sha256=hjVToqAIeMoMfL3kJxOERAicEVsQyUGwzbnorhLdMA4,1664
17
18
  pypipr/chr_to_int.py,sha256=e2rP9IouL-irUZ2TLiC5JatskYfxt9pUJ_Ey5-qZ7jY,715
18
19
  pypipr/chunk_array.py,sha256=aodjp-daihl-Xd8kPqcpHZICZub7Jx0QBqyoF0bd0dY,385
19
20
  pypipr/console_run.py,sha256=vCJqDa1rExisqaFLNeWM-hnuXHfUfiYcyNAOJjldOHs,525
@@ -34,13 +35,18 @@ pypipr/github_user.py,sha256=3uPTKwzUjcVx0rNCrkVwE_Bftlr_0BRKtikiW9000gk,590
34
35
  pypipr/iargv.py,sha256=PsKWNLeB7oH-CrUK5ut2R8_tNI0Ptcu0GKuZlgOAJPE,552
35
36
  pypipr/idumps.py,sha256=-YMI6aZmRAMaiQOYXYDvuQLmJMCc4Z4tREEuuoVmFR4,748
36
37
  pypipr/idumps_html.py,sha256=gKngmLaxGQRip3XEiWEK2TvsVkjYhizapS_Tscqn1Ts,1423
38
+ pypipr/ienumerate.py,sha256=z8skzjRjlQKTSrzGkuA2zkoS-F7tO2H6mH9IY_-UCrw,157
37
39
  pypipr/ienv.py,sha256=DYFz_liUc4yYGKBqgVSLY0GBCsarfmRqVGsMjhTdRbc,657
38
40
  pypipr/iexec.py,sha256=nK_WMRK2LnyZh9i7NpYii_bfDZUKfAsJ5PVf5ZrHuRo,465
39
41
  pypipr/ijoin.py,sha256=2qi9Dx3t1ksZShC6a15FAJ-A8DnscohZxZFXwYM_x0g,2036
40
42
  pypipr/iloads.py,sha256=eyvSgqDxOXzU5dcPDT8cbtGtUIfjogxOqeQfwIhc92Q,638
41
43
  pypipr/iloads_html.py,sha256=gGGOwv0gHsWAMxxBxNGZL3jpXz9ycTiAbAbarFndckg,4146
42
44
  pypipr/input_char.py,sha256=5GmpeWWn5eGeozvfX5A886vrtuEuextGjbbK5HAYeeE,1008
43
- pypipr/int_to_chr.py,sha256=B-HnKziRQgDObsr2vMd2TnL3EkZAIMbK6fSY8b8r_dc,610
45
+ pypipr/int_to_bin.py,sha256=hRq8ANw5d32GC5dKaTdORWvfrPnYJyaU0Vi4TLodips,215
46
+ pypipr/int_to_chr.py,sha256=tQhnnzlob4yF6j7RXCwvyyuZZ6Crg1C7LzjgzR9KNBE,610
47
+ pypipr/int_to_hex.py,sha256=w6kOPSNhOzjip7SWX7Q9df6f0vwwuKdbuHQhFjwOqN4,215
48
+ pypipr/int_to_int.py,sha256=8qocfQtQowaVac4o4g1tpywMxm7OHDIbBqNl1RP6lGk,215
49
+ pypipr/int_to_oct.py,sha256=GWu7VbHJXJxC6IvLEjQofUrbbXjQSEYPZvT2f6wh_Is,215
44
50
  pypipr/iopen.py,sha256=y1cLJuML1_lb64UfavXw8RemxM_olJhwZnECbXdOmi8,2786
45
51
  pypipr/iprint.py,sha256=5ekT7RzcTd8Lsb8IQ9JeFJmFl2V6OYFbiHECt9W4iWg,838
46
52
  pypipr/irange.py,sha256=o4e9hWcnZ9AuMOJtSBUKLr14GULS4iZuqW_AW3ouT50,2981
@@ -67,7 +73,7 @@ pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
67
73
  pypipr/str_cmp.py,sha256=2kavWiT4VTddXcBotF1CxDOWSygk5rFrbllKxBjw9dc,377
68
74
  pypipr/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
69
75
  pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
70
- pypipr-1.0.110.dist-info/METADATA,sha256=TzU1GwFWKcnoa2EL0oXjUbh5XIfUNCnzBs1cr5uYyms,49502
71
- pypipr-1.0.110.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
72
- pypipr-1.0.110.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
73
- pypipr-1.0.110.dist-info/RECORD,,
76
+ pypipr-1.0.112.dist-info/METADATA,sha256=eOoI20kbUqOhpp940Oqk7K98lTDabFgLzGz6mYDQlcE,50828
77
+ pypipr-1.0.112.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
78
+ pypipr-1.0.112.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
79
+ pypipr-1.0.112.dist-info/RECORD,,