pypipr 1.0.85__py3-none-any.whl → 1.0.87__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
@@ -12,10 +12,10 @@ from .ibuiltins.dict_first import dict_first
12
12
  from .ibuiltins.dirname import dirname
13
13
  from .ibuiltins.exit_if_empty import exit_if_empty
14
14
  from .ibuiltins.filter_empty import filter_empty
15
+ from .ibuiltins.get_by_index import get_by_index
15
16
  from .ibuiltins.get_class_method import get_class_method
16
17
  from .ibuiltins.get_filemtime import get_filemtime
17
18
  from .ibuiltins.get_filesize import get_filesize
18
- from .ibuiltins.get_from_index import get_from_index
19
19
  from .ibuiltins.is_empty import is_empty
20
20
  from .ibuiltins.is_iterable import is_iterable
21
21
  from .ibuiltins.is_valid_url import is_valid_url
@@ -1,11 +1,11 @@
1
- def get_from_index(obj, index, on_error=None):
1
+ def get_by_index(obj, index, on_error=None):
2
2
  """
3
3
  Mendapatkan value dari object berdasarkan indexnya.
4
4
  Jika error out of range maka akan mengembalikan on_error.
5
5
 
6
6
  ```python
7
7
  l = [1, 3, 5]
8
- print(get_from_index(l, 7))
8
+ print(get_by_index(l, 7))
9
9
  ```
10
10
  """
11
11
  try:
@@ -43,4 +43,6 @@ def input_char(
43
43
 
44
44
 
45
45
  if __name__ == "__main__":
46
- input_char("Input Char : ")
46
+ input_char("Input char : ")
47
+ input_char("Input char : ", default='Y')
48
+ input_char("Input Char without print : ", echo_char=False)
@@ -3,9 +3,14 @@ def print_to_last_line(text: str):
3
3
  Melakukan print ke konsol tetapi akan menimpa baris terakhir.
4
4
  Berguna untuk memberikan progress secara interaktif.
5
5
 
6
- ```python
6
+ ```py
7
7
  c = input("masukkan apa saja : ")
8
8
  print_to_last_line(f"masukkan apa saja : {c} [ok]")
9
9
  ```
10
10
  """
11
11
  print(f"\033[F{text}")
12
+
13
+
14
+ if __name__ == "__main__":
15
+ c = input("masukkan apa saja : ")
16
+ print_to_last_line(f"masukkan apa saja : {c} [ok]")
@@ -1,8 +1,9 @@
1
- import subprocess
1
+ # import subprocess
2
2
  import time
3
3
 
4
4
  from ..ibuiltins.get_filemtime import get_filemtime
5
5
  from ..iconsole.print_log import print_log
6
+ from ..iconsole.console_run import console_run
6
7
 
7
8
 
8
9
  def auto_reload(filename):
@@ -13,7 +14,8 @@ def auto_reload(filename):
13
14
  Jalankan kode ini di terminal console.
14
15
 
15
16
  ```py
16
- python -m pypipr.iflow.auto_reload file_name.py
17
+ if __name__ == "__main__":
18
+ auto_reload("file_name.py")
17
19
  ```
18
20
  """
19
21
  mtime = get_filemtime(filename)
@@ -24,17 +26,11 @@ def auto_reload(filename):
24
26
  print_log("Start")
25
27
  while True:
26
28
  last_mtime = mtime
27
- subprocess.run(cmd, shell=True)
29
+ console_run(cmd, print_info=False)
30
+ # subprocess.run(cmd, shell=True)
28
31
  while mtime == last_mtime:
29
32
  time.sleep(1)
30
33
  mtime = get_filemtime(filename)
31
34
  print_log("Reload")
32
35
  except KeyboardInterrupt:
33
36
  print_log("Stop")
34
-
35
-
36
- if __name__ == "__main__":
37
- from pypipr.ifunctions.iargv import iargv
38
-
39
- if f := iargv(1):
40
- auto_reload(f)
@@ -2,6 +2,16 @@ import sys
2
2
 
3
3
 
4
4
  def iargv(key: int, cast=None, on_error=None):
5
+ """
6
+ Mengambil parameter input dari terminal tanpa menimbulkan error
7
+ apabila parameter kosong.
8
+ Parameter yg berupa string juga dapat diubah menggunakan cast.
9
+
10
+ ```python
11
+ if __name__ == "__main__":
12
+ print(iargv(1, cast=int, on_error=100))
13
+ ```
14
+ """
5
15
  try:
6
16
  v = sys.argv[key]
7
17
  if cast:
pypipr/ifunctions/ienv.py CHANGED
@@ -9,6 +9,11 @@ def ienv(on_windows=None, on_linux=None):
9
9
  ```py
10
10
  getch = __import__(ienv(on_windows="msvcrt", on_linux="getch"))
11
11
 
12
+
13
+ f = ienv(on_windows=fwin, on_linux=flin)
14
+ f()
15
+
16
+
12
17
  inherit = ienv(
13
18
  on_windows=[BaseForWindows, BaseEnv, object],
14
19
  on_linux=[SpecialForLinux, BaseForLinux, BaseEnv, object]
pypipr/terminal.py CHANGED
@@ -2,7 +2,9 @@ import pypipr
2
2
 
3
3
 
4
4
  def main():
5
- m = [x for x in dir(pypipr) if not x.startswith("__")]
5
+ m = pypipr.ivars(pypipr)
6
+ m = m["module"] | m["variable"] | m["class"] | m["function"]
7
+ m = [x for x in m]
6
8
  a = pypipr.iargv(1)
7
9
  pd = False
8
10
  while isinstance(m, list):
@@ -16,11 +18,11 @@ def main():
16
18
  pypipr.exit_if_empty(len(a))
17
19
 
18
20
  if a.isdigit():
19
- m = pypipr.get_from_index(m, int(a))
21
+ m = pypipr.get_by_index(m, int(a))
20
22
  else:
21
23
  m = [v for v in m if v.__contains__(a)]
22
24
  if len(m) == 1:
23
- m = pypipr.get_from_index(m, 0)
25
+ m = pypipr.get_by_index(m, 0)
24
26
  pypipr.exit_if_empty(m)
25
27
  a = None if a != m else m
26
28
 
@@ -54,9 +56,9 @@ def main():
54
56
  color=pypipr.colorama.Fore.RED,
55
57
  )
56
58
 
57
- # print()
58
59
  f = f(**k)
59
60
  else:
61
+ # variable
60
62
  pass
61
63
 
62
64
  pypipr.iprint(f)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.85
3
+ Version: 1.0.87
4
4
  Summary: The Python Package Index Project
5
5
  Author: ufiapjj
6
6
  Author-email: ufiapjj@gmail.com
@@ -94,7 +94,7 @@ print(list(chunk_array(arr, 5)))
94
94
 
95
95
  Output:
96
96
  ```py
97
- <generator object chunk_array at 0x79670d4440>
97
+ <generator object chunk_array at 0x71a222c340>
98
98
  [[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
99
99
  ```
100
100
 
@@ -145,9 +145,9 @@ print(datetime_now("Etc/GMT+7"))
145
145
 
146
146
  Output:
147
147
  ```py
148
- 2024-04-23 18:02:50.654905+07:00
149
- 2024-04-23 11:02:50.655231+00:00
150
- 2024-04-23 04:02:50.655801-07:00
148
+ 2024-04-23 19:40:01.672005+07:00
149
+ 2024-04-23 12:40:01.672850+00:00
150
+ 2024-04-23 05:40:01.674685-07:00
151
151
  ```
152
152
 
153
153
  ## dict_first
@@ -214,7 +214,24 @@ print(filter_empty(var))
214
214
 
215
215
  Output:
216
216
  ```py
217
- <generator object filter_empty at 0x7967056e30>
217
+ <generator object filter_empty at 0x71a21a2f20>
218
+ ```
219
+
220
+ ## get_by_index
221
+
222
+ `get_by_index(obj, index, on_error=None)`
223
+
224
+ Mendapatkan value dari object berdasarkan indexnya.
225
+ Jika error out of range maka akan mengembalikan on_error.
226
+
227
+ ```python
228
+ l = [1, 3, 5]
229
+ print(get_by_index(l, 7))
230
+ ```
231
+
232
+ Output:
233
+ ```py
234
+ None
218
235
  ```
219
236
 
220
237
  ## get_class_method
@@ -243,8 +260,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
243
260
 
244
261
  Output:
245
262
  ```py
246
- <generator object get_class_method at 0x7967057100>
247
- [<function ExampleGetClassMethod.a at 0x79670313a0>, <function ExampleGetClassMethod.b at 0x79779b6c00>, <function ExampleGetClassMethod.c at 0x79670f1580>, <function ExampleGetClassMethod.d at 0x79670f1620>]
263
+ <generator object get_class_method at 0x71a21a31f0>
264
+ [<function ExampleGetClassMethod.a at 0x71b1798540>, <function ExampleGetClassMethod.b at 0x71b132ec00>, <function ExampleGetClassMethod.c at 0x71a223d580>, <function ExampleGetClassMethod.d at 0x71a223d620>]
248
265
  ```
249
266
 
250
267
  ## get_filemtime
@@ -277,23 +294,6 @@ Output:
277
294
  465
278
295
  ```
279
296
 
280
- ## get_from_index
281
-
282
- `get_from_index(obj, index, on_error=None)`
283
-
284
- Mendapatkan value dari object berdasarkan indexnya.
285
- Jika error out of range maka akan mengembalikan on_error.
286
-
287
- ```python
288
- l = [1, 3, 5]
289
- print(get_from_index(l, 7))
290
- ```
291
-
292
- Output:
293
- ```py
294
- None
295
- ```
296
-
297
297
  ## is_empty
298
298
 
299
299
  `is_empty(variable, empty=[None, False, 0, 0, '0', '', '-0', '\n', '\t', set(), {}, [], ()])`
@@ -386,7 +386,7 @@ Output:
386
386
  'idjango': <module 'pypipr.idjango' from '/data/data/com.termux/files/home/pypipr/pypipr/idjango/__init__.py'>,
387
387
  'iengineering': <module 'pypipr.iengineering' from '/data/data/com.termux/files/home/pypipr/pypipr/iengineering/__init__.py'>,
388
388
  'ifunctions': <module 'pypipr.ifunctions' from '/data/data/com.termux/files/home/pypipr/pypipr/ifunctions/__init__.py'>,
389
- 'iflow': <module 'pypipr.iflow' (<_frozen_importlib_external.NamespaceLoader object at 0x7974167690>)>,
389
+ 'iflow': <module 'pypipr.iflow' (<_frozen_importlib_external.NamespaceLoader object at 0x71aab772d0>)>,
390
390
  'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
391
391
  'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
392
392
  'datetime': <module 'datetime' from '/data/data/com.termux/files/usr/lib/python3.11/datetime.py'>,
@@ -423,64 +423,64 @@ Output:
423
423
  'PintUregQuantity': <class 'pint.Quantity'>},
424
424
  'variable': {'LINUX': True,
425
425
  'WINDOWS': False,
426
- 'PintUreg': <pint.registry.UnitRegistry object at 0x7974d973d0>},
427
- 'function': {'avg': <function avg at 0x79779b6d40>,
428
- 'basename': <function basename at 0x7977986a20>,
429
- 'chunk_array': <function chunk_array at 0x7974cd1120>,
430
- 'create_folder': <function create_folder at 0x7974cd1300>,
431
- 'datetime_from_string': <function datetime_from_string at 0x7974cd14e0>,
432
- 'datetime_now': <function datetime_now at 0x7974d7a160>,
433
- 'dict_first': <function dict_first at 0x7974d7a0c0>,
434
- 'dirname': <function dirname at 0x7974d7a020>,
435
- 'exit_if_empty': <function exit_if_empty at 0x7974d534c0>,
436
- 'filter_empty': <function filter_empty at 0x7974d79d00>,
437
- 'get_class_method': <function get_class_method at 0x7974d798a0>,
438
- 'get_filemtime': <function get_filemtime at 0x7974d79800>,
439
- 'get_filesize': <function get_filesize at 0x7974d79620>,
440
- 'get_from_index': <function get_from_index at 0x7974d794e0>,
441
- 'is_empty': <function is_empty at 0x7974d79da0>,
442
- 'is_iterable': <function is_iterable at 0x7974d7a200>,
443
- 'is_valid_url': <function is_valid_url at 0x7974d793a0>,
444
- 'ivars': <function ivars at 0x7974d79300>,
445
- 'password_generator': <function password_generator at 0x7974d791c0>,
446
- 'random_bool': <function random_bool at 0x7974d78d60>,
447
- 'set_timeout': <function set_timeout at 0x7974d7b7e0>,
448
- 'sets_ordered': <function sets_ordered at 0x7974d7b920>,
449
- 'str_cmp': <function str_cmp at 0x7974d7b9c0>,
450
- 'to_str': <function to_str at 0x7974d79bc0>,
451
- 'choices': <function choices at 0x7974d7ba60>,
452
- 'console_run': <function console_run at 0x7974d7bce0>,
453
- 'input_char': <function input_char at 0x7974d7be20>,
454
- 'log': <function log at 0x7974d9c040>,
455
- 'print_colorize': <function print_colorize at 0x7974d9c0e0>,
456
- 'print_dir': <function print_dir at 0x7974d9c220>,
457
- 'print_log': <function print_log at 0x7974d7bec0>,
458
- 'print_to_last_line': <function print_to_last_line at 0x7974d7bc40>,
459
- 'text_colorize': <function text_colorize at 0x7974d7bd80>,
460
- 'batch_calculate': <function batch_calculate at 0x796af39580>,
461
- 'batchmaker': <function batchmaker at 0x796af1e980>,
462
- 'calculate': <function calculate at 0x796af3a2a0>,
463
- 'auto_reload': <function auto_reload at 0x796af3a480>,
464
- 'github_pull': <function github_pull at 0x796af3a020>,
465
- 'github_push': <function github_push at 0x796af3a700>,
466
- 'github_user': <function github_user at 0x796af3aa20>,
467
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x796ac71f80>,
468
- 'poetry_publish': <function poetry_publish at 0x796ac72160>,
469
- 'poetry_update_version': <function poetry_update_version at 0x796ac96980>,
470
- 'iargv': <function iargv at 0x79672bc0e0>,
471
- 'idumps': <function idumps at 0x79672bc220>,
472
- 'idumps_html': <function idumps_html at 0x7967320c20>,
473
- 'ienv': <function ienv at 0x79672bc360>,
474
- 'iexec': <function iexec at 0x7967320ea0>,
475
- 'ijoin': <function ijoin at 0x796ac71ee0>,
476
- 'iloads': <function iloads at 0x7967320f40>,
477
- 'iloads_html': <function iloads_html at 0x79673211c0>,
478
- 'iopen': <function iopen at 0x796ac72200>,
479
- 'iprint': <function iprint at 0x79672bc180>,
480
- 'irange': <function irange at 0x796af3a3e0>,
481
- 'ireplace': <function ireplace at 0x7967321080>,
482
- 'iscandir': <function iscandir at 0x7967322e80>,
483
- 'isplit': <function isplit at 0x7967322f20>}}
426
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x71ab5d0750>},
427
+ 'function': {'avg': <function avg at 0x71b132ed40>,
428
+ 'basename': <function basename at 0x71b12fe8e0>,
429
+ 'chunk_array': <function chunk_array at 0x71ae535120>,
430
+ 'create_folder': <function create_folder at 0x71ae535300>,
431
+ 'datetime_from_string': <function datetime_from_string at 0x71ae5354e0>,
432
+ 'datetime_now': <function datetime_now at 0x71ae5dd620>,
433
+ 'dict_first': <function dict_first at 0x71ae5dd580>,
434
+ 'dirname': <function dirname at 0x71ae5dd4e0>,
435
+ 'exit_if_empty': <function exit_if_empty at 0x71ae5b74c0>,
436
+ 'filter_empty': <function filter_empty at 0x71ae5dd1c0>,
437
+ 'get_by_index': <function get_by_index at 0x71ae5dcea0>,
438
+ 'get_class_method': <function get_class_method at 0x71ae5dccc0>,
439
+ 'get_filemtime': <function get_filemtime at 0x71ae5dcb80>,
440
+ 'get_filesize': <function get_filesize at 0x71ae5dc9a0>,
441
+ 'is_empty': <function is_empty at 0x71ae5dd260>,
442
+ 'is_iterable': <function is_iterable at 0x71ae5dcfe0>,
443
+ 'is_valid_url': <function is_valid_url at 0x71ae5dc860>,
444
+ 'ivars': <function ivars at 0x71ae5dc7c0>,
445
+ 'password_generator': <function password_generator at 0x71ae5dc680>,
446
+ 'random_bool': <function random_bool at 0x71ae5dc400>,
447
+ 'set_timeout': <function set_timeout at 0x71ae5df7e0>,
448
+ 'sets_ordered': <function sets_ordered at 0x71ae5df920>,
449
+ 'str_cmp': <function str_cmp at 0x71ae5df9c0>,
450
+ 'to_str': <function to_str at 0x71ae5dcf40>,
451
+ 'choices': <function choices at 0x71ae5dfa60>,
452
+ 'console_run': <function console_run at 0x71ae5dfce0>,
453
+ 'input_char': <function input_char at 0x71ae5dfe20>,
454
+ 'log': <function log at 0x71ae600040>,
455
+ 'print_colorize': <function print_colorize at 0x71ae6000e0>,
456
+ 'print_dir': <function print_dir at 0x71ae600220>,
457
+ 'print_log': <function print_log at 0x71ae5dfec0>,
458
+ 'print_to_last_line': <function print_to_last_line at 0x71ae5dfc40>,
459
+ 'text_colorize': <function text_colorize at 0x71ae5dfd80>,
460
+ 'batch_calculate': <function batch_calculate at 0x71aab89580>,
461
+ 'batchmaker': <function batchmaker at 0x71aab66980>,
462
+ 'calculate': <function calculate at 0x71aab8a2a0>,
463
+ 'auto_reload': <function auto_reload at 0x71aab8a480>,
464
+ 'github_pull': <function github_pull at 0x71aab8a020>,
465
+ 'github_push': <function github_push at 0x71aab8a700>,
466
+ 'github_user': <function github_user at 0x71aab8aa20>,
467
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x71aa8b9f80>,
468
+ 'poetry_publish': <function poetry_publish at 0x71aa8ba160>,
469
+ 'poetry_update_version': <function poetry_update_version at 0x71aa8e2980>,
470
+ 'iargv': <function iargv at 0x71a24040e0>,
471
+ 'idumps': <function idumps at 0x71a2404220>,
472
+ 'idumps_html': <function idumps_html at 0x71a2468c20>,
473
+ 'ienv': <function ienv at 0x71a2404360>,
474
+ 'iexec': <function iexec at 0x71a2468ea0>,
475
+ 'ijoin': <function ijoin at 0x71aa8b9ee0>,
476
+ 'iloads': <function iloads at 0x71a2468f40>,
477
+ 'iloads_html': <function iloads_html at 0x71a24691c0>,
478
+ 'iopen': <function iopen at 0x71aa8ba200>,
479
+ 'iprint': <function iprint at 0x71a2404180>,
480
+ 'irange': <function irange at 0x71aab8a3e0>,
481
+ 'ireplace': <function ireplace at 0x71a2469080>,
482
+ 'iscandir': <function iscandir at 0x71a246ae80>,
483
+ 'isplit': <function isplit at 0x71a246af20>}}
484
484
  ```
485
485
 
486
486
  ## password_generator
@@ -495,7 +495,7 @@ print(password_generator())
495
495
 
496
496
  Output:
497
497
  ```py
498
- f]@vt^%Z
498
+ }0z{ynPr
499
499
  ```
500
500
 
501
501
  ## random_bool
@@ -535,7 +535,7 @@ x.cancel()
535
535
 
536
536
  Output:
537
537
  ```py
538
- <Timer(Thread-2, started 521401433328)>
538
+ <Timer(Thread-2, started 488028224752)>
539
539
  menghentikan timeout 7
540
540
  ```
541
541
 
@@ -553,7 +553,7 @@ print(list(sets_ordered(array)))
553
553
 
554
554
  Output:
555
555
  ```py
556
- <generator object sets_ordered at 0x79670f8110>
556
+ <generator object sets_ordered at 0x71a224c110>
557
557
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
558
558
  ```
559
559
 
@@ -707,7 +707,7 @@ Output:
707
707
  __enter__ : https:/www.google.com
708
708
  __fspath__ : https:/www.google.com
709
709
  __getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
710
- __hash__ : 4247590312272611726
710
+ __hash__ : 2592897393254277582
711
711
  __init__ : None
712
712
  __init_subclass__ : None
713
713
  __module__ : pathlib
@@ -720,8 +720,8 @@ Output:
720
720
  _cached_cparts : ['https:', 'www.google.com']
721
721
  _cparts : ['https:', 'www.google.com']
722
722
  _drv :
723
- _flavour : <pathlib._PosixFlavour object at 0x7974d4c250>
724
- _hash : 4247590312272611726
723
+ _flavour : <pathlib._PosixFlavour object at 0x71ae5b0650>
724
+ _hash : 2592897393254277582
725
725
  _parts : ['https:', 'www.google.com']
726
726
  _root :
727
727
  _str : https:/www.google.com
@@ -743,7 +743,7 @@ Output:
743
743
  is_reserved : False
744
744
  is_socket : False
745
745
  is_symlink : False
746
- iterdir : <generator object Path.iterdir at 0x79670dcc80>
746
+ iterdir : <generator object Path.iterdir at 0x71a2220900>
747
747
  joinpath : https:/www.google.com
748
748
  name : www.google.com
749
749
  parent : https:
@@ -779,16 +779,11 @@ Output:
779
779
  Melakukan print ke konsol tetapi akan menimpa baris terakhir.
780
780
  Berguna untuk memberikan progress secara interaktif.
781
781
 
782
- ```python
782
+ ```py
783
783
  c = input("masukkan apa saja : ")
784
784
  print_to_last_line(f"masukkan apa saja : {c} [ok]")
785
785
  ```
786
786
 
787
- Output:
788
- ```py
789
- masukkan apa saja : masukkan apa saja : [ok]
790
- ```
791
-
792
787
  ## text_colorize
793
788
 
794
789
  `text_colorize(text, color='\x1b[32m', bright='\x1b[1m', color_end='\x1b[0m')`
@@ -815,7 +810,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
815
810
 
816
811
  Output:
817
812
  ```py
818
- <generator object batch_calculate at 0x7967057c40>
813
+ <generator object batch_calculate at 0x71a21a3b50>
819
814
  [('1 m ** 1', <Quantity(1, 'meter')>), ('1 m ** 2', <Quantity(1, 'meter ** 2')>), ('1 m ** 3', <Quantity(1, 'meter ** 3')>), ('2 m ** 1', <Quantity(2, 'meter')>), ('2 m ** 2', <Quantity(2, 'meter ** 2')>), ('2 m ** 3', <Quantity(2, 'meter ** 3')>), ('3 m ** 1', <Quantity(3, 'meter')>), ('3 m ** 2', <Quantity(3, 'meter ** 2')>), ('3 m ** 3', <Quantity(3, 'meter ** 3')>), ('4 m ** 1', <Quantity(4, 'meter')>), ('4 m ** 2', <Quantity(4, 'meter ** 2')>), ('4 m ** 3', <Quantity(4, 'meter ** 3')>), ('5 m ** 1', <Quantity(5, 'meter')>), ('5 m ** 2', <Quantity(5, 'meter ** 2')>), ('5 m ** 3', <Quantity(5, 'meter ** 3')>), ('6 m ** 1', <Quantity(6, 'meter')>), ('6 m ** 2', <Quantity(6, 'meter ** 2')>), ('6 m ** 3', <Quantity(6, 'meter ** 3')>), ('7 m ** 1', <Quantity(7, 'meter')>), ('7 m ** 2', <Quantity(7, 'meter ** 2')>), ('7 m ** 3', <Quantity(7, 'meter ** 3')>), ('8 m ** 1', <Quantity(8, 'meter')>), ('8 m ** 2', <Quantity(8, 'meter ** 2')>), ('8 m ** 3', <Quantity(8, 'meter ** 3')>), ('9 m ** 1', <Quantity(9, 'meter')>), ('9 m ** 2', <Quantity(9, 'meter ** 2')>), ('9 m ** 3', <Quantity(9, 'meter ** 3')>), ('10 m ** 1', <Quantity(10, 'meter')>), ('10 m ** 2', <Quantity(10, 'meter ** 2')>), ('10 m ** 3', <Quantity(10, 'meter ** 3')>)]
820
815
  ```
821
816
 
@@ -840,7 +835,7 @@ print(list(batchmaker(s)))
840
835
 
841
836
  Output:
842
837
  ```py
843
- <generator object batchmaker at 0x79670ec160>
838
+ <generator object batchmaker at 0x71a2238040>
844
839
  ['Urutan 1 dan 10 dan j dan Z saja.', 'Urutan 1 dan 10 dan j dan K saja.', 'Urutan 1 dan 10 dan k dan Z saja.', 'Urutan 1 dan 10 dan k dan K saja.', 'Urutan 1 dan 9 dan j dan Z saja.', 'Urutan 1 dan 9 dan j dan K saja.', 'Urutan 1 dan 9 dan k dan Z saja.', 'Urutan 1 dan 9 dan k dan K saja.', 'Urutan 4 dan 10 dan j dan Z saja.', 'Urutan 4 dan 10 dan j dan K saja.', 'Urutan 4 dan 10 dan k dan Z saja.', 'Urutan 4 dan 10 dan k dan K saja.', 'Urutan 4 dan 9 dan j dan Z saja.', 'Urutan 4 dan 9 dan j dan K saja.', 'Urutan 4 dan 9 dan k dan Z saja.', 'Urutan 4 dan 9 dan k dan K saja.']
845
840
  ```
846
841
 
@@ -889,7 +884,8 @@ Pastikan kode aman untuk dijalankan.
889
884
  Jalankan kode ini di terminal console.
890
885
 
891
886
  ```py
892
- python -m pypipr.iflow.auto_reload file_name.py
887
+ if __name__ == "__main__":
888
+ auto_reload("file_name.py")
893
889
  ```
894
890
 
895
891
  ## github_pull
@@ -958,6 +954,19 @@ poetry_update_version()
958
954
 
959
955
  `iargv(key: int, cast=None, on_error=None)`
960
956
 
957
+ Mengambil parameter input dari terminal tanpa menimbulkan error
958
+ apabila parameter kosong.
959
+ Parameter yg berupa string juga dapat diubah menggunakan cast.
960
+
961
+ ```python
962
+ if __name__ == "__main__":
963
+ print(iargv(1, cast=int, on_error=100))
964
+ ```
965
+
966
+ Output:
967
+ ```py
968
+ ```
969
+
961
970
  ## idumps
962
971
 
963
972
  `idumps(data, syntax='yaml', indent=4)`
@@ -1136,6 +1145,11 @@ Mengambalikan hasil berdasarkan environment dimana program dijalankan
1136
1145
  ```py
1137
1146
  getch = __import__(ienv(on_windows="msvcrt", on_linux="getch"))
1138
1147
 
1148
+
1149
+ f = ienv(on_windows=fwin, on_linux=flin)
1150
+ f()
1151
+
1152
+
1139
1153
  inherit = ienv(
1140
1154
  on_windows=[BaseForWindows, BaseEnv, object],
1141
1155
  on_linux=[SpecialForLinux, BaseForLinux, BaseEnv, object]
@@ -1185,7 +1199,7 @@ print(ijoin(10, ' '))
1185
1199
 
1186
1200
  Output:
1187
1201
  ```py
1188
- weq, asd, dfs, qweqw
1202
+ qweqw, dfs, weq, asd
1189
1203
  ,ini,path,seperti,url,
1190
1204
  ini,path,seperti,url
1191
1205
  <li>satu</li>
@@ -1249,12 +1263,11 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
1249
1263
 
1250
1264
  Output:
1251
1265
  ```py
1252
- Timeout 3
1253
1266
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1254
1267
  [['Harga Emas Hari Ini - Selasa, 23 April 2024'],
1255
- ['Spot Emas USD↓2.303,92 (-26,21) / oz',
1268
+ ['Spot Emas USD↓2.307,11 (-23,02) / oz',
1256
1269
  'Kurs IDR↓16.224,00 (-56,00) / USD',
1257
- 'Emas IDR↓1.201.756 (-17.867) / gr'],
1270
+ 'Emas IDR↓1.203.420 (-16.203) / gr'],
1258
1271
  ['LM Antam (Jual)↓1.325.000 (-18.000) / gr',
1259
1272
  'LM Antam (Beli)↓1.223.000 (-15.000) / gr']],
1260
1273
  [['Harga Emas Hari Ini'],
@@ -1325,10 +1338,10 @@ Timeout 3
1325
1338
  'Update harga LM Pegadaian :31 Agustus 2023']],
1326
1339
  [['Spot Harga Emas Hari Ini (Market Open)'],
1327
1340
  ['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
1328
- ['Ounce\xa0(oz)', '2.303,92 (-26,21)', '16.224,00 (-56,00)', '37.378.798'],
1329
- ['Gram\xa0(gr)', '74,07', '16.224,00', '1.201.756 (-17.867)'],
1330
- ['Kilogram\xa0(kg)', '74.072,75', '16.224,00', '1.201.756.265'],
1331
- ['Update harga emas :23 April 2024, pukul 18:02Update kurs :23 April 2024, '
1341
+ ['Ounce\xa0(oz)', '2.307,11 (-23,02)', '16.224,00 (-56,00)', '37.430.553'],
1342
+ ['Gram\xa0(gr)', '74,18', '16.224,00', '1.203.420 (-16.203)'],
1343
+ ['Kilogram\xa0(kg)', '74.175,31', '16.224,00', '1.203.420.213'],
1344
+ ['Update harga emas :23 April 2024, pukul 19:39Update kurs :23 April 2024, '
1332
1345
  'pukul 13:10']],
1333
1346
  [['Gram', 'UBS Gold 99.99%'],
1334
1347
  ['Jual', 'Beli'],
@@ -1374,36 +1387,36 @@ Timeout 3
1374
1387
  ['Unit', 'USD', 'IDR'],
1375
1388
  ['Angka', '+/-', 'Angka', '+/-'],
1376
1389
  ['Hari Ini', 'Kurs', '', '', '16.280', '-56-0,34%'],
1377
- ['oz', '2.330,13', '-26,21-1,12%', '37.934.516', '-555.718-1,46%'],
1378
- ['gr', '74,92', '-0,84-1,12%', '1.219.623', '-17.867-1,46%'],
1390
+ ['oz', '2.330,13', '-23,02-0,99%', '37.934.516', '-503.964-1,33%'],
1391
+ ['gr', '74,92', '-0,74-0,99%', '1.219.623', '-16.203-1,33%'],
1379
1392
  ['30 Hari', 'Kurs', '', '', '15.662', '+562+3,59%'],
1380
- ['oz', '2.165,64', '+138,28+6,39%', '33.918.254', '+3.460.544+10,20%'],
1381
- ['gr', '69,63', '+4,45+6,39%', '1.090.497', '+111.259+10,20%'],
1393
+ ['oz', '2.165,64', '+141,47+6,53%', '33.918.254', '+3.512.299+10,36%'],
1394
+ ['gr', '69,63', '+4,55+6,53%', '1.090.497', '+112.923+10,36%'],
1382
1395
  ['2 Bulan', 'Kurs', '', '', '15.630', '+594+3,80%'],
1383
- ['oz', '2.038,19', '+265,73+13,04%', '31.856.910', '+5.521.888+17,33%'],
1384
- ['gr', '65,53', '+8,54+13,04', '1.024.223', '+177.533+17,33%'],
1396
+ ['oz', '2.038,19', '+268,92+13,19%', '31.856.910', '+5.573.643+17,50%'],
1397
+ ['gr', '65,53', '+8,65+13,19', '1.024.223', '+179.197+17,50%'],
1385
1398
  ['6 Bulan', 'Kurs', '', '', '15.871', '+353+2,22%'],
1386
- ['oz', '1.984,00', '+319,92+16,13%', '31.488.064', '+5.890.734+18,71%'],
1387
- ['gr', '63,79', '+10,29+16,13%', '1.012.365', '+189.391+18,71%'],
1399
+ ['oz', '1.984,00', '+323,11+16,29%', '31.488.064', '+5.942.489+18,87%'],
1400
+ ['gr', '63,79', '+10,39+16,29%', '1.012.365', '+191.055+18,87%'],
1388
1401
  ['1 Tahun', 'Kurs', '', '', '15.731', '+493+3,13%'],
1389
- ['oz', '1.823,86', '+480,06+26,32%', '28.691.142', '+8.687.656+30,28%'],
1390
- ['gr', '58,64', '+15,43+26,32%', '922.442', '+279.315+30,28%'],
1402
+ ['oz', '1.823,86', '+483,25+26,50%', '28.691.142', '+8.739.411+30,46%'],
1403
+ ['gr', '58,64', '+15,54+26,50%', '922.442', '+280.979+30,46%'],
1391
1404
  ['2 Tahun', 'Kurs', '', '', '14.348', '+1.876+13,07%'],
1392
- ['oz', '1.931,96', '+371,96+19,25%', '27.719.762', '+9.659.036+34,85%'],
1393
- ['gr', '62,11', '+11,96+19,25%', '891.211', '+310.545+34,85%'],
1405
+ ['oz', '1.931,96', '+375,15+19,42%', '27.719.762', '+9.710.791+35,03%'],
1406
+ ['gr', '62,11', '+12,06+19,42%', '891.211', '+312.209+35,03%'],
1394
1407
  ['3 Tahun', 'Kurs', '', '', '14.530', '+1.694+11,66%'],
1395
- ['oz', '1.777,11', '+526,81+29,64%', '25.821.408', '+11.557.390+44,76%'],
1396
- ['gr', '57,14', '+16,94+29,64%', '830.178', '+371.579+44,76%'],
1408
+ ['oz', '1.777,11', '+530,00+29,82%', '25.821.408', '+11.609.144+44,96%'],
1409
+ ['gr', '57,14', '+17,04+29,82%', '830.178', '+373.243+44,96%'],
1397
1410
  ['5 Tahun', 'Kurs', '', '', '14.154', '+2.070+14,62%'],
1398
- ['oz', '1.277,64', '+1.026,28+80,33%', '18.083.717', '+19.295.082+106,70%'],
1399
- ['gr', '41,08', '+33,00+80,33%', '581.405', '+620.351+106,70%']])
1411
+ ['oz', '1.277,64', '+1.029,47+80,58%', '18.083.717', '+19.346.836+106,98%'],
1412
+ ['gr', '41,08', '+33,10+80,58%', '581.405', '+622.015+106,98%']])
1400
1413
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1401
1414
  [[''],
1402
1415
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1403
- ['USD', '74,07↓', '-0,85-1,13%'],
1404
- ['KURS', '16.210,30↓', '-36,05-0,22%'],
1405
- ['IDR', '1.200.741,47↓', '-16.360,65-1,34%'],
1406
- ['Selasa, 23 April 2024 18:02']],
1416
+ ['USD', '74,33↓', '-0,59-0,79%'],
1417
+ ['KURS', '16.202,35↓', '-44,00-0,27%'],
1418
+ ['IDR', '1.204.293,89↓', '-12.808,23-1,05%'],
1419
+ ['Selasa, 23 April 2024 19:40']],
1407
1420
  [[''],
1408
1421
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1409
1422
  'Hari Ini',
@@ -1414,19 +1427,19 @@ Timeout 3
1414
1427
  '']],
1415
1428
  [['Pergerakkan Harga Emas 1 Gram'],
1416
1429
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1417
- ['USD', '74,92', '74,07 - 74,92', '74,50'],
1418
- ['KURS', '16.246,35', '16.210,30 - 16.246,35', '16.228,33'],
1419
- ['IDR', '1.217.102,12', '1.200.741,47 - 1.217.102,12', '1.208.921,80'],
1430
+ ['USD', '74,92', '74,33 - 74,92', '74,63'],
1431
+ ['KURS', '16.246,35', '16.202,35 - 16.246,35', '16.224,35'],
1432
+ ['IDR', '1.217.102,12', '1.204.293,89 - 1.217.102,12', '1.210.698,01'],
1420
1433
  [''],
1421
1434
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1422
- ['USD', '66,32', '64,07 - 77,14', '+7,75 (11,69%)'],
1423
- ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+820,20 (5,33%)'],
1424
- ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+180.011,94 (17,64%)'],
1435
+ ['USD', '66,32', '64,07 - 77,14', '+8,01 (12,08%)'],
1436
+ ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+812,25 (5,28%)'],
1437
+ ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+183.564,36 (17,98%)'],
1425
1438
  [''],
1426
1439
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1427
- ['USD', '63,76', '58,43 - 77,14', '+10,31 (16,17%)'],
1428
- ['KURS', '14.936,00', '14.669,40 - 16.307,80', '+1.274,30 (8,53%)'],
1429
- ['IDR', '952.339,68', '912.925,68 - 1.256.829,06', '+248.401,79 (26,08%)']])
1440
+ ['USD', '63,76', '58,43 - 77,14', '+10,57 (16,58%)'],
1441
+ ['KURS', '14.936,00', '14.669,40 - 16.307,80', '+1.266,35 (8,48%)'],
1442
+ ['IDR', '952.339,68', '912.925,68 - 1.256.829,06', '+251.954,21 (26,46%)']])
1430
1443
  ```
1431
1444
 
1432
1445
  ## iopen
@@ -1468,7 +1481,7 @@ Output:
1468
1481
  ```py
1469
1482
  8
1470
1483
  ['mana', 'aja']
1471
- [<Element a at 0x79670e3520>, <Element a at 0x7966f324e0>, <Element a at 0x7966f32580>, <Element a at 0x7966f325d0>, <Element a at 0x7966f32620>, <Element a at 0x7966f32670>, <Element a at 0x7966f326c0>, <Element a at 0x7966f32710>, <Element a at 0x7966f32760>, <Element a at 0x7966f327b0>, <Element a at 0x7966f32800>, <Element a at 0x7966f32850>, <Element a at 0x7966f328a0>, <Element a at 0x7966f328f0>, <Element a at 0x7966f32940>, <Element a at 0x7966f32990>, <Element a at 0x7966f329e0>, <Element a at 0x7966f32a30>]
1484
+ [<Element a at 0x71a222bed0>, <Element a at 0x71a22765d0>, <Element a at 0x71a2276670>, <Element a at 0x71a22766c0>, <Element a at 0x71a2276710>, <Element a at 0x71a2276760>, <Element a at 0x71a22767b0>, <Element a at 0x71a2276800>, <Element a at 0x71a2276850>, <Element a at 0x71a22768a0>, <Element a at 0x71a22768f0>, <Element a at 0x71a2276940>, <Element a at 0x71a2276990>, <Element a at 0x71a22769e0>, <Element a at 0x71a2276a30>, <Element a at 0x71a2276a80>, <Element a at 0x71a2276ad0>, <Element a at 0x71a2276b20>]
1472
1485
  False
1473
1486
  ```
1474
1487
 
@@ -1509,8 +1522,8 @@ print(list(irange(10, 5)))
1509
1522
 
1510
1523
  Output:
1511
1524
  ```py
1512
- <generator object irange at 0x79670ae9b0>
1513
- <generator object irange at 0x79670ae9b0>
1525
+ <generator object irange at 0x71a21feac0>
1526
+ <generator object irange at 0x71a21feac0>
1514
1527
  ['a', 'k', 'u']
1515
1528
  [1, 2, 3, 4, 5, 6, 7]
1516
1529
  [10, 9, 8, 7, 6, 5]
@@ -1553,7 +1566,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1553
1566
 
1554
1567
  Output:
1555
1568
  ```py
1556
- <generator object iscandir at 0x79670d4a40>
1569
+ <generator object iscandir at 0x71a222c940>
1557
1570
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1558
1571
  ```
1559
1572
 
@@ -1610,7 +1623,7 @@ print(ExampleComparePerformance().compare_performance())
1610
1623
 
1611
1624
  Output:
1612
1625
  ```py
1613
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x79670fc450>,
1626
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x71a2248450>,
1614
1627
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
1615
1628
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
1616
1629
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
@@ -1,4 +1,4 @@
1
- pypipr/__init__.py,sha256=FsM93LTf8DC06bEhL5rNa2KPKXn40qQgtktGIWmnNnY,3351
1
+ pypipr/__init__.py,sha256=9XhmVv5CAkIVnjDHUipVmU1-6ljUSE-YpyZKB18YLHY,3347
2
2
  pypipr/ibuiltins/ComparePerformance.py,sha256=fCATdlDgmgiz7QkQNLDMF9VweicesjOaTtfQeBRr64U,2229
3
3
  pypipr/ibuiltins/LINUX.py,sha256=p8OJwS9GCs50pz2UlcbUooPWSZgWmLI67PjcnzDTSWI,100
4
4
  pypipr/ibuiltins/RunParallel.py,sha256=BnMasZTnr2gUVVy9dOXePlL_-ud2rWkVPFL2i-sN7rg,7358
@@ -14,10 +14,10 @@ pypipr/ibuiltins/dict_first.py,sha256=X_pSaY0DLGZJSR2zJBa17yqbwAFLJrVpzb2gxR5wzZ
14
14
  pypipr/ibuiltins/dirname.py,sha256=rG3Y7EdOiY4gQo-BoYE_0C4XFKz3U9A1Ly4D28YaMDY,229
15
15
  pypipr/ibuiltins/exit_if_empty.py,sha256=2qUqmYPSkr1NtKPqIN7BAc-WGtcmPPAw8AdO8HirOv8,321
16
16
  pypipr/ibuiltins/filter_empty.py,sha256=wJH15cR-bz-pgtWvgkduWpUbIxG7d0R36u_ZGCDfQSI,543
17
+ pypipr/ibuiltins/get_by_index.py,sha256=wCJa8su5QZyZPA4UfEvR2nSEir0NfXcU0pxx2Lzpux8,335
17
18
  pypipr/ibuiltins/get_class_method.py,sha256=RThCReUbF0uAlU-n5u0ELuP5yUbFqcKFfShswh7mgqc,639
18
19
  pypipr/ibuiltins/get_filemtime.py,sha256=e8Glf4p9PJcL2yU8ZbrKOHYB-puaSNQsTS6Qhgp9F9s,227
19
20
  pypipr/ibuiltins/get_filesize.py,sha256=2RCjrdZvaBDCdessFj-h7gLi13rPe6IXJXZcAoywWIA,196
20
- pypipr/ibuiltins/get_from_index.py,sha256=Mylo_-BX637qXzcuXiJlmodGFQG1bWyphfIwaF6JSYY,339
21
21
  pypipr/ibuiltins/is_empty.py,sha256=eqsH6ATuuOLVVSpIsV_8zTBBibPrWjESu9LCMAv8YyY,683
22
22
  pypipr/ibuiltins/is_iterable.py,sha256=VCzLfFZyQO5qF2wFTVbuZIxyf4BVkflWiRQaOjd9kFs,922
23
23
  pypipr/ibuiltins/is_valid_url.py,sha256=g72vv4_9Zy8dtT0i1JvToRX-mgCzojQCBVHdO1KDwqo,1008
@@ -31,12 +31,12 @@ pypipr/ibuiltins/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,59
31
31
  pypipr/iconsole/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
32
  pypipr/iconsole/choices.py,sha256=Yd_ioeS6XMyUNg-f73KbkWdXaCzzvJ6PE9QcntDpH7I,1686
33
33
  pypipr/iconsole/console_run.py,sha256=vCJqDa1rExisqaFLNeWM-hnuXHfUfiYcyNAOJjldOHs,525
34
- pypipr/iconsole/input_char.py,sha256=m0OP4T_2rdOiTanq0y2CJZPBC1byYl7zQ_yAj5vu39w,922
34
+ pypipr/iconsole/input_char.py,sha256=oiB3ZI-MH8obmMjyPxN-3nUjRZF-Uu5DKBdu9c2eP-Y,1030
35
35
  pypipr/iconsole/log.py,sha256=aQ9DeFG03xIAUQYR4TiBdh80M6WvxDtNDTSjpKOSXHk,1041
36
36
  pypipr/iconsole/print_colorize.py,sha256=cubx_9U1H1peqwxhP1cUId8vhPUgGVqxCtc32YS4gdU,474
37
37
  pypipr/iconsole/print_dir.py,sha256=yCzy7ZF__euNIsf6AhzmI5bixyO-4m2OlKWOl37K3_8,930
38
38
  pypipr/iconsole/print_log.py,sha256=Oct2xfcMv_8iK2ySioQYrtlTYou6Cd671PqgPL9IGUE,282
39
- pypipr/iconsole/print_to_last_line.py,sha256=sdA1GPvgyrBy-LJbfHmtiOZFzrqtoK8LdLHvJ6IO2YY,318
39
+ pypipr/iconsole/print_to_last_line.py,sha256=Brkw5dPx3R820g-283lHQtXuPIETm4382OfALOD4HcA,437
40
40
  pypipr/iconsole/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
41
41
  pypipr/idjango/APIMixinView.py,sha256=ECROEfZpGcojFq1gMWaMLkF5jeft5dnR_5zO1b2RdNw,1093
42
42
  pypipr/idjango/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -46,7 +46,7 @@ pypipr/iengineering/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
46
46
  pypipr/iengineering/batch_calculate.py,sha256=GYJH84KlNlh1MDjUZDdKf7GKVZ81JS-sysjt9vtaaUE,695
47
47
  pypipr/iengineering/batchmaker.py,sha256=4pNoAjQsubHNJT6ZA6myKuPY_RBigKkEeV4mEgWWq2c,1277
48
48
  pypipr/iengineering/calculate.py,sha256=wzEbP8V1haM-JeIz85fBAuT2mgPc7uxQZ7wEuSUEXLc,805
49
- pypipr/iflow/auto_reload.py,sha256=fs5-MKiStSM78zljw_yxgqKFrPWfA8lmJR8zd3TE61w,974
49
+ pypipr/iflow/auto_reload.py,sha256=KxgOwyhLR01gLMWmIpUHULpTXbG8fLM1sVxoZJYtTCI,966
50
50
  pypipr/iflow/github_pull.py,sha256=ORoMehOoSNNrAjqB9TudvhKjZP5u2oaszhGctqHH3mM,243
51
51
  pypipr/iflow/github_push.py,sha256=140pmM3Q_v3ZAXS7gSunbNykNLm7d84Ab2r5gwl8Wzo,951
52
52
  pypipr/iflow/github_user.py,sha256=vP5dwiK8ETqEuQr5pCceYuDgD_l0e79tZOVpe3jLyy0,600
@@ -54,10 +54,10 @@ pypipr/iflow/pip_freeze_without_version.py,sha256=7R7WVs3bwedUhbJr1zFsMabfMYub5W
54
54
  pypipr/iflow/poetry_publish.py,sha256=2KxBOHTRgbf8R9Zqt6ys2Rx93S7TlPhlVJpz_7H3e-c,409
55
55
  pypipr/iflow/poetry_update_version.py,sha256=GMmXSlr926GgKqqXb1ruOUYlsN1uZ7789YgSY18P_-Q,622
56
56
  pypipr/ifunctions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
- pypipr/ifunctions/iargv.py,sha256=9RncEeIcsgLKtgjb22DSsbUW25C6DGLRzPGoVdSNTIA,220
57
+ pypipr/ifunctions/iargv.py,sha256=QcTbk2vnqQC686-2B0CFs8nBJADYygsBFGiUJpmnXQ4,503
58
58
  pypipr/ifunctions/idumps.py,sha256=-YMI6aZmRAMaiQOYXYDvuQLmJMCc4Z4tREEuuoVmFR4,748
59
59
  pypipr/ifunctions/idumps_html.py,sha256=gKngmLaxGQRip3XEiWEK2TvsVkjYhizapS_Tscqn1Ts,1423
60
- pypipr/ifunctions/ienv.py,sha256=E1WeugbIDyPcQcMI0dNl0RTV_fJxMGd49da-1XyKYIk,623
60
+ pypipr/ifunctions/ienv.py,sha256=-UadfUxrFAdkzoG3SGlJShJYbj9LHs0C3-niBDc_fhI,679
61
61
  pypipr/ifunctions/iexec.py,sha256=nK_WMRK2LnyZh9i7NpYii_bfDZUKfAsJ5PVf5ZrHuRo,465
62
62
  pypipr/ifunctions/ijoin.py,sha256=tgL-9UofF1gmRPzU6jCkd6X28EOzEUenlNi2cwZDOZk,2069
63
63
  pypipr/ifunctions/iloads.py,sha256=eyvSgqDxOXzU5dcPDT8cbtGtUIfjogxOqeQfwIhc92Q,638
@@ -69,8 +69,8 @@ pypipr/ifunctions/ireplace.py,sha256=RcVMXmbXH_cl4hXpTI5wnuzdPtkatpuZgYsZkfBLAJU
69
69
  pypipr/ifunctions/iscandir.py,sha256=U1zvRZrz--5Kge0JooQbY4kQN17bRt-8XR26ZFxUyoA,748
70
70
  pypipr/ifunctions/isplit.py,sha256=N2BiA_wVnrENYwokSzvo0CAiQWk3g7AnwuWFIUgevNM,383
71
71
  pypipr/pypipr.py.bak,sha256=HF-ehQd6BY8hm9fRkQHravLNrJRlI5g_AzbCc3dbikQ,1061
72
- pypipr/terminal.py,sha256=XhZz9lntVfRHEs6P7rOjJ688ukw_Xnrht8mbqcAR8QY,1745
73
- pypipr-1.0.85.dist-info/METADATA,sha256=m8yLjApAg6Z3YwCeH87ZR_jZJlLhC_T2mSJ1grxjuck,50320
74
- pypipr-1.0.85.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
75
- pypipr-1.0.85.dist-info/entry_points.txt,sha256=ikcrTRCn3jaySem1mM9uhYEPDq2PVOs48CyEqLUkY38,47
76
- pypipr-1.0.85.dist-info/RECORD,,
72
+ pypipr/terminal.py,sha256=4w-2p_Rudm_dNdfG-rkO24heVgKLrve4xVXiRpWxVcc,1800
73
+ pypipr-1.0.87.dist-info/METADATA,sha256=w81ZKzkao11qy7qVHKKVUY7Jx2X5x0qcKWG7mrbZFrE,50572
74
+ pypipr-1.0.87.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
75
+ pypipr-1.0.87.dist-info/entry_points.txt,sha256=ikcrTRCn3jaySem1mM9uhYEPDq2PVOs48CyEqLUkY38,47
76
+ pypipr-1.0.87.dist-info/RECORD,,