pypipr 1.0.120__py3-none-any.whl → 1.0.122__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/LINUX.py CHANGED
@@ -1,7 +1,7 @@
1
1
  import platform
2
2
 
3
+ """
4
+ True on linux
5
+ """
3
6
  LINUX = platform.system() == "Linux"
4
7
 
5
-
6
- if __name__ == "__main__":
7
- print(LINUX)
pypipr/RunParallel.py CHANGED
@@ -165,60 +165,3 @@ class RunParallel:
165
165
  for i in r:
166
166
  i.join()
167
167
  return (i.copy() for i in a)
168
-
169
-
170
- class ExampleRunParallel(RunParallel):
171
- z = "ini"
172
-
173
- def __init__(self) -> None:
174
- self.pop = random.randint(0, 100)
175
-
176
- def _set_property_here(self, v):
177
- self.prop = v
178
-
179
- def a(self, result: dict, q: queue.Queue):
180
- result["z"] = self.z
181
- result["pop"] = self.pop
182
- result["a"] = "a"
183
- q.put("from a 1")
184
- q.put("from a 2")
185
-
186
- def b(self, result: dict, q: queue.Queue):
187
- result["z"] = self.z
188
- result["pop"] = self.pop
189
- result["b"] = "b"
190
- result["q_get"] = q.get()
191
-
192
- def c(self, result: dict, q: queue.Queue):
193
- result["z"] = self.z
194
- result["pop"] = self.pop
195
- result["c"] = "c"
196
- result["q_get"] = q.get()
197
-
198
- async def d(self):
199
- print("hello")
200
- await asyncio.sleep(0)
201
- print("hello")
202
-
203
- result = {}
204
- result["z"] = self.z
205
- result["pop"] = self.pop
206
- result["d"] = "d"
207
- return result
208
-
209
- async def e(self):
210
- print("world")
211
- await asyncio.sleep(0)
212
- print("world")
213
-
214
- result = {}
215
- result["z"] = self.z
216
- result["pop"] = self.pop
217
- result["e"] = "e"
218
- return result
219
-
220
-
221
- if __name__ == "__main__":
222
- print(ExampleRunParallel().run_asyncio())
223
- print(ExampleRunParallel().run_multi_threading())
224
- print(ExampleRunParallel().run_multi_processing())
pypipr/WINDOWS.py CHANGED
@@ -1,6 +1,7 @@
1
1
  import platform
2
2
 
3
- WINDOWS = platform.system() == "Windows"
4
3
 
5
- if __name__ == "__main__":
6
- print(WINDOWS)
4
+ """
5
+ True on windows
6
+ """
7
+ WINDOWS = platform.system() == "Windows"
pypipr/auto_reload.py CHANGED
@@ -14,9 +14,7 @@ def auto_reload(filename):
14
14
  Jalankan kode ini di terminal console.
15
15
 
16
16
  ```py
17
- if __name__ == "__main__":
18
- auto_reload("file_name.py")
19
-
17
+ auto_reload("file_name.py")
20
18
  ```
21
19
 
22
20
  or run in terminal
pypipr/batch_calculate.py CHANGED
@@ -14,25 +14,8 @@ def batch_calculate(pattern):
14
14
  ```
15
15
  """
16
16
  patterns = batchmaker(pattern)
17
-
18
17
  for i in patterns:
19
18
  try:
20
19
  yield (i, calculate(i))
21
20
  except Exception:
22
21
  yield (i, None)
23
-
24
- # c = None
25
- # for i in patterns:
26
- # try:
27
- # c = calculate(i)
28
- # except Exception:
29
- # c = None
30
- # yield (i, c)
31
-
32
-
33
- if __name__ == "__main__":
34
- from ..ifunctions.iargv import iargv
35
- from ..ifunctions.iprint import iprint
36
-
37
- if i := iargv(1):
38
- iprint(batch_calculate(i))
pypipr/calculate.py CHANGED
@@ -27,9 +27,3 @@ def calculate(teks):
27
27
  """
28
28
  return PintUregQuantity(teks)
29
29
 
30
-
31
- if __name__ == "__main__":
32
- from ..ifunctions.iargv import iargv
33
-
34
- if i := iargv(1):
35
- print(i)
pypipr/choices.py CHANGED
@@ -40,21 +40,16 @@ def choices(daftar, contains=None, prompt="Choose : "):
40
40
  Memudahkan dalam membuat pilihan untuk user dalam tampilan console
41
41
 
42
42
  ```py
43
- a = choices("ini hanya satu pilihan")
44
- b = choices(
45
- {
46
- "sedan": "audi",
47
- "suv": "volvo",
48
- "truck": "tesla",
49
- },
50
- title="Car Model",
51
- prompt="Pilih Mobil : ",
52
- )
53
- c = choices(
54
- iscandir(recursive=False),
55
- title="List File dan Folder",
56
- prompt="Pilih File atau Folder : ",
43
+ var = {
44
+ "Pertama" : "Pilihan Pertama",
45
+ "Kedua" : "Pilihan Kedua",
46
+ "Ketiga" : "Pilihan Ketiga",
47
+ }
48
+ res = choices(
49
+ var,
50
+ prompt="Pilih dari dictionary : "
57
51
  )
52
+ print(res)
58
53
  ```
59
54
  """
60
55
  daftar = list(v for v in daftar)
pypipr/chr_to_int.py CHANGED
@@ -13,16 +13,3 @@ def chr_to_int(s, start=0, numbers="abcdefghijklmnopqrstuvwxyz"):
13
13
  for char in s:
14
14
  result = result * digit + numbers.index(char) + 1
15
15
  return result + start - 1
16
-
17
-
18
- if __name__ == "__main__":
19
- print(chr_to_int("z")) # Output: 25
20
- print(chr_to_int("aa")) # Output: 26
21
- print(chr_to_int("abc", numbers="abc")) # Output: 18
22
- for i in "abcdefghijklmnopqrstuvwxyz":
23
- print(chr_to_int(i, start=9))
24
-
25
-
26
-
27
-
28
-
pypipr/github_push.py CHANGED
@@ -28,7 +28,3 @@ def github_push(commit_msg=None):
28
28
  console_run("Menyimpan files", f'git commit -m "{msg}"')
29
29
  console_run("Mengirim files", "git push")
30
30
  print_log("Selesai Menjalankan Github Push")
31
-
32
-
33
- if __name__ == "__main__":
34
- github_push()
pypipr/github_user.py CHANGED
@@ -16,9 +16,3 @@ def github_user(email=None, name=None):
16
16
  )
17
17
  if name:
18
18
  console_run("Update Github User Name", f"git config --global user.name {name}")
19
-
20
-
21
- if __name__ == "__main__":
22
- from ..ifunctions.iargv import iargv
23
-
24
- github_user(iargv(1), iargv(2))
pypipr/iargv.py CHANGED
@@ -8,8 +8,7 @@ def iargv(key: int, cast=None, on_error=None):
8
8
  Parameter yg berupa string juga dapat diubah menggunakan cast.
9
9
 
10
10
  ```python
11
- if __name__ == "__main__":
12
- print(iargv(1, cast=int, on_error=100))
11
+ print(iargv(1, cast=int, on_error=100))
13
12
  ```
14
13
  """
15
14
  try:
@@ -20,7 +19,3 @@ def iargv(key: int, cast=None, on_error=None):
20
19
  return v
21
20
  except Exception:
22
21
  return on_error
23
-
24
-
25
- if __name__ == "__main__":
26
- print(sys.argv)
pypipr/input_char.py CHANGED
@@ -40,9 +40,3 @@ def input_char(
40
40
  if LINUX:
41
41
  return a
42
42
  raise Exception("Platform tidak didukung.")
43
-
44
-
45
- if __name__ == "__main__":
46
- input_char("Input char : ")
47
- input_char("Input char : ", default='Y')
48
- input_char("Input Char without print : ", echo_char=False)
pypipr/int_to_chr.py CHANGED
@@ -17,10 +17,3 @@ def int_to_chr(n, start=0, numbers="abcdefghijklmnopqrstuvwxyz"):
17
17
  result = numbers[n % digit] + result
18
18
  n = n // digit - 1
19
19
  return result
20
-
21
- if __name__ == "__main__":
22
- for i in range(30):
23
- itc = int_to_chr(i)
24
- print(f"{i} = {itc}")
25
-
26
- print(int_to_chr(17, numbers="abc"))
pypipr/iopen.py CHANGED
@@ -91,10 +91,3 @@ def iopen(path, data=None, regex=None, css_select=None, xpath=None, file_append=
91
91
 
92
92
  """ Return """
93
93
  return content
94
-
95
-
96
- if __name__ == "__main__":
97
- from .iargv import iargv
98
-
99
- if filename := iargv(1):
100
- print(iopen(filename, iargv(2)))
pypipr/is_iterable.py CHANGED
@@ -28,7 +28,7 @@ def is_iterable(var, str_is_iterable=False):
28
28
  # return isinstance(var, it)
29
29
 
30
30
  """ Metode #2 """
31
- if isinstance(var, str) and not str_is_iterable:
31
+ if not str_is_iterable and isinstance(var, str) :
32
32
  return False
33
33
  # return isinstance(var, collections.abc.Iterable)
34
34
 
pypipr/is_valid_url.py CHANGED
@@ -16,9 +16,3 @@ def is_valid_url(path):
16
16
  """
17
17
  return bool(regex.fullmatch(path))
18
18
 
19
-
20
- if __name__ == "__main__":
21
- from ..ifunctions.iargv import iargv
22
-
23
- if i := iargv(1):
24
- print(is_valid_url(i))
pypipr/iscandir.py CHANGED
@@ -27,8 +27,3 @@ def iscandir(
27
27
  yield i
28
28
  if scan_file and i.is_file():
29
29
  yield i
30
-
31
-
32
- if __name__ == "__main__":
33
- print(iscandir())
34
- print(list(iscandir("./", recursive=False, scan_file=False)))
pypipr/ivars.py CHANGED
@@ -18,8 +18,8 @@ def ivars(obj, skip_underscore=True):
18
18
  ```
19
19
  """
20
20
  r = {}
21
+ z = None
21
22
  for i, v in vars(obj).items():
22
- z = None
23
23
 
24
24
  for x, y in c.items():
25
25
  if y(v):
@@ -27,9 +27,6 @@ def ivars(obj, skip_underscore=True):
27
27
  break
28
28
  else:
29
29
  z = "variable"
30
- # if z is None:
31
- # z = "variable"
32
- # z = z or "variable"
33
30
 
34
31
  if i.startswith("__") or i.endswith("__"):
35
32
  if skip_underscore:
@@ -37,13 +34,5 @@ def ivars(obj, skip_underscore=True):
37
34
  z = f"__{z}__"
38
35
 
39
36
  r.setdefault(z, {})[i] = v
40
- # try:
41
- # r[z][i] = v
42
- # except Exception:
43
- # r[z] = {}
44
- # r[z][i] = v
45
37
 
46
38
  return r
47
-
48
- if __name__ == "__main__":
49
- print(ivars(__import__("pypipr")))
@@ -18,10 +18,3 @@ def password_generator(
18
18
  password += random.choice(characters)
19
19
 
20
20
  return password
21
-
22
-
23
- if __name__ == "__main__":
24
- from ..ifunctions.iargv import iargv
25
-
26
- length = iargv(1, int, 8)
27
- print(password_generator(length))
@@ -1,7 +1,7 @@
1
- from .WINDOWS import WINDOWS
2
1
  from .console_run import console_run
3
2
  from .ijoin import ijoin
4
3
  from .iopen import iopen
4
+ from .WINDOWS import WINDOWS
5
5
 
6
6
 
7
7
  def pip_freeze_without_version(filename=None):
@@ -25,9 +25,3 @@ def pip_freeze_without_version(filename=None):
25
25
  return iopen(filename, data=res)
26
26
 
27
27
  return res
28
-
29
-
30
- if __name__ == "__main__":
31
- from ..ifunctions.iargv import iargv
32
-
33
- print(pip_freeze_without_version(iargv(1)))
pypipr/poetry_publish.py CHANGED
@@ -13,7 +13,3 @@ def poetry_publish(token=None):
13
13
  console_run("update token", f"poetry config pypi-token.pypi {token}")
14
14
  console_run("Build", "poetry build")
15
15
  console_run("Publish to PyPi.org", "poetry publish")
16
-
17
-
18
- if __name__ == "__main__":
19
- poetry_publish()
@@ -15,9 +15,3 @@ def poetry_update_version(mayor=False, minor=False, patch=False):
15
15
  console_run("Update version minor", "poetry version minor")
16
16
  if patch:
17
17
  console_run("Update version patch", "poetry version patch")
18
-
19
-
20
- if __name__ == "__main__":
21
- from ..ifunctions.iargv import iargv
22
-
23
- poetry_update_version(iargv(1, int), iargv(2, int), iargv(3, int))
pypipr/random_bool.py CHANGED
@@ -14,6 +14,3 @@ def random_bool():
14
14
  """
15
15
  return bool(random.getrandbits(1))
16
16
 
17
-
18
- if __name__ == "__main__":
19
- print(random_bool())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.120
3
+ Version: 1.0.122
4
4
  Summary: The Python Package Index Project
5
5
  Author: ufiapjj
6
6
  Author-email: ufiapjj@gmail.com
@@ -135,9 +135,7 @@ Pastikan kode aman untuk dijalankan.
135
135
  Jalankan kode ini di terminal console.
136
136
 
137
137
  ```py
138
- if __name__ == "__main__":
139
- auto_reload("file_name.py")
140
-
138
+ auto_reload("file_name.py")
141
139
  ```
142
140
 
143
141
  or run in terminal
@@ -250,8 +248,8 @@ iprint(irange("z", "a", 4))
250
248
 
251
249
  Output:
252
250
  ```py
253
- <generator object int_range at 0x7d20bd4540>
254
- <generator object int_range at 0x7d20bd4540>
251
+ <generator object int_range at 0x74bf0c4440>
252
+ <generator object int_range at 0x74bf0c4440>
255
253
  [13, 12, 11, 10, 9, 8, 7, 6]
256
254
  [2, 5, 8]
257
255
  [2, 5, 8]
@@ -283,7 +281,7 @@ print(list(batchmaker(s)))
283
281
 
284
282
  Output:
285
283
  ```py
286
- <generator object batchmaker at 0x7d20bc83a0>
284
+ <generator object batchmaker at 0x74bf0b8280>
287
285
  ['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.']
288
286
  ```
289
287
 
@@ -337,7 +335,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
337
335
 
338
336
  Output:
339
337
  ```py
340
- <generator object batch_calculate at 0x7d20b4b010>
338
+ <generator object batch_calculate at 0x74bf037010>
341
339
  [('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')>)]
342
340
  ```
343
341
 
@@ -434,21 +432,16 @@ None
434
432
  Memudahkan dalam membuat pilihan untuk user dalam tampilan console
435
433
 
436
434
  ```py
437
- a = choices("ini hanya satu pilihan")
438
- b = choices(
439
- {
440
- "sedan": "audi",
441
- "suv": "volvo",
442
- "truck": "tesla",
443
- },
444
- title="Car Model",
445
- prompt="Pilih Mobil : ",
446
- )
447
- c = choices(
448
- iscandir(recursive=False),
449
- title="List File dan Folder",
450
- prompt="Pilih File atau Folder : ",
435
+ var = {
436
+ "Pertama" : "Pilihan Pertama",
437
+ "Kedua" : "Pilihan Kedua",
438
+ "Ketiga" : "Pilihan Ketiga",
439
+ }
440
+ res = choices(
441
+ var,
442
+ prompt="Pilih dari dictionary : "
451
443
  )
444
+ print(res)
452
445
  ```
453
446
 
454
447
  ## chunk_array
@@ -465,7 +458,7 @@ print(list(chunk_array(arr, 5)))
465
458
 
466
459
  Output:
467
460
  ```py
468
- <generator object chunk_array at 0x7d20bd4540>
461
+ <generator object chunk_array at 0x74bf0c4440>
469
462
  [[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
470
463
  ```
471
464
 
@@ -516,9 +509,9 @@ print(datetime_now("Etc/GMT+7"))
516
509
 
517
510
  Output:
518
511
  ```py
519
- 2024-05-01 09:55:07.182593+07:00
520
- 2024-05-01 02:55:07.184074+00:00
521
- 2024-04-30 19:55:07.188176-07:00
512
+ 2024-05-05 13:05:37.084252+07:00
513
+ 2024-05-05 06:05:37.086374+00:00
514
+ 2024-05-04 23:05:37.091922-07:00
522
515
  ```
523
516
 
524
517
  ## dict_first
@@ -624,7 +617,7 @@ iprint(filter_empty(var))
624
617
 
625
618
  Output:
626
619
  ```py
627
- <generator object filter_empty at 0x7d20b495d0>
620
+ <generator object filter_empty at 0x74bf0355d0>
628
621
  [1, '0', True, {}, ['eee']]
629
622
  ```
630
623
 
@@ -654,8 +647,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
654
647
 
655
648
  Output:
656
649
  ```py
657
- <generator object get_class_method at 0x7d20b4b2e0>
658
- [<function ExampleGetClassMethod.a at 0x7d20bed300>, <function ExampleGetClassMethod.b at 0x7d20bed620>, <function ExampleGetClassMethod.c at 0x7d20bed4e0>, <function ExampleGetClassMethod.d at 0x7d20bed6c0>]
650
+ <generator object get_class_method at 0x74bf0372e0>
651
+ [<function ExampleGetClassMethod.a at 0x74bf0c8e00>, <function ExampleGetClassMethod.b at 0x74bf0c9120>, <function ExampleGetClassMethod.c at 0x74bf0c8fe0>, <function ExampleGetClassMethod.d at 0x74bf0c91c0>]
659
652
  ```
660
653
 
661
654
  ## get_filesize
@@ -729,12 +722,12 @@ apabila parameter kosong.
729
722
  Parameter yg berupa string juga dapat diubah menggunakan cast.
730
723
 
731
724
  ```python
732
- if __name__ == "__main__":
733
- print(iargv(1, cast=int, on_error=100))
725
+ print(iargv(1, cast=int, on_error=100))
734
726
  ```
735
727
 
736
728
  Output:
737
729
  ```py
730
+ 100
738
731
  ```
739
732
 
740
733
  ## idumps_html
@@ -925,7 +918,7 @@ Output:
925
918
 
926
919
  ## ienumerate
927
920
 
928
- `ienumerate(iterator, start=0, key=<function int_to_int at 0x7d289c9ee0>)`
921
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x74c3b8d9e0>)`
929
922
 
930
923
  meningkatkan fungsi enumerate() pada python
931
924
  untuk key menggunakan huruf dan basis angka lainnya.
@@ -938,7 +931,7 @@ iprint(ienumerate(it, key=int_to_chr))
938
931
 
939
932
  Output:
940
933
  ```py
941
- <generator object ienumerate at 0x7d20b4b3d0>
934
+ <generator object ienumerate at 0x74bf0373d0>
942
935
  [('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
943
936
  ```
944
937
 
@@ -1005,7 +998,7 @@ print(ijoin(10, ' '))
1005
998
 
1006
999
  Output:
1007
1000
  ```py
1008
- qweqw, dfs, asd, weq
1001
+ weq, asd, dfs, qweqw
1009
1002
  ,ini,path,seperti,url,
1010
1003
  ini,path,seperti,url
1011
1004
  <li>satu</li>
@@ -1050,95 +1043,62 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
1050
1043
  Output:
1051
1044
  ```py
1052
1045
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1053
- [['Harga Emas Hari Ini - Rabu, 01 Mei 2024'],
1054
- ['Spot Emas USD2.287,98 (-8,04) / oz',
1055
- 'Kurs IDR16.249,00 / USD',
1056
- 'Emas IDR1.195.281 (-4.200) / gr'],
1057
- ['LM Antam (Jual)1.310.000 (-15.000) / gr',
1058
- 'LM Antam (Beli)↓1.204.000 (-17.000) / gr']],
1046
+ [['Harga Emas Hari Ini - Minggu, 05 Mei 2024'],
1047
+ ['Spot Emas USD2.302,57 (+2,84) / oz',
1048
+ 'Kurs IDR16.202,00 / USD',
1049
+ 'Emas IDR1.199.423 (+1.479) / gr'],
1050
+ ['LM Antam (Jual)1.313.000 / gr', 'LM Antam (Beli)1.206.000 / gr']],
1059
1051
  [['Harga Emas Hari Ini'],
1060
1052
  ['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
1061
1053
  ['per Gram (Rp)', 'per Batangan (Rp)', 'per Gram (Rp)', 'per Batangan (Rp)'],
1062
1054
  ['1000',
1063
- '1.251 (-15)',
1064
- '1.250.600 (-15.000)',
1055
+ '1.254',
1056
+ '1.253.600',
1065
1057
  '1.043.040 (+8.200)',
1066
1058
  '1.043.040.000 (+8.200.000)'],
1067
1059
  ['500',
1068
- '2.501 (-30)',
1069
- '1.250.640 (-15.000)',
1060
+ '2.507',
1061
+ '1.253.640',
1070
1062
  '1.043.082 (+8.200)',
1071
1063
  '521.541.000 (+4.100.000)'],
1072
1064
  ['250',
1073
- '5.004 (-60)',
1074
- '1.251.060 (-15.000)',
1065
+ '5.016',
1066
+ '1.254.060',
1075
1067
  '1.043.512 (+8.200)',
1076
1068
  '260.878.000 (+2.050.000)'],
1077
1069
  ['100',
1078
- '12.521 (-150)',
1079
- '1.252.120 (-15.000)',
1070
+ '12.551',
1071
+ '1.255.120',
1080
1072
  '1.044.600 (+8.200)',
1081
1073
  '104.460.000 (+820.000)'],
1082
- ['50',
1083
- '25.058 (-300)',
1084
- '1.252.900 (-15.000)',
1085
- '1.045.400 (+8.200)',
1086
- '52.270.000 (+410.000)'],
1087
- ['25',
1088
- '50.179 (-600)',
1089
- '1.254.480 (-15.000)',
1090
- '1.047.040 (+8.200)',
1091
- '26.176.000 (+205.000)'],
1092
- ['10',
1093
- '125.950 (-1.500)',
1094
- '1.259.500 (-15.000)',
1095
- '1.052.200 (+8.200)',
1096
- '10.522.000 (+82.000)'],
1097
- ['5',
1098
- '253.000 (-3.000)',
1099
- '1.265.000 (-15.000)',
1100
- '1.057.800 (+8.200)',
1101
- '5.289.000 (+41.000)'],
1102
- ['3',
1103
- '423.889 (-5.000)',
1104
- '1.271.667 (-15.000)',
1105
- '1.064.667 (+8.000)',
1106
- '3.194.000 (+24.000)'],
1107
- ['2',
1108
- '640.000 (-7.500)',
1109
- '1.280.000 (-15.000)',
1110
- '1.073.500 (+8.500)',
1111
- '2.147.000 (+17.000)'],
1112
- ['1',
1113
- '1.310.000 (-15.000)',
1114
- '1.310.000 (-15.000)',
1115
- '1.104.000 (+8.000)',
1116
- '1.104.000 (+8.000)'],
1117
- ['0.5',
1118
- '2.820.000 (-30.000)',
1119
- '1.410.000 (-15.000)',
1120
- '1.208.000 (+8.000)',
1121
- '604.000 (+4.000)'],
1122
- ['Update harga LM Antam :01 Mei 2024, pukul 08:20Harga pembelian kembali '
1123
- ':Rp. 1.204.000/gram (-17.000)',
1074
+ ['50', '25.118', '1.255.900', '1.045.400 (+8.200)', '52.270.000 (+410.000)'],
1075
+ ['25', '50.299', '1.257.480', '1.047.040 (+8.200)', '26.176.000 (+205.000)'],
1076
+ ['10', '126.250', '1.262.500', '1.052.200 (+8.200)', '10.522.000 (+82.000)'],
1077
+ ['5', '253.600', '1.268.000', '1.057.800 (+8.200)', '5.289.000 (+41.000)'],
1078
+ ['3', '424.889', '1.274.667', '1.064.667 (+8.000)', '3.194.000 (+24.000)'],
1079
+ ['2', '641.500', '1.283.000', '1.073.500 (+8.500)', '2.147.000 (+17.000)'],
1080
+ ['1', '1.313.000', '1.313.000', '1.104.000 (+8.000)', '1.104.000 (+8.000)'],
1081
+ ['0.5', '2.826.000', '1.413.000', '1.208.000 (+8.000)', '604.000 (+4.000)'],
1082
+ ['Update harga LM Antam :05 Mei 2024, pukul 06:22Harga pembelian kembali '
1083
+ ':Rp. 1.206.000/gram',
1124
1084
  'Update harga LM Pegadaian :31 Agustus 2023']],
1125
- [['Spot Harga Emas Hari Ini (Market Open)'],
1085
+ [['Spot Harga Emas Hari Ini (Market Close)'],
1126
1086
  ['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
1127
- ['Ounce\xa0(oz)', '2.287,98 (-8,04)', '16.249,00', '37.177.387'],
1128
- ['Gram\xa0(gr)', '73,56', '16.249,00', '1.195.281 (-4.200)'],
1129
- ['Kilogram\xa0(kg)', '73.560,27', '16.249,00', '1.195.280.749'],
1130
- ['Update harga emas :01 Mei 2024, pukul 09:54Update kurs :30 April 2024, '
1131
- 'pukul 13:10']],
1087
+ ['Ounce\xa0(oz)', '2.302,57 (+2,84)', '16.202,00', '37.306.239'],
1088
+ ['Gram\xa0(gr)', '74,03', '16.202,00', '1.199.423 (+1.479)'],
1089
+ ['Kilogram\xa0(kg)', '74.029,34', '16.202,00', '1.199.423.441'],
1090
+ ['Update harga emas :05 Mei 2024, pukul 13:04Update kurs :04 Mei 2024, pukul '
1091
+ '13:10']],
1132
1092
  [['Gram', 'UBS Gold 99.99%'],
1133
1093
  ['Jual', 'Beli'],
1134
1094
  ['/ Batang', '/ Gram', '/ Batang', '/ Gram'],
1135
- ['100', '126.300.000', '1.263.000', '125.185.000', '1.251.850'],
1136
- ['50', '63.300.000', '1.266.000', '62.645.000', '1.252.900'],
1137
- ['25', '31.700.000', '1.268.000', '31.425.000', '1.257.000'],
1138
- ['10', '12.720.000', '1.272.000', '12.620.000', '1.262.000'],
1139
- ['5', '6.385.000', '1.277.000', '6.362.000', '1.272.400'],
1140
- ['1', '1.325.000', '1.325.000', '1.305.000', '1.305.000'],
1141
- ['', 'Update :30 April 2024, pukul 14:56']],
1095
+ ['100', '126.000.000', '1.260.000', '123.385.000', '1.233.850'],
1096
+ ['50', '62.950.000', '1.259.000', '61.745.000', '1.234.900'],
1097
+ ['25', '31.500.000', '1.260.000', '30.975.000', '1.239.000'],
1098
+ ['10', '12.650.000', '1.265.000', '12.440.000', '1.244.000'],
1099
+ ['5', '6.350.000', '1.270.000', '6.272.000', '1.254.400'],
1100
+ ['1', '1.315.000', '1.315.000', '1.287.000', '1.287.000'],
1101
+ ['', 'Update :03 Mei 2024, pukul 11:57']],
1142
1102
  [['Konversi Satuan'],
1143
1103
  ['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
1144
1104
  ['Ounce\xa0(oz)', '1', '31,1034767696', '0,0311034768'],
@@ -1148,37 +1108,37 @@ Output:
1148
1108
  ['Waktu', 'Emas'],
1149
1109
  ['Unit', 'USD', 'IDR'],
1150
1110
  ['Angka', '+/-', 'Angka', '+/-'],
1151
- ['Hari Ini', 'Kurs', '', '', '16.249', '%'],
1152
- ['oz', '2.296,02', '-8,04-0,35%', '37.308.029', '-130.642-0,35%'],
1153
- ['gr', '73,82', '-0,26-0,35%', '1.199.481', '-4.200-0,35%'],
1154
- ['30 Hari', 'Kurs', '', '', '15.873', '+376+2,37%'],
1155
- ['oz', '2.239,34', '+48,64+2,17%', '35.545.044', '+1.632.343+4,59%'],
1156
- ['gr', '72,00', '+1,56+2,17%', '1.142.800', '+52.481+4,59%'],
1157
- ['2 Bulan', 'Kurs', '', '', '15.715', '+534+3,40%'],
1158
- ['oz', '2.082,55', '+205,43+9,86%', '32.727.273', '+4.450.114+13,60%'],
1159
- ['gr', '66,96', '+6,60+9,86', '1.052.206', '+143.074+13,60%'],
1160
- ['6 Bulan', 'Kurs', '', '', '15.861', '+388+2,45%'],
1161
- ['oz', '1.990,54', '+297,44+14,94%', '31.571.955', '+5.605.432+17,75%'],
1162
- ['gr', '64,00', '+9,56+14,94%', '1.015.062', '+180.219+17,75%'],
1163
- ['1 Tahun', 'Kurs', '', '', '15.731', '+518+3,29%'],
1164
- ['oz', '1.823,86', '+464,12+25,45%', '28.691.142', '+8.486.245+29,58%'],
1165
- ['gr', '58,64', '+14,92+25,45%', '922.442', '+272.839+29,58%'],
1166
- ['2 Tahun', 'Kurs', '', '', '14.418', '+1.831+12,70%'],
1167
- ['oz', '1.867,23', '+420,75+22,53%', '26.921.722', '+10.255.665+38,09%'],
1168
- ['gr', '60,03', '+13,53+22,53%', '865.553', '+329.727+38,09%'],
1169
- ['3 Tahun', 'Kurs', '', '', '14.468', '+1.781+12,31%'],
1170
- ['oz', '1.768,91', '+519,07+29,34%', '25.592.590', '+11.584.797+45,27%'],
1171
- ['gr', '56,87', '+16,69+29,34%', '822.821', '+372.460+45,27%'],
1172
- ['5 Tahun', 'Kurs', '', '', '14.282', '+1.967+13,77%'],
1173
- ['oz', '1.280,82', '+1.007,16+78,63%', '18.292.671', '+18.884.716+103,24%'],
1174
- ['gr', '41,18', '+32,38+78,63%', '588.123', '+607.158+103,24%']])
1111
+ ['Hari Ini', 'Kurs', '', '', '16.202', '%'],
1112
+ ['oz', '2.299,73', '+2,84+0,12%', '37.260.225', '+46.014+0,12%'],
1113
+ ['gr', '73,94', '+0,09+0,12%', '1.197.944', '+1.479+0,12%'],
1114
+ ['30 Hari', 'Kurs', '', '', '15.907', '+295+1,85%'],
1115
+ ['oz', '2.327,69', '-25,12-1,08%', '37.026.565', '+279.674+0,76%'],
1116
+ ['gr', '74,84', '-0,81-1,08%', '1.190.432', '+8.992+0,76%'],
1117
+ ['2 Bulan', 'Kurs', '', '', '15.756', '+446+2,83%'],
1118
+ ['oz', '2.146,97', '+155,60+7,25%', '33.827.659', '+3.478.580+10,28%'],
1119
+ ['gr', '69,03', '+5,00+7,25', '1.087.585', '+111.839+10,28%'],
1120
+ ['6 Bulan', 'Kurs', '', '', '15.550', '+652+4,19%'],
1121
+ ['oz', '1.964,64', '+337,93+17,20%', '30.550.152', '+6.756.087+22,11%'],
1122
+ ['gr', '63,16', '+10,86+17,20%', '982.210', '+217.213+22,11%'],
1123
+ ['1 Tahun', 'Kurs', '', '', '15.731', '+471+2,99%'],
1124
+ ['oz', '1.823,86', '+478,71+26,25%', '28.691.142', '+8.615.097+30,03%'],
1125
+ ['gr', '58,64', '+15,39+26,25%', '922.442', '+276.982+30,03%'],
1126
+ ['2 Tahun', 'Kurs', '', '', '14.418', '+1.784+12,37%'],
1127
+ ['oz', '1.888,48', '+414,09+21,93%', '27.228.105', '+10.078.135+37,01%'],
1128
+ ['gr', '60,72', '+13,31+21,93%', '875.404', '+324.020+37,01%'],
1129
+ ['3 Tahun', 'Kurs', '', '', '14.439', '+1.763+12,21%'],
1130
+ ['oz', '1.815,64', '+486,93+26,82%', '26.216.044', '+11.090.195+42,30%'],
1131
+ ['gr', '58,37', '+15,66+26,82%', '842.865', '+356.558+42,30%'],
1132
+ ['5 Tahun', 'Kurs', '', '', '14.309', '+1.893+13,23%'],
1133
+ ['oz', '1.284,29', '+1.018,28+79,29%', '18.376.906', '+18.929.334+103,01%'],
1134
+ ['gr', '41,29', '+32,74+79,29%', '590.831', '+608.592+103,01%']])
1175
1135
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1176
1136
  [[''],
1177
1137
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1178
- ['USD', '73,56↓', '-0,26-0,35%'],
1179
- ['KURS', '16.265,05↑', '+4,05+0,02%'],
1180
- ['IDR', '1.196.456,16↓', '-3.910,65-0,33%'],
1181
- ['Rabu, 01 Mei 2024 09:55']],
1138
+ ['USD', '74,03↓', '%'],
1139
+ ['KURS', '15.968,70↓', '%'],
1140
+ ['IDR', '1.182.152,40↓', '%'],
1141
+ ['Minggu, 05 Mei 2024 13:05']],
1182
1142
  [[''],
1183
1143
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1184
1144
  'Hari Ini',
@@ -1189,19 +1149,19 @@ Output:
1189
1149
  '']],
1190
1150
  [['Pergerakkan Harga Emas 1 Gram'],
1191
1151
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1192
- ['USD', '73,82', '73,56 - 73,82', '73,69'],
1193
- ['KURS', '16.261,00', '16.261,00 - 16.265,05', '16.263,03'],
1194
- ['IDR', '1.200.366,81', '1.196.456,16 - 1.200.366,81', '1.198.411,49'],
1152
+ ['USD', '74,03', '74,03 - 74,03', '74,03'],
1153
+ ['KURS', '15.968,70', '15.968,70 - 15.968,70', '15.968,70'],
1154
+ ['IDR', '1.182.152,40', '1.182.152,40 - 1.182.152,40', '1.182.152,40'],
1195
1155
  [''],
1196
1156
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1197
- ['USD', '66,32', '64,07 - 77,14', '+7,24 (10,92%)'],
1198
- ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+874,95 (5,69%)'],
1199
- ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+175.726,63 (17,22%)'],
1157
+ ['USD', '66,32', '64,07 - 77,14', '+7,71 (11,63%)'],
1158
+ ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+578,60 (3,76%)'],
1159
+ ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+161.422,87 (15,81%)'],
1200
1160
  [''],
1201
1161
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1202
- ['USD', '63,97', '58,43 - 77,14', '+9,59 (14,99%)'],
1203
- ['KURS', '14.673,55', '14.669,40 - 16.307,80', '+1.591,50 (10,85%)'],
1204
- ['IDR', '938.709,73', '912.925,68 - 1.256.829,06', '+257.746,43 (27,46%)']])
1162
+ ['USD', '65,97', '58,43 - 77,14', '+8,06 (12,22%)'],
1163
+ ['KURS', '14.716,80', '14.669,40 - 16.307,80', '+1.251,90 (8,51%)'],
1164
+ ['IDR', '970.916,33', '912.925,68 - 1.256.829,06', '+211.236,07 (21,76%)']])
1205
1165
  ```
1206
1166
 
1207
1167
  ## iloads
@@ -1331,7 +1291,7 @@ Output:
1331
1291
  ```py
1332
1292
  8
1333
1293
  ['mana', 'aja']
1334
- [<Element a at 0x7d20be59f0>, <Element a at 0x7d20c25310>, <Element a at 0x7d20c253b0>, <Element a at 0x7d20c25400>, <Element a at 0x7d20c25450>, <Element a at 0x7d20c254a0>, <Element a at 0x7d20c254f0>, <Element a at 0x7d20c25540>, <Element a at 0x7d20c25590>, <Element a at 0x7d20c255e0>, <Element a at 0x7d20c25630>, <Element a at 0x7d20c25680>, <Element a at 0x7d20c256d0>, <Element a at 0x7d20c25720>, <Element a at 0x7d20c25770>, <Element a at 0x7d20c257c0>, <Element a at 0x7d20c25810>, <Element a at 0x7d20c25860>]
1294
+ [<Element a at 0x74bf0cdd10>, <Element a at 0x74bf108fa0>, <Element a at 0x74bf109040>, <Element a at 0x74bf109090>, <Element a at 0x74bf1090e0>, <Element a at 0x74bf109130>, <Element a at 0x74bf109180>, <Element a at 0x74bf1091d0>, <Element a at 0x74bf109220>, <Element a at 0x74bf109270>, <Element a at 0x74bf1092c0>, <Element a at 0x74bf109310>, <Element a at 0x74bf109360>, <Element a at 0x74bf1093b0>, <Element a at 0x74bf109400>, <Element a at 0x74bf109450>, <Element a at 0x74bf1094a0>, <Element a at 0x74bf1094f0>]
1335
1295
  False
1336
1296
  ```
1337
1297
 
@@ -1393,7 +1353,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1393
1353
 
1394
1354
  Output:
1395
1355
  ```py
1396
- <generator object iscandir at 0x7d20bd4840>
1356
+ <generator object iscandir at 0x74bf0c4740>
1397
1357
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1398
1358
  ```
1399
1359
 
@@ -1430,76 +1390,76 @@ Output:
1430
1390
  'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1431
1391
  'PintUregQuantity': <class 'pint.Quantity'>,
1432
1392
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
1433
- 'function': {'avg': <function avg at 0x7d2ec4e700>,
1434
- 'get_filemtime': <function get_filemtime at 0x7d28ad72e0>,
1435
- 'print_colorize': <function print_colorize at 0x7d28ad74c0>,
1436
- 'print_log': <function print_log at 0x7d28b7ab60>,
1437
- 'console_run': <function console_run at 0x7d28ad7380>,
1438
- 'auto_reload': <function auto_reload at 0x7d28ab3ec0>,
1439
- 'basename': <function basename at 0x7d28ad7240>,
1440
- 'chr_to_int': <function chr_to_int at 0x7d28ad7a60>,
1441
- 'int_to_chr': <function int_to_chr at 0x7d28ad7b00>,
1442
- 'irange': <function irange at 0x7d28ad7d80>,
1443
- 'batchmaker': <function batchmaker at 0x7d28ad7740>,
1444
- 'calculate': <function calculate at 0x7d28ac82c0>,
1445
- 'batch_calculate': <function batch_calculate at 0x7d28ad7600>,
1446
- 'bin_to_int': <function bin_to_int at 0x7d28ad76a0>,
1447
- 'is_empty': <function is_empty at 0x7d28ac8540>,
1448
- 'exit_if_empty': <function exit_if_empty at 0x7d28ac8400>,
1449
- 'input_char': <function input_char at 0x7d28ac84a0>,
1450
- 'get_by_index': <function get_by_index at 0x7d28ac85e0>,
1451
- 'choices': <function choices at 0x7d28ac87c0>,
1452
- 'chunk_array': <function chunk_array at 0x7d28ac8860>,
1453
- 'create_folder': <function create_folder at 0x7d28ac8900>,
1454
- 'datetime_from_string': <function datetime_from_string at 0x7d28ac89a0>,
1455
- 'datetime_now': <function datetime_now at 0x7d28ac8a40>,
1456
- 'dict_first': <function dict_first at 0x7d28ac8ae0>,
1457
- 'dirname': <function dirname at 0x7d28ac8b80>,
1458
- 'is_iterable': <function is_iterable at 0x7d28ac8d60>,
1459
- 'to_str': <function to_str at 0x7d28ac8e00>,
1460
- 'filter_empty': <function filter_empty at 0x7d28ac8c20>,
1461
- 'get_class_method': <function get_class_method at 0x7d28ac8cc0>,
1462
- 'get_filesize': <function get_filesize at 0x7d28ac8f40>,
1463
- 'github_pull': <function github_pull at 0x7d28ac8fe0>,
1464
- 'github_push': <function github_push at 0x7d28ac91c0>,
1465
- 'github_user': <function github_user at 0x7d28ac9260>,
1466
- 'hex_to_int': <function hex_to_int at 0x7d28ac9080>,
1467
- 'iargv': <function iargv at 0x7d28ac9300>,
1468
- 'idumps_html': <function idumps_html at 0x7d28ac9580>,
1469
- 'idumps': <function idumps at 0x7d28ac9440>,
1470
- 'int_to_int': <function int_to_int at 0x7d289c9ee0>,
1471
- 'ienumerate': <function ienumerate at 0x7d28ac9a80>,
1472
- 'ienv': <function ienv at 0x7d289c9da0>,
1473
- 'iexec': <function iexec at 0x7d289c9f80>,
1474
- 'ijoin': <function ijoin at 0x7d289ca0c0>,
1475
- 'iloads_html': <function iloads_html at 0x7d289ca2a0>,
1476
- 'iloads': <function iloads at 0x7d289ca020>,
1477
- 'int_to_bin': <function int_to_bin at 0x7d289ca200>,
1478
- 'int_to_hex': <function int_to_hex at 0x7d289ca340>,
1479
- 'int_to_oct': <function int_to_oct at 0x7d289ca3e0>,
1480
- 'is_valid_url': <function is_valid_url at 0x7d289ca5c0>,
1481
- 'iopen': <function iopen at 0x7d287c6a20>,
1482
- 'iprint': <function iprint at 0x7d289ca520>,
1483
- 'ireplace': <function ireplace at 0x7d289ca8e0>,
1484
- 'iscandir': <function iscandir at 0x7d2887e160>,
1485
- 'isplit': <function isplit at 0x7d2887e200>,
1486
- 'ivars': <function ivars at 0x7d2887e2a0>,
1487
- 'log': <function log at 0x7d2887e340>,
1488
- 'oct_to_int': <function oct_to_int at 0x7d2887e3e0>,
1489
- 'password_generator': <function password_generator at 0x7d2887e480>,
1490
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7d2887e5c0>,
1491
- 'poetry_publish': <function poetry_publish at 0x7d2887e660>,
1492
- 'poetry_update_version': <function poetry_update_version at 0x7d2887e7a0>,
1493
- 'print_dir': <function print_dir at 0x7d2887e980>,
1494
- 'print_to_last_line': <function print_to_last_line at 0x7d2887ea20>,
1495
- 'random_bool': <function random_bool at 0x7d2887eac0>,
1496
- 'restart': <function restart at 0x7d2887eb60>,
1497
- 'set_timeout': <function set_timeout at 0x7d2887ec00>,
1498
- 'sets_ordered': <function sets_ordered at 0x7d2887eca0>,
1499
- 'str_cmp': <function str_cmp at 0x7d2887ed40>,
1500
- 'text_colorize': <function text_colorize at 0x7d2887ede0>},
1393
+ 'function': {'avg': <function avg at 0x74c8aa6700>,
1394
+ 'get_filemtime': <function get_filemtime at 0x74c3abede0>,
1395
+ 'print_colorize': <function print_colorize at 0x74c3abefc0>,
1396
+ 'print_log': <function print_log at 0x74c3d4ab60>,
1397
+ 'console_run': <function console_run at 0x74c3abee80>,
1398
+ 'auto_reload': <function auto_reload at 0x74c3c77ec0>,
1399
+ 'basename': <function basename at 0x74c3abed40>,
1400
+ 'chr_to_int': <function chr_to_int at 0x74c3abf560>,
1401
+ 'int_to_chr': <function int_to_chr at 0x74c3abf600>,
1402
+ 'irange': <function irange at 0x74c3abf880>,
1403
+ 'batchmaker': <function batchmaker at 0x74c3abf240>,
1404
+ 'calculate': <function calculate at 0x74c3abf380>,
1405
+ 'batch_calculate': <function batch_calculate at 0x74c3abf100>,
1406
+ 'bin_to_int': <function bin_to_int at 0x74c3abf1a0>,
1407
+ 'is_empty': <function is_empty at 0x74c3aa8040>,
1408
+ 'exit_if_empty': <function exit_if_empty at 0x74c3abfec0>,
1409
+ 'input_char': <function input_char at 0x74c3abff60>,
1410
+ 'get_by_index': <function get_by_index at 0x74c3aa80e0>,
1411
+ 'choices': <function choices at 0x74c3aa82c0>,
1412
+ 'chunk_array': <function chunk_array at 0x74c3aa8360>,
1413
+ 'create_folder': <function create_folder at 0x74c3aa8400>,
1414
+ 'datetime_from_string': <function datetime_from_string at 0x74c3aa84a0>,
1415
+ 'datetime_now': <function datetime_now at 0x74c3aa8540>,
1416
+ 'dict_first': <function dict_first at 0x74c3aa85e0>,
1417
+ 'dirname': <function dirname at 0x74c3aa8680>,
1418
+ 'is_iterable': <function is_iterable at 0x74c3aa8860>,
1419
+ 'to_str': <function to_str at 0x74c3aa8900>,
1420
+ 'filter_empty': <function filter_empty at 0x74c3aa8720>,
1421
+ 'get_class_method': <function get_class_method at 0x74c3aa87c0>,
1422
+ 'get_filesize': <function get_filesize at 0x74c3aa8a40>,
1423
+ 'github_pull': <function github_pull at 0x74c3aa8ae0>,
1424
+ 'github_push': <function github_push at 0x74c3aa8c20>,
1425
+ 'github_user': <function github_user at 0x74c3aa8cc0>,
1426
+ 'hex_to_int': <function hex_to_int at 0x74c3aa8d60>,
1427
+ 'iargv': <function iargv at 0x74c3aa8e00>,
1428
+ 'idumps_html': <function idumps_html at 0x74c3aa9080>,
1429
+ 'idumps': <function idumps at 0x74c3aa8f40>,
1430
+ 'int_to_int': <function int_to_int at 0x74c3b8d9e0>,
1431
+ 'ienumerate': <function ienumerate at 0x74c3aa9580>,
1432
+ 'ienv': <function ienv at 0x74c3b8d8a0>,
1433
+ 'iexec': <function iexec at 0x74c3b8da80>,
1434
+ 'ijoin': <function ijoin at 0x74c3b8dbc0>,
1435
+ 'iloads_html': <function iloads_html at 0x74c3b8dda0>,
1436
+ 'iloads': <function iloads at 0x74c3b8db20>,
1437
+ 'int_to_bin': <function int_to_bin at 0x74c3b8dd00>,
1438
+ 'int_to_hex': <function int_to_hex at 0x74c3b8de40>,
1439
+ 'int_to_oct': <function int_to_oct at 0x74c3b8dee0>,
1440
+ 'is_valid_url': <function is_valid_url at 0x74c3b8e0c0>,
1441
+ 'iopen': <function iopen at 0x74c39a2520>,
1442
+ 'iprint': <function iprint at 0x74c3b8e020>,
1443
+ 'ireplace': <function ireplace at 0x74c3b8e3e0>,
1444
+ 'iscandir': <function iscandir at 0x74c3a59c60>,
1445
+ 'isplit': <function isplit at 0x74c3a59d00>,
1446
+ 'ivars': <function ivars at 0x74c3a59da0>,
1447
+ 'log': <function log at 0x74c3a59e40>,
1448
+ 'oct_to_int': <function oct_to_int at 0x74c3a59ee0>,
1449
+ 'password_generator': <function password_generator at 0x74c3a59f80>,
1450
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x74c3a5a0c0>,
1451
+ 'poetry_publish': <function poetry_publish at 0x74c3a5a160>,
1452
+ 'poetry_update_version': <function poetry_update_version at 0x74c3a5a2a0>,
1453
+ 'print_dir': <function print_dir at 0x74c3a5a480>,
1454
+ 'print_to_last_line': <function print_to_last_line at 0x74c3a5a520>,
1455
+ 'random_bool': <function random_bool at 0x74c3a5a5c0>,
1456
+ 'restart': <function restart at 0x74c3a5a660>,
1457
+ 'set_timeout': <function set_timeout at 0x74c3a5a700>,
1458
+ 'sets_ordered': <function sets_ordered at 0x74c3a5a7a0>,
1459
+ 'str_cmp': <function str_cmp at 0x74c3a5a840>,
1460
+ 'text_colorize': <function text_colorize at 0x74c3a5a8e0>},
1501
1461
  'variable': {'LINUX': True,
1502
- 'PintUreg': <pint.registry.UnitRegistry object at 0x7d2ec54590>,
1462
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x74c8aac490>,
1503
1463
  'WINDOWS': False},
1504
1464
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
1505
1465
  'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
@@ -1589,7 +1549,7 @@ print(password_generator())
1589
1549
 
1590
1550
  Output:
1591
1551
  ```py
1592
- {`>\QTI8
1552
+ 1+~jj|px
1593
1553
  ```
1594
1554
 
1595
1555
  ## pip_freeze_without_version
@@ -1647,7 +1607,7 @@ Output:
1647
1607
  __enter__ : https:/www.google.com
1648
1608
  __fspath__ : https:/www.google.com
1649
1609
  __getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1650
- __hash__ : 7734779578747066766
1610
+ __hash__ : -336407794228580667
1651
1611
  __init__ : None
1652
1612
  __init_subclass__ : None
1653
1613
  __module__ : pathlib
@@ -1660,8 +1620,8 @@ Output:
1660
1620
  _cached_cparts : ['https:', 'www.google.com']
1661
1621
  _cparts : ['https:', 'www.google.com']
1662
1622
  _drv :
1663
- _flavour : <pathlib._PosixFlavour object at 0x7d35864ad0>
1664
- _hash : 7734779578747066766
1623
+ _flavour : <pathlib._PosixFlavour object at 0x74cfb2cc50>
1624
+ _hash : -336407794228580667
1665
1625
  _parts : ['https:', 'www.google.com']
1666
1626
  _root :
1667
1627
  _str : https:/www.google.com
@@ -1683,7 +1643,7 @@ Output:
1683
1643
  is_reserved : False
1684
1644
  is_socket : False
1685
1645
  is_symlink : False
1686
- iterdir : <generator object Path.iterdir at 0x7d20bce960>
1646
+ iterdir : <generator object Path.iterdir at 0x74bf0b2960>
1687
1647
  joinpath : https:/www.google.com
1688
1648
  name : www.google.com
1689
1649
  parent : https:
@@ -1723,7 +1683,7 @@ print(random_bool())
1723
1683
 
1724
1684
  Output:
1725
1685
  ```py
1726
- True
1686
+ False
1727
1687
  ```
1728
1688
 
1729
1689
  ## restart
@@ -1757,7 +1717,7 @@ x.cancel()
1757
1717
 
1758
1718
  Output:
1759
1719
  ```py
1760
- <Timer(Thread-2, started 537396501744)>
1720
+ <Timer(Thread-2, started 501396593904)>
1761
1721
  menghentikan timeout 7
1762
1722
  ```
1763
1723
 
@@ -1775,7 +1735,7 @@ print(list(sets_ordered(array)))
1775
1735
 
1776
1736
  Output:
1777
1737
  ```py
1778
- <generator object sets_ordered at 0x7d20bfd150>
1738
+ <generator object sets_ordered at 0x74bf0e4fb0>
1779
1739
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
1780
1740
  ```
1781
1741
 
@@ -1869,7 +1829,7 @@ print(ExampleComparePerformance().compare_performance())
1869
1829
 
1870
1830
  Output:
1871
1831
  ```py
1872
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7d20bfcba0>,
1832
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x74bf0e4ad0>,
1873
1833
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
1874
1834
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
1875
1835
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
@@ -1,22 +1,22 @@
1
1
  pypipr/APIMixinView.py,sha256=3qarMHPSBtLp19JMHv6nfl2XRMbyK9zOygpy3L3uEeQ,1275
2
2
  pypipr/ComparePerformance.py,sha256=fCATdlDgmgiz7QkQNLDMF9VweicesjOaTtfQeBRr64U,2229
3
- pypipr/LINUX.py,sha256=p8OJwS9GCs50pz2UlcbUooPWSZgWmLI67PjcnzDTSWI,100
3
+ pypipr/LINUX.py,sha256=XF5CR2imyRv8hGQpsDLDs_RU8xsD1aZLpFldEzP-mkU,77
4
4
  pypipr/PintUreg.py,sha256=_jmHZhUn8AcgFkXvZ6OTsWnjtp-CYcXUJ-dG_QdcARY,222
5
5
  pypipr/PintUregQuantity.py,sha256=ErSZKB-GHShi1zKac30XgFdBwAUrxMo80IQzIjQ2HVc,118
6
- pypipr/RunParallel.py,sha256=BnMasZTnr2gUVVy9dOXePlL_-ud2rWkVPFL2i-sN7rg,7358
7
- pypipr/WINDOWS.py,sha256=D-qiViq9LWTCaTefJhbxt-7Z2ty8ll7-DZ5NPFitT94,105
6
+ pypipr/RunParallel.py,sha256=3H6sVSeUSATQQsWBcDGTtaXuc-12Yc0XmDyVtsg3PMA,5992
7
+ pypipr/WINDOWS.py,sha256=NMW-94lzdqwfEWv2lF_i2GcSHJFDwWjccFufpymg4-E,83
8
8
  pypipr/__init__.py,sha256=W_lXKC8Eft-XzdZW0vWLzkOzEQhOTi8ddA32WGOXDpY,3107
9
9
  pypipr/__terminal__.py,sha256=xl_6nDOFNlkHbXZQ-y8dsZe6M6nVnc-HNfBJHfOokLM,1266
10
- pypipr/auto_reload.py,sha256=h31UvIzunCaPGvP1F5E-jvspk3K06P-EJuGfiN7WEtY,954
10
+ pypipr/auto_reload.py,sha256=FGchFBjQs_eT7CmOMLNYoch-17q7ySFOnPx5z1kbH3E,918
11
11
  pypipr/avg.py,sha256=wUtX3x8dgLoODhQLyMB-HRMVo8Ha2yz3cp7lgcUNbr0,218
12
12
  pypipr/basename.py,sha256=nypVfls6YL_7sY-MYHDcatm5flpBpGj2aMlIOKG9YqE,194
13
- pypipr/batch_calculate.py,sha256=rHDXHvzxqKdQlusb6L8mTn27nfadCJMkud9LtGgRNIU,836
13
+ pypipr/batch_calculate.py,sha256=JoaciQk7j-nXSdqlwonRdZ3Qu6uqUYhuA7oxpTC548s,503
14
14
  pypipr/batchmaker.py,sha256=y0D-fU0oCJsdffwZZyJMC0iLPjjiv-_43a7hLrChJDM,1110
15
15
  pypipr/bin_to_int.py,sha256=9s935sdD-CC1d7WCsNO3dd8nqTfC8lpkxHB1zQ--mZc,191
16
- pypipr/calculate.py,sha256=wzEbP8V1haM-JeIz85fBAuT2mgPc7uxQZ7wEuSUEXLc,805
17
- pypipr/choices.py,sha256=mbdDpcrfq8kiPsup_mK_wzcRxq5UyRiLg3YRtHlJxts,1606
16
+ pypipr/calculate.py,sha256=uSmDH43_x4ifdHN23PLdWKqjx023--1ZE6mf5A2hqg4,696
17
+ pypipr/choices.py,sha256=CFS5mfRdGvGmyGa3luwcc2iZf5AM_lYRP0s1i5Rad0U,1457
18
18
  pypipr/choices.py.bak,sha256=hjVToqAIeMoMfL3kJxOERAicEVsQyUGwzbnorhLdMA4,1664
19
- pypipr/chr_to_int.py,sha256=M7LFGF5dPY_fBEOeWGM1wjMedAs02VQZP81vnkVD7Wg,715
19
+ pypipr/chr_to_int.py,sha256=5ETJZag1eM8wa2ceIGsmNP-jNufC5bCScghTLcwGEAI,459
20
20
  pypipr/chunk_array.py,sha256=aodjp-daihl-Xd8kPqcpHZICZub7Jx0QBqyoF0bd0dY,385
21
21
  pypipr/console_run.py,sha256=vCJqDa1rExisqaFLNeWM-hnuXHfUfiYcyNAOJjldOHs,525
22
22
  pypipr/create_folder.py,sha256=0G78lY4Zig25Tlz5ky3kMNQxd6wL8Fjo2n8ZlgxtRwE,383
@@ -31,10 +31,10 @@ pypipr/get_class_method.py,sha256=RThCReUbF0uAlU-n5u0ELuP5yUbFqcKFfShswh7mgqc,63
31
31
  pypipr/get_filemtime.py,sha256=e8Glf4p9PJcL2yU8ZbrKOHYB-puaSNQsTS6Qhgp9F9s,227
32
32
  pypipr/get_filesize.py,sha256=2RCjrdZvaBDCdessFj-h7gLi13rPe6IXJXZcAoywWIA,196
33
33
  pypipr/github_pull.py,sha256=RLECOHA0Ki1wy5FJ9wWeyOGxwPc9nKKuY4R06d1o70E,186
34
- pypipr/github_push.py,sha256=8Gnn_A3ilU0NBnwEQdarc81L2dl1wPLNt604dV7ktuY,921
35
- pypipr/github_user.py,sha256=3uPTKwzUjcVx0rNCrkVwE_Bftlr_0BRKtikiW9000gk,590
34
+ pypipr/github_push.py,sha256=LO60-QwiT3F__bQ3Foz1Znn6wy0reDck4Rf36r62OCg,874
35
+ pypipr/github_user.py,sha256=fnds19Hlab3B94ORIYO9RiETF6p7dO-T3d1q_3XR-aw,483
36
36
  pypipr/hex_to_int.py,sha256=fqHnoPBZFqxbcyaJt-UbjzRJ8cjNXIuqH3UoSzUVMSs,197
37
- pypipr/iargv.py,sha256=PsKWNLeB7oH-CrUK5ut2R8_tNI0Ptcu0GKuZlgOAJPE,552
37
+ pypipr/iargv.py,sha256=rRKSTecPLZtso7Zm-1wrsgsYvAGx-o0IWHaQ167OlTE,468
38
38
  pypipr/idumps.py,sha256=-YMI6aZmRAMaiQOYXYDvuQLmJMCc4Z4tREEuuoVmFR4,748
39
39
  pypipr/idumps_html.py,sha256=IdDLF3YB7fKvoCjeQC4pLhrVdeWFpVupnSDeI_TsqEY,1428
40
40
  pypipr/ienumerate.py,sha256=7JBtPt5LVa7lTzbAx0WMoML6pgkx50Qpw9PLgUpp9sc,411
@@ -43,40 +43,40 @@ pypipr/iexec.py,sha256=nK_WMRK2LnyZh9i7NpYii_bfDZUKfAsJ5PVf5ZrHuRo,465
43
43
  pypipr/ijoin.py,sha256=2qi9Dx3t1ksZShC6a15FAJ-A8DnscohZxZFXwYM_x0g,2036
44
44
  pypipr/iloads.py,sha256=eyvSgqDxOXzU5dcPDT8cbtGtUIfjogxOqeQfwIhc92Q,638
45
45
  pypipr/iloads_html.py,sha256=HwpSvnV5PgjtPcXeYUeC_NovQ3jeKvGKkL3s4GfdVr8,4152
46
- pypipr/input_char.py,sha256=5GmpeWWn5eGeozvfX5A886vrtuEuextGjbbK5HAYeeE,1008
46
+ pypipr/input_char.py,sha256=IW06mULytCvP_1F9LX2_ITL2cq6PQdg9lkeW2AGVA78,839
47
47
  pypipr/int_to_bin.py,sha256=hRq8ANw5d32GC5dKaTdORWvfrPnYJyaU0Vi4TLodips,215
48
- pypipr/int_to_chr.py,sha256=tQhnnzlob4yF6j7RXCwvyyuZZ6Crg1C7LzjgzR9KNBE,610
48
+ pypipr/int_to_chr.py,sha256=Ae_cGhbwBCxmzqFrfjk0rLfAT049eYYjgMgJOtMpyhc,458
49
49
  pypipr/int_to_hex.py,sha256=w6kOPSNhOzjip7SWX7Q9df6f0vwwuKdbuHQhFjwOqN4,215
50
50
  pypipr/int_to_int.py,sha256=8qocfQtQowaVac4o4g1tpywMxm7OHDIbBqNl1RP6lGk,215
51
51
  pypipr/int_to_oct.py,sha256=GWu7VbHJXJxC6IvLEjQofUrbbXjQSEYPZvT2f6wh_Is,215
52
- pypipr/iopen.py,sha256=y1cLJuML1_lb64UfavXw8RemxM_olJhwZnECbXdOmi8,2786
52
+ pypipr/iopen.py,sha256=qEJfKgfrCj-qd17UUlSAw7O4LyV4n0ZKDBbfv288z20,2657
53
53
  pypipr/iprint.py,sha256=5ekT7RzcTd8Lsb8IQ9JeFJmFl2V6OYFbiHECt9W4iWg,838
54
54
  pypipr/irange.py,sha256=wOKFsN1BipHG4LcVVwOZQMn-820TDD4NckYyan2dj2g,3098
55
55
  pypipr/ireplace.py,sha256=RcVMXmbXH_cl4hXpTI5wnuzdPtkatpuZgYsZkfBLAJU,722
56
56
  pypipr/is_empty.py,sha256=eqsH6ATuuOLVVSpIsV_8zTBBibPrWjESu9LCMAv8YyY,683
57
- pypipr/is_iterable.py,sha256=VCzLfFZyQO5qF2wFTVbuZIxyf4BVkflWiRQaOjd9kFs,922
58
- pypipr/is_valid_url.py,sha256=g72vv4_9Zy8dtT0i1JvToRX-mgCzojQCBVHdO1KDwqo,1008
59
- pypipr/iscandir.py,sha256=U1zvRZrz--5Kge0JooQbY4kQN17bRt-8XR26ZFxUyoA,748
57
+ pypipr/is_iterable.py,sha256=WLLqD1Shuc_jvFci28xTdLVdoU-r3T93nZ9jB3nH3Jw,923
58
+ pypipr/is_valid_url.py,sha256=fH2SzoBvXWl3kRtCmixOVu5m1HfPJ-WazUJ0pVQuNoc,885
59
+ pypipr/iscandir.py,sha256=kw_9mHL2E3ZeT8w4xxUVEVNLj2ML8G9xvv9hqg9yaNg,631
60
60
  pypipr/isplit.py,sha256=N2BiA_wVnrENYwokSzvo0CAiQWk3g7AnwuWFIUgevNM,383
61
- pypipr/ivars.py,sha256=9_DYkv5_X7d5W2PIzGYrQHv__bombI-fAFlr7JGiF-Q,1010
61
+ pypipr/ivars.py,sha256=gTSQKis1hp71opy-p9btmvXfxpaIzD1FScNkKdrizyQ,737
62
62
  pypipr/log.py,sha256=aQ9DeFG03xIAUQYR4TiBdh80M6WvxDtNDTSjpKOSXHk,1041
63
63
  pypipr/oct_to_int.py,sha256=IoI_XOFZi6yzmqAirGIP6YWRgghU7IcPWzUk5DO1ZVo,191
64
- pypipr/password_generator.py,sha256=NnFAYkAr6kZiED4JZIJ15_VeGWSpBCCy9rSA5Re_CW4,496
65
- pypipr/pip_freeze_without_version.py,sha256=s-sJAtyI9Rdmsaw0dR8YB6cMkJ8bZRArqGrbajiaEJQ,794
66
- pypipr/poetry_publish.py,sha256=xMEUaTgEphWxbEjxMZU4HYgW2NkhlFsKy9kI5NKWvBc,399
67
- pypipr/poetry_update_version.py,sha256=dE-g8OTxzMGT_PC54TJ8UXmRBfCtNNbN6JGfDrvWGuE,612
64
+ pypipr/password_generator.py,sha256=O0KagbEEZnwm9OGy71G-wWvW1sJLdAmZNtlT4KKMrN4,357
65
+ pypipr/pip_freeze_without_version.py,sha256=txQ7zn-RCEsO94XK-IhSZtMgDUHvoMJm0kO0j07WEjM,675
66
+ pypipr/poetry_publish.py,sha256=2mebYHdjQ3PKaZsif_r1Nz4N-PEaoozPf4S6sm5nVkw,349
67
+ pypipr/poetry_update_version.py,sha256=iFA0DIz5_h7_v3PmWRzR5Ayu5h3ikNciTw_zI_3d3lg,470
68
68
  pypipr/print_colorize.py,sha256=Ld4cjI9E7C8NDLCOkJLtwiV7WYBjizJ6dvmE__lN2GY,541
69
69
  pypipr/print_dir.py,sha256=kO-YruOQ_gCaN7gsSXfcTbufWqAqtRemW8KrUqIijC8,919
70
70
  pypipr/print_log.py,sha256=Oct2xfcMv_8iK2ySioQYrtlTYou6Cd671PqgPL9IGUE,282
71
71
  pypipr/print_to_last_line.py,sha256=sggQngYMHH9P3cQO2m9Z5n7d_lin2CzDawWmokbrvXo,914
72
- pypipr/random_bool.py,sha256=99kM1fy7figeG5mZhbPzQ3FFzV47Jxg1aPImF78298E,405
72
+ pypipr/random_bool.py,sha256=OkvQqpusHGc5mt2nHCycA7-s2I0gbN6UxI7opMOFppE,352
73
73
  pypipr/restart.py,sha256=jUhsjZACAAcItYzCuiULHLFikoVyYDJWj16hCLARmAw,272
74
74
  pypipr/set_timeout.py,sha256=heg1J3jSArgG5_75BNLrujjh7I9meTyAzHpuAY_4IBc,698
75
75
  pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
76
76
  pypipr/str_cmp.py,sha256=2kavWiT4VTddXcBotF1CxDOWSygk5rFrbllKxBjw9dc,377
77
77
  pypipr/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
78
78
  pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
79
- pypipr-1.0.120.dist-info/METADATA,sha256=2GpwjDNsVBiRu9au870LxK9G3x72U4nmYClHptxHZ5c,52819
80
- pypipr-1.0.120.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
81
- pypipr-1.0.120.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
82
- pypipr-1.0.120.dist-info/RECORD,,
79
+ pypipr-1.0.122.dist-info/METADATA,sha256=6XCNNwlssMlafEPkaNwMA5sw1B4I7zcOrbhRl3iVuyU,52227
80
+ pypipr-1.0.122.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
81
+ pypipr-1.0.122.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
82
+ pypipr-1.0.122.dist-info/RECORD,,