pypipr 1.0.129__py3-none-any.whl → 1.0.131__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,6 +32,7 @@ from .github_push import github_push
32
32
  from .github_user import github_user
33
33
  from .hex_to_int import hex_to_int
34
34
  from .iargv import iargv
35
+ from .idir import idir
35
36
  from .idumps import idumps
36
37
  from .idumps_html import idumps_html
37
38
  from .ienumerate import ienumerate
@@ -70,6 +71,7 @@ from .random_bool import random_bool
70
71
  from .restart import restart
71
72
  from .set_timeout import set_timeout
72
73
  from .sets_ordered import sets_ordered
74
+ from .sqlite_all_tables import sqlite_all_tables
73
75
  from .str_cmp import str_cmp
74
76
  from .text_colorize import text_colorize
75
77
  from .to_str import to_str
@@ -1,4 +1,4 @@
1
- def get_class_method(cls):
1
+ def get_class_method(obj):
2
2
  """
3
3
  Mengembalikan berupa tuple yg berisi list dari method dalam class
4
4
 
@@ -20,7 +20,10 @@ def get_class_method(cls):
20
20
  print(list(get_class_method(ExampleGetClassMethod)))
21
21
  ```
22
22
  """
23
- for x in dir(cls):
24
- a = getattr(cls, x)
25
- if not x.startswith("__") and callable(a):
26
- yield a
23
+ # for x in dir(cls):
24
+ # a = getattr(cls, x)
25
+ # if not x.startswith("__") and callable(a):
26
+ # yield a
27
+ for i, v in vars(obj):
28
+ if not i.startswith("__") and callable(v):
29
+ yield v
pypipr/github_pull.py CHANGED
@@ -9,4 +9,4 @@ def github_pull():
9
9
  github_pull()
10
10
  ```
11
11
  """
12
- console_run("Git Pull", "git pull")
12
+ console_run("git pull")
pypipr/github_push.py CHANGED
@@ -1,6 +1,5 @@
1
1
  from .console_run import console_run
2
2
  from .print_colorize import print_colorize
3
- from .print_log import print_log
4
3
 
5
4
 
6
5
  def github_push(commit_msg=None):
@@ -20,11 +19,9 @@ def github_push(commit_msg=None):
20
19
  else:
21
20
  return input()
22
21
 
23
- print_log("Menjalankan Github Push")
24
- console_run("Checking files", "git status")
22
+ console_run("git status")
25
23
  msg = console_input("Commit Message if any or empty to exit : ", commit_msg)
26
24
  if msg:
27
- console_run("Mempersiapkan files", "git add .")
28
- console_run("Menyimpan files", f'git commit -m "{msg}"')
29
- console_run("Mengirim files", "git push")
30
- print_log("Selesai Menjalankan Github Push")
25
+ console_run("git add .")
26
+ console_run(f'git commit -m "{msg}"')
27
+ console_run("git push")
pypipr/idir.py ADDED
@@ -0,0 +1,16 @@
1
+ def idir(obj, skip_underscore=True):
2
+ """
3
+ Sama seperti dir() python, tetapi skip underscore
4
+
5
+ ```python
6
+ iprint(idir(__import__('pypipr')))
7
+ ```
8
+ """
9
+ r = []
10
+ for i in dir(obj):
11
+ if i.startswith("__") or i.endswith("__"):
12
+ if skip_underscore:
13
+ continue
14
+
15
+ r.append(i)
16
+ return r
@@ -0,0 +1,12 @@
1
+ import sqlite3
2
+
3
+
4
+ def sqlite_all_tables():
5
+ conn = sqlite3.connect("nama_database.db")
6
+ cursor = conn.cursor()
7
+ cursor.execute("SELECT name FROM sqlite_master WHERE type='table';")
8
+ tables = cursor.fetchall()
9
+ # for table in tables:
10
+ # print(table[0])
11
+ conn.close()
12
+ return tables
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.129
3
+ Version: 1.0.131
4
4
  Summary: The Python Package Index Project
5
5
  Author: ufiapjj
6
6
  Author-email: ufiapjj@gmail.com
@@ -248,8 +248,8 @@ iprint(irange("z", "a", 4))
248
248
 
249
249
  Output:
250
250
  ```py
251
- <generator object int_range at 0x7bebe0f840>
252
- <generator object int_range at 0x7bebe0f840>
251
+ <generator object int_range at 0x720713f740>
252
+ <generator object int_range at 0x720713f740>
253
253
  [13, 12, 11, 10, 9, 8, 7, 6]
254
254
  [2, 5, 8]
255
255
  [2, 5, 8]
@@ -281,7 +281,7 @@ print(list(batchmaker(s)))
281
281
 
282
282
  Output:
283
283
  ```py
284
- <generator object batchmaker at 0x7bebc6dc60>
284
+ <generator object batchmaker at 0x72071c5480>
285
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.']
286
286
  ```
287
287
 
@@ -335,7 +335,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
335
335
 
336
336
  Output:
337
337
  ```py
338
- <generator object batch_calculate at 0x7bebc7e020>
338
+ <generator object batch_calculate at 0x72071ce110>
339
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')>)]
340
340
  ```
341
341
 
@@ -441,7 +441,7 @@ print(list(chunk_array(arr, 5)))
441
441
 
442
442
  Output:
443
443
  ```py
444
- <generator object chunk_array at 0x7bebe0f940>
444
+ <generator object chunk_array at 0x720713f840>
445
445
  [[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
446
446
  ```
447
447
 
@@ -492,9 +492,9 @@ print(datetime_now("Etc/GMT+7"))
492
492
 
493
493
  Output:
494
494
  ```py
495
- 2024-05-07 21:19:41.860727+07:00
496
- 2024-05-07 14:19:41.861681+00:00
497
- 2024-05-07 07:19:41.863680-07:00
495
+ 2024-05-15 22:49:22.746958+07:00
496
+ 2024-05-15 15:49:22.748473+00:00
497
+ 2024-05-15 08:49:22.752419-07:00
498
498
  ```
499
499
 
500
500
  ## dict_first
@@ -600,7 +600,7 @@ iprint(filter_empty(var))
600
600
 
601
601
  Output:
602
602
  ```py
603
- <generator object filter_empty at 0x7bebc7dd50>
603
+ <generator object filter_empty at 0x72071cde40>
604
604
  [1, '0', True, {}, ['eee']]
605
605
  ```
606
606
 
@@ -623,7 +623,7 @@ None
623
623
 
624
624
  ## get_class_method
625
625
 
626
- `get_class_method(cls)`
626
+ `get_class_method(obj)`
627
627
 
628
628
  Mengembalikan berupa tuple yg berisi list dari method dalam class
629
629
 
@@ -645,12 +645,6 @@ print(get_class_method(ExampleGetClassMethod))
645
645
  print(list(get_class_method(ExampleGetClassMethod)))
646
646
  ```
647
647
 
648
- Output:
649
- ```py
650
- <generator object get_class_method at 0x7bebc7e2f0>
651
- [<function ExampleGetClassMethod.a at 0x7bebccdbc0>, <function ExampleGetClassMethod.b at 0x7bebccdb20>, <function ExampleGetClassMethod.c at 0x7bebccda80>, <function ExampleGetClassMethod.d at 0x7bebccdd00>]
652
- ```
653
-
654
648
  ## get_filesize
655
649
 
656
650
  `get_filesize(filename)`
@@ -749,6 +743,128 @@ Output:
749
743
  100
750
744
  ```
751
745
 
746
+ ## idir
747
+
748
+ `idir(obj, skip_underscore=True)`
749
+
750
+ Sama seperti dir() python, tetapi skip underscore
751
+
752
+ ```python
753
+ iprint(idir(__import__('pypipr')))
754
+ ```
755
+
756
+ Output:
757
+ ```py
758
+ ['ComparePerformance',
759
+ 'LINUX',
760
+ 'PintUreg',
761
+ 'PintUregQuantity',
762
+ 'RunParallel',
763
+ 'WINDOWS',
764
+ 'asyncio',
765
+ 'auto_reload',
766
+ 'avg',
767
+ 'basename',
768
+ 'batch_calculate',
769
+ 'batchmaker',
770
+ 'bin_to_int',
771
+ 'calculate',
772
+ 'choices',
773
+ 'chr_to_int',
774
+ 'chunk_array',
775
+ 'colorama',
776
+ 'console_run',
777
+ 'create_folder',
778
+ 'csv',
779
+ 'datetime',
780
+ 'datetime_from_string',
781
+ 'datetime_now',
782
+ 'dict_first',
783
+ 'dirname',
784
+ 'exit_if_empty',
785
+ 'filter_empty',
786
+ 'functools',
787
+ 'get_by_index',
788
+ 'get_class_method',
789
+ 'get_filemtime',
790
+ 'get_filesize',
791
+ 'github_init',
792
+ 'github_pull',
793
+ 'github_push',
794
+ 'github_user',
795
+ 'hex_to_int',
796
+ 'iargv',
797
+ 'idir',
798
+ 'idumps',
799
+ 'idumps_html',
800
+ 'ienumerate',
801
+ 'ienv',
802
+ 'iexec',
803
+ 'ijoin',
804
+ 'iloads',
805
+ 'iloads_html',
806
+ 'input_char',
807
+ 'inspect',
808
+ 'int_to_bin',
809
+ 'int_to_chr',
810
+ 'int_to_hex',
811
+ 'int_to_int',
812
+ 'int_to_oct',
813
+ 'io',
814
+ 'iopen',
815
+ 'iprint',
816
+ 'irange',
817
+ 'ireplace',
818
+ 'is_empty',
819
+ 'is_iterable',
820
+ 'is_valid_url',
821
+ 'iscandir',
822
+ 'isplit',
823
+ 'ivars',
824
+ 'json',
825
+ 'log',
826
+ 'lxml',
827
+ 'math',
828
+ 'multiprocessing',
829
+ 'oct_to_int',
830
+ 'operator',
831
+ 'os',
832
+ 'password_generator',
833
+ 'pathlib',
834
+ 'pint',
835
+ 'pip_freeze_without_version',
836
+ 'poetry_publish',
837
+ 'poetry_update_version',
838
+ 'pprint',
839
+ 'print_colorize',
840
+ 'print_dir',
841
+ 'print_log',
842
+ 'print_to_last_line',
843
+ 'queue',
844
+ 'random',
845
+ 'random_bool',
846
+ 're',
847
+ 'requests',
848
+ 'restart',
849
+ 'set_timeout',
850
+ 'sets_ordered',
851
+ 'sqlite_all_tables',
852
+ 'str_cmp',
853
+ 'string',
854
+ 'subprocess',
855
+ 'sys',
856
+ 'text_colorize',
857
+ 'textwrap',
858
+ 'threading',
859
+ 'time',
860
+ 'to_str',
861
+ 'tzdata',
862
+ 'uuid',
863
+ 'webbrowser',
864
+ 'yaml',
865
+ 'zoneinfo']
866
+ ```
867
+
752
868
  ## idumps_html
753
869
 
754
870
  `idumps_html(data, indent=None)`
@@ -937,7 +1053,7 @@ Output:
937
1053
 
938
1054
  ## ienumerate
939
1055
 
940
- `ienumerate(iterator, start=0, key=<function int_to_int at 0x7bee5a1120>)`
1056
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x721227f9c0>)`
941
1057
 
942
1058
  meningkatkan fungsi enumerate() pada python
943
1059
  untuk key menggunakan huruf dan basis angka lainnya.
@@ -950,7 +1066,7 @@ iprint(ienumerate(it, key=int_to_chr))
950
1066
 
951
1067
  Output:
952
1068
  ```py
953
- <generator object ienumerate at 0x7bebc7e3e0>
1069
+ <generator object ienumerate at 0x72071ce4d0>
954
1070
  [('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
955
1071
  ```
956
1072
 
@@ -1017,7 +1133,7 @@ print(ijoin(10, ' '))
1017
1133
 
1018
1134
  Output:
1019
1135
  ```py
1020
- dfs, qweqw, weq, asd
1136
+ dfs, weq, qweqw, asd
1021
1137
  ,ini,path,seperti,url,
1022
1138
  ini,path,seperti,url
1023
1139
  <li>satu</li>
@@ -1062,119 +1178,119 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
1062
1178
  Output:
1063
1179
  ```py
1064
1180
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1065
- [['Harga Emas Hari Ini - Selasa, 07 Mei 2024'],
1066
- ['Spot Emas USD2.320,30 (-3,35) / oz',
1067
- 'Kurs IDR16.025,01 (-68,99) / USD',
1068
- 'Emas IDR1.195.456 (-6.880) / gr'],
1069
- ['LM Antam (Jual)↑1.318.000 (+8.000) / gr',
1070
- 'LM Antam (Beli)↑1.210.000 (+7.000) / gr']],
1181
+ [['Harga Emas Hari Ini - Rabu, 15 Mei 2024'],
1182
+ ['Spot Emas USD2.381,54 (+26,92) / oz',
1183
+ 'Kurs IDR16.131,00 (+46,00) / USD',
1184
+ 'Emas IDR1.235.123 (+17.444) / gr'],
1185
+ ['LM Antam (Jual)↑1.332.000 (+8.000) / gr',
1186
+ 'LM Antam (Beli)↑1.223.000 (+8.000) / gr']],
1071
1187
  [['Harga Emas Hari Ini'],
1072
1188
  ['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
1073
1189
  ['per Gram (Rp)', 'per Batangan (Rp)', 'per Gram (Rp)', 'per Batangan (Rp)'],
1074
1190
  ['1000',
1075
- '1.259 (+8)',
1076
- '1.258.600 (+8.000)',
1191
+ '1.273 (+8)',
1192
+ '1.272.600 (+8.000)',
1077
1193
  '1.043.040 (+8.200)',
1078
1194
  '1.043.040.000 (+8.200.000)'],
1079
1195
  ['500',
1080
- '2.517 (+16)',
1081
- '1.258.640 (+8.000)',
1196
+ '2.545 (+16)',
1197
+ '1.272.640 (+8.000)',
1082
1198
  '1.043.082 (+8.200)',
1083
1199
  '521.541.000 (+4.100.000)'],
1084
1200
  ['250',
1085
- '5.036 (+32)',
1086
- '1.259.060 (+8.000)',
1201
+ '5.092 (+32)',
1202
+ '1.273.060 (+8.000)',
1087
1203
  '1.043.512 (+8.200)',
1088
1204
  '260.878.000 (+2.050.000)'],
1089
1205
  ['100',
1090
- '12.601 (+80)',
1091
- '1.260.120 (+8.000)',
1206
+ '12.741 (+80)',
1207
+ '1.274.120 (+8.000)',
1092
1208
  '1.044.600 (+8.200)',
1093
1209
  '104.460.000 (+820.000)'],
1094
1210
  ['50',
1095
- '25.218 (+160)',
1096
- '1.260.900 (+8.000)',
1211
+ '25.498 (+160)',
1212
+ '1.274.900 (+8.000)',
1097
1213
  '1.045.400 (+8.200)',
1098
1214
  '52.270.000 (+410.000)'],
1099
1215
  ['25',
1100
- '50.499 (+320)',
1101
- '1.262.480 (+8.000)',
1216
+ '51.059 (+320)',
1217
+ '1.276.480 (+8.000)',
1102
1218
  '1.047.040 (+8.200)',
1103
1219
  '26.176.000 (+205.000)'],
1104
1220
  ['10',
1105
- '126.750 (+800)',
1106
- '1.267.500 (+8.000)',
1221
+ '128.150 (+800)',
1222
+ '1.281.500 (+8.000)',
1107
1223
  '1.052.200 (+8.200)',
1108
1224
  '10.522.000 (+82.000)'],
1109
1225
  ['5',
1110
- '254.600 (+1.600)',
1111
- '1.273.000 (+8.000)',
1226
+ '257.400 (+1.600)',
1227
+ '1.287.000 (+8.000)',
1112
1228
  '1.057.800 (+8.200)',
1113
1229
  '5.289.000 (+41.000)'],
1114
1230
  ['3',
1115
- '426.556 (+2.667)',
1116
- '1.279.667 (+8.000)',
1231
+ '431.222 (+2.667)',
1232
+ '1.293.667 (+8.000)',
1117
1233
  '1.064.667 (+8.000)',
1118
1234
  '3.194.000 (+24.000)'],
1119
1235
  ['2',
1120
- '644.000 (+4.000)',
1121
- '1.288.000 (+8.000)',
1236
+ '651.000 (+4.000)',
1237
+ '1.302.000 (+8.000)',
1122
1238
  '1.073.500 (+8.500)',
1123
1239
  '2.147.000 (+17.000)'],
1124
1240
  ['1',
1125
- '1.318.000 (+8.000)',
1126
- '1.318.000 (+8.000)',
1241
+ '1.332.000 (+8.000)',
1242
+ '1.332.000 (+8.000)',
1127
1243
  '1.104.000 (+8.000)',
1128
1244
  '1.104.000 (+8.000)'],
1129
1245
  ['0.5',
1130
- '2.836.000 (+16.000)',
1131
- '1.418.000 (+8.000)',
1246
+ '2.864.000 (+16.000)',
1247
+ '1.432.000 (+8.000)',
1132
1248
  '1.208.000 (+8.000)',
1133
1249
  '604.000 (+4.000)'],
1134
- ['Update harga LM Antam :07 Mei 2024, pukul 08:23Harga pembelian kembali '
1135
- ':Rp. 1.210.000/gram (+7.000)',
1250
+ ['Update harga LM Antam :15 Mei 2024, pukul 08:33Harga pembelian kembali '
1251
+ ':Rp. 1.223.000/gram (+8.000)',
1136
1252
  'Update harga LM Pegadaian :31 Agustus 2023']],
1137
1253
  [['Spot Harga Emas Hari Ini (Market Open)'],
1138
1254
  ['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
1139
- ['Ounce\xa0(oz)', '2.320,30 (-3,35)', '16.025,01 (-68,99)', '37.182.831'],
1140
- ['Gram\xa0(gr)', '74,60', '16.025,01', '1.195.456 (-6.880)'],
1141
- ['Kilogram\xa0(kg)', '74.599,38', '16.025,01', '1.195.455.768'],
1142
- ['Update harga emas :07 Mei 2024, pukul 21:18Update kurs :07 Mei 2024, pukul '
1255
+ ['Ounce\xa0(oz)', '2.381,54 (+26,92)', '16.131,00 (+46,00)', '38.416.622'],
1256
+ ['Gram\xa0(gr)', '76,57', '16.131,00', '1.235.123 (+17.444)'],
1257
+ ['Kilogram\xa0(kg)', '76.568,29', '16.131,00', '1.235.123.071'],
1258
+ ['Update harga emas :15 Mei 2024, pukul 22:49Update kurs :15 Mei 2024, pukul '
1143
1259
  '13:10']],
1144
1260
  [['Gram', 'UBS Gold 99.99%'],
1145
1261
  ['Jual', 'Beli'],
1146
1262
  ['/ Batang', '/ Gram', '/ Batang', '/ Gram'],
1147
1263
  ['100',
1148
- '126.000.000 (+1.200.000)',
1149
- '1.260.000 (+12.000)',
1150
- '123.135.000 (+450.000)',
1151
- '1.231.350 (+4.500)'],
1264
+ '127.412.000 (+1.112.000)',
1265
+ '1.274.120 (+11.120)',
1266
+ '125.185.000 (+400.000)',
1267
+ '1.251.850 (+4.000)'],
1152
1268
  ['50',
1153
- '62.900.000 (+400.000)',
1154
- '1.258.000 (+8.000)',
1155
- '61.620.000 (+225.000)',
1156
- '1.232.400 (+4.500)'],
1269
+ '63.600.000 (+350.000)',
1270
+ '1.272.000 (+7.000)',
1271
+ '62.645.000 (+200.000)',
1272
+ '1.252.900 (+4.000)'],
1157
1273
  ['25',
1158
- '31.500.000 (+200.000)',
1159
- '1.260.000 (+8.000)',
1160
- '30.912.500 (+112.500)',
1161
- '1.236.500 (+4.500)'],
1274
+ '31.850.000 (+175.000)',
1275
+ '1.274.000 (+7.000)',
1276
+ '31.425.000 (+100.000)',
1277
+ '1.257.000 (+4.000)'],
1162
1278
  ['10',
1163
- '12.650.000 (+80.000)',
1164
- '1.265.000 (+8.000)',
1165
- '12.415.000 (+45.000)',
1166
- '1.241.500 (+4.500)'],
1279
+ '12.790.000 (+80.000)',
1280
+ '1.279.000 (+8.000)',
1281
+ '12.620.000 (+40.000)',
1282
+ '1.262.000 (+4.000)'],
1167
1283
  ['5',
1168
- '6.350.000 (+40.000)',
1169
- '1.270.000 (+8.000)',
1170
- '6.259.500 (+22.500)',
1171
- '1.251.900 (+4.500)'],
1284
+ '6.420.000 (+40.000)',
1285
+ '1.284.000 (+8.000)',
1286
+ '6.362.000 (+20.000)',
1287
+ '1.272.400 (+4.000)'],
1172
1288
  ['1',
1173
- '1.315.000 (+5.000)',
1174
- '1.315.000 (+5.000)',
1175
- '1.284.500 (+4.500)',
1176
- '1.284.500 (+4.500)'],
1177
- ['', 'Update :07 Mei 2024, pukul 11:17']],
1289
+ '1.330.000 (+6.000)',
1290
+ '1.330.000 (+6.000)',
1291
+ '1.305.000 (+4.000)',
1292
+ '1.305.000 (+4.000)'],
1293
+ ['', 'Update :15 Mei 2024, pukul 12:24']],
1178
1294
  [['Konversi Satuan'],
1179
1295
  ['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
1180
1296
  ['Ounce\xa0(oz)', '1', '31,1034767696', '0,0311034768'],
@@ -1184,37 +1300,37 @@ Output:
1184
1300
  ['Waktu', 'Emas'],
1185
1301
  ['Unit', 'USD', 'IDR'],
1186
1302
  ['Angka', '+/-', 'Angka', '+/-'],
1187
- ['Hari Ini', 'Kurs', '', '', '16.094', '-69-0,43%'],
1188
- ['oz', '2.323,65', '-3,35-0,14%', '37.396.823', '-213.992-0,57%'],
1189
- ['gr', '74,71', '-0,11-0,14%', '1.202.336', '-6.880-0,57%'],
1190
- ['30 Hari', 'Kurs', '', '', '15.907', '+118+0,74%'],
1191
- ['oz', '2.329,93', '-9,63-0,41%', '37.062.197', '+120.634+0,33%'],
1192
- ['gr', '74,91', '-0,31-0,41%', '1.191.577', '+3.878+0,33%'],
1193
- ['2 Bulan', 'Kurs', '', '', '15.658', '+367+2,34%'],
1194
- ['oz', '2.179,67', '+140,63+6,45%', '34.129.273', '+3.053.558+8,95%'],
1195
- ['gr', '70,08', '+4,52+6,45', '1.097.282', '+98.174+8,95%'],
1196
- ['6 Bulan', 'Kurs', '', '', '15.629', '+396+2,53%'],
1197
- ['oz', '1.960,90', '+359,40+18,33%', '30.646.906', '+6.535.925+21,33%'],
1198
- ['gr', '63,04', '+11,55+18,33%', '985.321', '+210.135+21,33%'],
1199
- ['1 Tahun', 'Kurs', '', '', '15.731', '+294+1,87%'],
1200
- ['oz', '1.823,86', '+496,44+27,22%', '28.691.142', '+8.491.689+29,60%'],
1201
- ['gr', '58,64', '+15,96+27,22%', '922.442', '+273.014+29,60%'],
1202
- ['2 Tahun', 'Kurs', '', '', '14.418', '+1.607+11,15%'],
1203
- ['oz', '1.883,86', '+436,44+23,17%', '27.161.493', '+10.021.337+36,90%'],
1204
- ['gr', '60,57', '+14,03+23,17%', '873.262', '+322.193+36,90%'],
1205
- ['3 Tahun', 'Kurs', '', '', '14.364', '+1.661+11,56%'],
1206
- ['oz', '1.831,43', '+488,87+26,69%', '26.306.661', '+10.876.170+41,34%'],
1207
- ['gr', '58,88', '+15,72+26,69%', '845.779', '+349.677+41,34%'],
1208
- ['5 Tahun', 'Kurs', '', '', '14.338', '+1.687+11,77%'],
1209
- ['oz', '1.284,03', '+1.036,27+80,70%', '18.410.422', '+18.772.409+101,97%'],
1210
- ['gr', '41,28', '+33,32+80,70%', '591.909', '+603.547+101,97%']])
1303
+ ['Hari Ini', 'Kurs', '', '', '16.085', '+46+0,29%'],
1304
+ ['oz', '2.354,62', '+26,92+1,14%', '37.874.063', '+542.559+1,43%'],
1305
+ ['gr', '75,70', '+0,87+1,14%', '1.217.679', '+17.444+1,43%'],
1306
+ ['30 Hari', 'Kurs', '', '', '15.907', '+224+1,41%'],
1307
+ ['oz', '2.359,26', '+22,28+0,94%', '37.528.749', '+887.873+2,37%'],
1308
+ ['gr', '75,85', '+0,72+0,94%', '1.206.577', '+28.546+2,37%'],
1309
+ ['2 Bulan', 'Kurs', '', '', '15.582', '+549+3,52%'],
1310
+ ['oz', '2.156,08', '+225,46+10,46%', '33.596.039', '+4.820.583+14,35%'],
1311
+ ['gr', '69,32', '+7,25+10,46', '1.080.138', '+154.985+14,35%'],
1312
+ ['6 Bulan', 'Kurs', '', '', '15.595', '+536+3,44%'],
1313
+ ['oz', '1.981,17', '+400,37+20,21%', '30.896.346', '+7.520.276+24,34%'],
1314
+ ['gr', '63,70', '+12,87+20,21%', '993.341', '+241.782+24,34%'],
1315
+ ['1 Tahun', 'Kurs', '', '', '15.731', '+400+2,54%'],
1316
+ ['oz', '1.823,86', '+557,68+30,58%', '28.691.142', '+9.725.480+33,90%'],
1317
+ ['gr', '58,64', '+17,93+30,58%', '922.442', '+312.681+33,90%'],
1318
+ ['2 Tahun', 'Kurs', '', '', '14.585', '+1.546+10,60%'],
1319
+ ['oz', '1.816,04', '+565,50+31,14%', '26.486.962', '+11.929.660+45,04%'],
1320
+ ['gr', '58,39', '+18,18+31,14%', '851.576', '+383.547+45,04%'],
1321
+ ['3 Tahun', 'Kurs', '', '', '14.198', '+1.933+13,61%'],
1322
+ ['oz', '1.843,91', '+537,63+29,16%', '26.179.834', '+12.236.788+46,74%'],
1323
+ ['gr', '59,28', '+17,29+29,16%', '841.701', '+393.422+46,74%'],
1324
+ ['5 Tahun', 'Kurs', '', '', '14.469', '+1.662+11,49%'],
1325
+ ['oz', '1.275,87', '+1.105,67+86,66%', '18.460.563', '+19.956.059+108,10%'],
1326
+ ['gr', '41,02', '+35,55+86,66%', '593.521', '+641.602+108,10%']])
1211
1327
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1212
1328
  [[''],
1213
1329
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1214
- ['USD', '74,60↓', '-0,11-0,15%'],
1215
- ['KURS', '16.046,00', '+2,10+0,01%'],
1216
- ['IDR', '1.197.021,61↓', '-1.571,35-0,13%'],
1217
- ['Selasa, 07 Mei 2024 21:18']],
1330
+ ['USD', '76,57↑', '+0,87+1,15%'],
1331
+ ['KURS', '15.930,00', '-173,05-1,07%'],
1332
+ ['IDR', '1.219.732,84↑', '+687,01+0,06%'],
1333
+ ['Rabu, 15 Mei 2024 22:49']],
1218
1334
  [[''],
1219
1335
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1220
1336
  'Hari Ini',
@@ -1225,19 +1341,19 @@ Output:
1225
1341
  '']],
1226
1342
  [['Pergerakkan Harga Emas 1 Gram'],
1227
1343
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1228
- ['USD', '74,71', '74,60 - 74,71', '74,66'],
1229
- ['KURS', '16.043,90', '16.043,90 - 16.046,00', '16.044,95'],
1230
- ['IDR', '1.198.592,96', '1.197.021,61 - 1.198.592,96', '1.197.807,29'],
1344
+ ['USD', '75,70', '75,70 - 76,57', '76,14'],
1345
+ ['KURS', '16.103,05', '15.930,00 - 16.103,05', '16.016,53'],
1346
+ ['IDR', '1.219.045,83', '1.219.045,83 - 1.219.732,84', '1.219.389,34'],
1231
1347
  [''],
1232
1348
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1233
- ['USD', '66,32', '64,07 - 77,14', '+8,28 (12,48%)'],
1234
- ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+655,90 (4,26%)'],
1235
- ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+176.292,08 (17,27%)'],
1349
+ ['USD', '66,32', '64,07 - 77,14', '+10,25 (15,46%)'],
1350
+ ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+539,90 (3,51%)'],
1351
+ ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+199.003,31 (19,50%)'],
1236
1352
  [''],
1237
1353
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1238
- ['USD', '64,84', '58,43 - 77,14', '+9,76 (15,05%)'],
1239
- ['KURS', '14.674,80', '14.674,80 - 16.307,80', '+1.371,20 (9,34%)'],
1240
- ['IDR', '951.570,92', '912.925,68 - 1.256.829,06', '+245.450,69 (25,79%)']])
1354
+ ['USD', '64,66', '58,43 - 77,14', '+11,91 (18,42%)'],
1355
+ ['KURS', '14.844,45', '14.796,95 - 16.307,80', '+1.085,55 (7,31%)'],
1356
+ ['IDR', '959.794,03', '912.925,68 - 1.256.829,06', '+259.938,81 (27,08%)']])
1241
1357
  ```
1242
1358
 
1243
1359
  ## iloads
@@ -1367,7 +1483,7 @@ Output:
1367
1483
  ```py
1368
1484
  8
1369
1485
  ['mana', 'aja']
1370
- [<Element a at 0x7bebcba670>, <Element a at 0x7be7f2a260>, <Element a at 0x7be7f2a300>, <Element a at 0x7be7f2a350>, <Element a at 0x7be7f2a3a0>, <Element a at 0x7be7f2a3f0>, <Element a at 0x7be7f2a440>, <Element a at 0x7be7f2a490>, <Element a at 0x7be7f2a4e0>, <Element a at 0x7be7f2a530>, <Element a at 0x7be7f2a580>, <Element a at 0x7be7f2a5d0>, <Element a at 0x7be7f2a620>, <Element a at 0x7be7f2a670>, <Element a at 0x7be7f2a6c0>, <Element a at 0x7be7f2a710>, <Element a at 0x7be7f2a760>, <Element a at 0x7be7f2a7b0>]
1486
+ [<Element a at 0x720721def0>, <Element a at 0x720721ef80>, <Element a at 0x7207074550>, <Element a at 0x72070745f0>, <Element a at 0x7207074640>, <Element a at 0x7207074690>, <Element a at 0x72070746e0>, <Element a at 0x7207074730>, <Element a at 0x7207074780>, <Element a at 0x72070747d0>, <Element a at 0x7207074820>, <Element a at 0x7207074870>, <Element a at 0x72070748c0>, <Element a at 0x7207074910>, <Element a at 0x7207074960>, <Element a at 0x72070749b0>, <Element a at 0x7207074a00>, <Element a at 0x7207074a50>]
1371
1487
  False
1372
1488
  ```
1373
1489
 
@@ -1429,7 +1545,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1429
1545
 
1430
1546
  Output:
1431
1547
  ```py
1432
- <generator object iscandir at 0x7bebe0fb40>
1548
+ <generator object iscandir at 0x720713fa40>
1433
1549
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1434
1550
  ```
1435
1551
 
@@ -1462,111 +1578,113 @@ iprint(ivars(__import__('pypipr')))
1462
1578
 
1463
1579
  Output:
1464
1580
  ```py
1465
- {'function': {'avg': <function avg at 0x7bf979fb00>,
1466
- 'get_filemtime': <function get_filemtime at 0x7bee76fd80>,
1467
- 'print_colorize': <function print_colorize at 0x7bee76ff60>,
1468
- 'print_log': <function print_log at 0x7bee76fe20>,
1469
- 'console_run': <function console_run at 0x7bee76fec0>,
1470
- 'auto_reload': <function auto_reload at 0x7beec372e0>,
1471
- 'basename': <function basename at 0x7bee76fce0>,
1472
- 'chr_to_int': <function chr_to_int at 0x7bee774540>,
1473
- 'int_to_chr': <function int_to_chr at 0x7bee7745e0>,
1474
- 'irange': <function irange at 0x7bee774860>,
1475
- 'batchmaker': <function batchmaker at 0x7bee774220>,
1476
- 'calculate': <function calculate at 0x7bee774360>,
1477
- 'batch_calculate': <function batch_calculate at 0x7bee7740e0>,
1478
- 'bin_to_int': <function bin_to_int at 0x7bee774180>,
1479
- 'is_empty': <function is_empty at 0x7bee774fe0>,
1480
- 'exit_if_empty': <function exit_if_empty at 0x7bee774ea0>,
1481
- 'input_char': <function input_char at 0x7bee7744a0>,
1482
- 'choices': <function choices at 0x7bee775260>,
1483
- 'chunk_array': <function chunk_array at 0x7bee775300>,
1484
- 'create_folder': <function create_folder at 0x7bee7753a0>,
1485
- 'datetime_from_string': <function datetime_from_string at 0x7bee775440>,
1486
- 'datetime_now': <function datetime_now at 0x7bee7754e0>,
1487
- 'dict_first': <function dict_first at 0x7bee7776a0>,
1488
- 'dirname': <function dirname at 0x7bee777740>,
1489
- 'is_iterable': <function is_iterable at 0x7bee777920>,
1490
- 'to_str': <function to_str at 0x7bee7779c0>,
1491
- 'filter_empty': <function filter_empty at 0x7bee7777e0>,
1492
- 'get_by_index': <function get_by_index at 0x7bee775620>,
1493
- 'get_class_method': <function get_class_method at 0x7bee777a60>,
1494
- 'get_filesize': <function get_filesize at 0x7bee777ba0>,
1495
- 'github_init': <function github_init at 0x7bee777c40>,
1496
- 'github_pull': <function github_pull at 0x7bee777ce0>,
1497
- 'github_push': <function github_push at 0x7bee777e20>,
1498
- 'github_user': <function github_user at 0x7bee777ec0>,
1499
- 'hex_to_int': <function hex_to_int at 0x7bee777f60>,
1500
- 'iargv': <function iargv at 0x7bee534040>,
1501
- 'idumps_html': <function idumps_html at 0x7bee5342c0>,
1502
- 'idumps': <function idumps at 0x7bee534180>,
1503
- 'int_to_int': <function int_to_int at 0x7bee5a1120>,
1504
- 'ienumerate': <function ienumerate at 0x7bee56b4c0>,
1505
- 'ienv': <function ienv at 0x7bee5a0fe0>,
1506
- 'iexec': <function iexec at 0x7bee5a11c0>,
1507
- 'ijoin': <function ijoin at 0x7bee5a1300>,
1508
- 'iloads_html': <function iloads_html at 0x7bee5a14e0>,
1509
- 'iloads': <function iloads at 0x7bfa1aa660>,
1510
- 'int_to_bin': <function int_to_bin at 0x7bee5a1260>,
1511
- 'int_to_hex': <function int_to_hex at 0x7bee5a1440>,
1512
- 'int_to_oct': <function int_to_oct at 0x7bee5a1580>,
1513
- 'is_valid_url': <function is_valid_url at 0x7bee5a1760>,
1514
- 'iopen': <function iopen at 0x7bee610f40>,
1515
- 'iprint': <function iprint at 0x7bee5a16c0>,
1516
- 'ireplace': <function ireplace at 0x7bee5a1a80>,
1517
- 'iscandir': <function iscandir at 0x7bee4ae2a0>,
1518
- 'isplit': <function isplit at 0x7bee4ae340>,
1519
- 'ivars': <function ivars at 0x7bee4ae3e0>,
1520
- 'log': <function log at 0x7bee4ae480>,
1521
- 'oct_to_int': <function oct_to_int at 0x7bee4ae520>,
1522
- 'password_generator': <function password_generator at 0x7bee4ae5c0>,
1523
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7bee4ae700>,
1524
- 'poetry_publish': <function poetry_publish at 0x7bee4ae7a0>,
1525
- 'poetry_update_version': <function poetry_update_version at 0x7bee4ae8e0>,
1526
- 'print_dir': <function print_dir at 0x7bee4aeac0>,
1527
- 'print_to_last_line': <function print_to_last_line at 0x7bee4aeb60>,
1528
- 'random_bool': <function random_bool at 0x7bee4aec00>,
1529
- 'restart': <function restart at 0x7bee4aeca0>,
1530
- 'set_timeout': <function set_timeout at 0x7bee4aed40>,
1531
- 'sets_ordered': <function sets_ordered at 0x7bee4aede0>,
1532
- 'str_cmp': <function str_cmp at 0x7bee4aee80>,
1533
- 'text_colorize': <function text_colorize at 0x7bee4aef20>},
1581
+ {'function': {'avg': <function avg at 0x7217bd8040>,
1582
+ 'get_filemtime': <function get_filemtime at 0x7212423060>,
1583
+ 'print_colorize': <function print_colorize at 0x7212423240>,
1584
+ 'print_log': <function print_log at 0x7212423100>,
1585
+ 'console_run': <function console_run at 0x72124231a0>,
1586
+ 'auto_reload': <function auto_reload at 0x72128b8f40>,
1587
+ 'basename': <function basename at 0x72123be980>,
1588
+ 'chr_to_int': <function chr_to_int at 0x72124237e0>,
1589
+ 'int_to_chr': <function int_to_chr at 0x7212423880>,
1590
+ 'irange': <function irange at 0x7212423b00>,
1591
+ 'batchmaker': <function batchmaker at 0x72124234c0>,
1592
+ 'calculate': <function calculate at 0x7212423600>,
1593
+ 'batch_calculate': <function batch_calculate at 0x7212423380>,
1594
+ 'bin_to_int': <function bin_to_int at 0x72128b8ea0>,
1595
+ 'is_empty': <function is_empty at 0x72124302c0>,
1596
+ 'exit_if_empty': <function exit_if_empty at 0x7212430180>,
1597
+ 'input_char': <function input_char at 0x7212430220>,
1598
+ 'choices': <function choices at 0x7212430540>,
1599
+ 'chunk_array': <function chunk_array at 0x72124305e0>,
1600
+ 'create_folder': <function create_folder at 0x7212430680>,
1601
+ 'datetime_from_string': <function datetime_from_string at 0x7212430720>,
1602
+ 'datetime_now': <function datetime_now at 0x72124300e0>,
1603
+ 'dict_first': <function dict_first at 0x7212432a20>,
1604
+ 'dirname': <function dirname at 0x7212432ac0>,
1605
+ 'is_iterable': <function is_iterable at 0x7212432ca0>,
1606
+ 'to_str': <function to_str at 0x7212432d40>,
1607
+ 'filter_empty': <function filter_empty at 0x72124232e0>,
1608
+ 'get_by_index': <function get_by_index at 0x7212432b60>,
1609
+ 'get_class_method': <function get_class_method at 0x7212432de0>,
1610
+ 'get_filesize': <function get_filesize at 0x7212432f20>,
1611
+ 'github_init': <function github_init at 0x7212432fc0>,
1612
+ 'github_pull': <function github_pull at 0x7212433060>,
1613
+ 'github_push': <function github_push at 0x72124331a0>,
1614
+ 'github_user': <function github_user at 0x7212433240>,
1615
+ 'hex_to_int': <function hex_to_int at 0x72124332e0>,
1616
+ 'iargv': <function iargv at 0x7212433380>,
1617
+ 'idir': <function idir at 0x7212433420>,
1618
+ 'idumps_html': <function idumps_html at 0x7212433b00>,
1619
+ 'idumps': <function idumps at 0x7212433560>,
1620
+ 'int_to_int': <function int_to_int at 0x721227f9c0>,
1621
+ 'ienumerate': <function ienumerate at 0x7212272020>,
1622
+ 'ienv': <function ienv at 0x721227f6a0>,
1623
+ 'iexec': <function iexec at 0x721227fa60>,
1624
+ 'ijoin': <function ijoin at 0x721227fba0>,
1625
+ 'iloads_html': <function iloads_html at 0x721227fd80>,
1626
+ 'iloads': <function iloads at 0x72185da020>,
1627
+ 'int_to_bin': <function int_to_bin at 0x721227fb00>,
1628
+ 'int_to_hex': <function int_to_hex at 0x721227fce0>,
1629
+ 'int_to_oct': <function int_to_oct at 0x721227fe20>,
1630
+ 'is_valid_url': <function is_valid_url at 0x721208fba0>,
1631
+ 'iopen': <function iopen at 0x7212294040>,
1632
+ 'iprint': <function iprint at 0x721208f6a0>,
1633
+ 'ireplace': <function ireplace at 0x721208f7e0>,
1634
+ 'iscandir': <function iscandir at 0x72121549a0>,
1635
+ 'isplit': <function isplit at 0x7212154a40>,
1636
+ 'ivars': <function ivars at 0x7212154ae0>,
1637
+ 'log': <function log at 0x7212154b80>,
1638
+ 'oct_to_int': <function oct_to_int at 0x7212154c20>,
1639
+ 'password_generator': <function password_generator at 0x7212154cc0>,
1640
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7212154e00>,
1641
+ 'poetry_publish': <function poetry_publish at 0x7212154ea0>,
1642
+ 'poetry_update_version': <function poetry_update_version at 0x7212154fe0>,
1643
+ 'print_dir': <function print_dir at 0x72121551c0>,
1644
+ 'print_to_last_line': <function print_to_last_line at 0x7212155260>,
1645
+ 'random_bool': <function random_bool at 0x7212155300>,
1646
+ 'restart': <function restart at 0x72121553a0>,
1647
+ 'set_timeout': <function set_timeout at 0x7212155440>,
1648
+ 'sets_ordered': <function sets_ordered at 0x72121554e0>,
1649
+ 'sqlite_all_tables': <function sqlite_all_tables at 0x7212155580>,
1650
+ 'str_cmp': <function str_cmp at 0x7212155620>,
1651
+ 'text_colorize': <function text_colorize at 0x7212155120>},
1534
1652
  'class': {'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1535
1653
  'PintUregQuantity': <class 'pint.Quantity'>,
1536
1654
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
1537
1655
  'variable': {'LINUX': True,
1538
- 'PintUreg': <pint.registry.UnitRegistry object at 0x7bf97e9fd0>,
1656
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x7217be6ed0>,
1539
1657
  'WINDOWS': False},
1540
1658
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
1541
- 'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
1659
+ 'colorama': <module 'colorama' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.11/lib/python3.11/site-packages/colorama/__init__.py'>,
1542
1660
  'csv': <module 'csv' from '/data/data/com.termux/files/usr/lib/python3.11/csv.py'>,
1543
1661
  'datetime': <module 'datetime' from '/data/data/com.termux/files/usr/lib/python3.11/datetime.py'>,
1544
1662
  'functools': <module 'functools' from '/data/data/com.termux/files/usr/lib/python3.11/functools.py'>,
1545
1663
  'inspect': <module 'inspect' from '/data/data/com.termux/files/usr/lib/python3.11/inspect.py'>,
1546
1664
  'io': <module 'io' (frozen)>,
1547
1665
  'json': <module 'json' from '/data/data/com.termux/files/usr/lib/python3.11/json/__init__.py'>,
1548
- 'lxml': <module 'lxml' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/lxml/__init__.py'>,
1666
+ 'lxml': <module 'lxml' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.11/lib/python3.11/site-packages/lxml/__init__.py'>,
1549
1667
  'math': <module 'math' from '/data/data/com.termux/files/usr/lib/python3.11/lib-dynload/math.cpython-311.so'>,
1550
1668
  'multiprocessing': <module 'multiprocessing' from '/data/data/com.termux/files/usr/lib/python3.11/multiprocessing/__init__.py'>,
1551
1669
  'operator': <module 'operator' from '/data/data/com.termux/files/usr/lib/python3.11/operator.py'>,
1552
1670
  'os': <module 'os' (frozen)>,
1553
1671
  'pathlib': <module 'pathlib' from '/data/data/com.termux/files/usr/lib/python3.11/pathlib.py'>,
1554
- 'pint': <module 'pint' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/pint/__init__.py'>,
1672
+ 'pint': <module 'pint' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.11/lib/python3.11/site-packages/pint/__init__.py'>,
1555
1673
  'pprint': <module 'pprint' from '/data/data/com.termux/files/usr/lib/python3.11/pprint.py'>,
1556
1674
  'queue': <module 'queue' from '/data/data/com.termux/files/usr/lib/python3.11/queue.py'>,
1557
1675
  'random': <module 'random' from '/data/data/com.termux/files/usr/lib/python3.11/random.py'>,
1558
1676
  're': <module 're' from '/data/data/com.termux/files/usr/lib/python3.11/re/__init__.py'>,
1559
- 'requests': <module 'requests' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/requests/__init__.py'>,
1677
+ 'requests': <module 'requests' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.11/lib/python3.11/site-packages/requests/__init__.py'>,
1560
1678
  'string': <module 'string' from '/data/data/com.termux/files/usr/lib/python3.11/string.py'>,
1561
1679
  'subprocess': <module 'subprocess' from '/data/data/com.termux/files/usr/lib/python3.11/subprocess.py'>,
1562
1680
  'sys': <module 'sys' (built-in)>,
1563
1681
  'textwrap': <module 'textwrap' from '/data/data/com.termux/files/usr/lib/python3.11/textwrap.py'>,
1564
1682
  'threading': <module 'threading' from '/data/data/com.termux/files/usr/lib/python3.11/threading.py'>,
1565
1683
  'time': <module 'time' (built-in)>,
1566
- 'tzdata': <module 'tzdata' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/tzdata/__init__.py'>,
1684
+ 'tzdata': <module 'tzdata' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.11/lib/python3.11/site-packages/tzdata/__init__.py'>,
1567
1685
  'uuid': <module 'uuid' from '/data/data/com.termux/files/usr/lib/python3.11/uuid.py'>,
1568
1686
  'webbrowser': <module 'webbrowser' from '/data/data/com.termux/files/usr/lib/python3.11/webbrowser.py'>,
1569
- 'yaml': <module 'yaml' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/yaml/__init__.py'>,
1687
+ 'yaml': <module 'yaml' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.11/lib/python3.11/site-packages/yaml/__init__.py'>,
1570
1688
  'zoneinfo': <module 'zoneinfo' from '/data/data/com.termux/files/usr/lib/python3.11/zoneinfo/__init__.py'>}}
1571
1689
  ```
1572
1690
 
@@ -1625,7 +1743,7 @@ print(password_generator())
1625
1743
 
1626
1744
  Output:
1627
1745
  ```py
1628
- PoH*J>2x
1746
+ Iq%*yxms
1629
1747
  ```
1630
1748
 
1631
1749
  ## pip_freeze_without_version
@@ -1683,7 +1801,7 @@ Output:
1683
1801
  __enter__ : https:/www.google.com
1684
1802
  __fspath__ : https:/www.google.com
1685
1803
  __getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1686
- __hash__ : 6161109682065483924
1804
+ __hash__ : 5044247693933644654
1687
1805
  __init__ : None
1688
1806
  __init_subclass__ : None
1689
1807
  __module__ : pathlib
@@ -1696,8 +1814,8 @@ Output:
1696
1814
  _cached_cparts : ['https:', 'www.google.com']
1697
1815
  _cparts : ['https:', 'www.google.com']
1698
1816
  _drv :
1699
- _flavour : <pathlib._PosixFlavour object at 0x7bf95d1150>
1700
- _hash : 6161109682065483924
1817
+ _flavour : <pathlib._PosixFlavour object at 0x7217a215d0>
1818
+ _hash : 5044247693933644654
1701
1819
  _parts : ['https:', 'www.google.com']
1702
1820
  _root :
1703
1821
  _str : https:/www.google.com
@@ -1719,7 +1837,7 @@ Output:
1719
1837
  is_reserved : False
1720
1838
  is_socket : False
1721
1839
  is_symlink : False
1722
- iterdir : <generator object Path.iterdir at 0x7bebcd9a80>
1840
+ iterdir : <generator object Path.iterdir at 0x72071bef80>
1723
1841
  joinpath : https:/www.google.com
1724
1842
  name : www.google.com
1725
1843
  parent : https:
@@ -1759,7 +1877,7 @@ print(random_bool())
1759
1877
 
1760
1878
  Output:
1761
1879
  ```py
1762
- False
1880
+ True
1763
1881
  ```
1764
1882
 
1765
1883
  ## restart
@@ -1793,7 +1911,7 @@ x.cancel()
1793
1911
 
1794
1912
  Output:
1795
1913
  ```py
1796
- <Timer(Thread-2, started 532150205680)>
1914
+ <Timer(Thread-2, started 489726119152)>
1797
1915
  menghentikan timeout 7
1798
1916
  ```
1799
1917
 
@@ -1811,10 +1929,14 @@ print(list(sets_ordered(array)))
1811
1929
 
1812
1930
  Output:
1813
1931
  ```py
1814
- <generator object sets_ordered at 0x7beec0d700>
1932
+ <generator object sets_ordered at 0x72072257d0>
1815
1933
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
1816
1934
  ```
1817
1935
 
1936
+ ## sqlite_all_tables
1937
+
1938
+ `sqlite_all_tables()`
1939
+
1818
1940
  ## str_cmp
1819
1941
 
1820
1942
  `str_cmp(t1, t2)`
@@ -1881,15 +2003,15 @@ print(ExampleComparePerformance().compare_performance())
1881
2003
 
1882
2004
  Output:
1883
2005
  ```py
1884
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7beec0d630>,
2006
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7207224860>,
1885
2007
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
1886
2008
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
1887
2009
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
1888
- {'a': 100, 'b': 123, 'c': 135, 'd': 143}
1889
- {'a': 100, 'b': 131, 'c': 135, 'd': 120}
1890
- {'a': 100, 'b': 121, 'c': 121, 'd': 122}
1891
- {'a': 100, 'b': 117, 'c': 110, 'd': 122}
1892
- {'a': 100, 'b': 122, 'c': 115, 'd': 121}
2010
+ {'a': 135, 'b': 128, 'c': 100, 'd': 195}
2011
+ {'a': 103, 'b': 112, 'c': 100, 'd': 151}
2012
+ {'a': 106, 'b': 123, 'c': 100, 'd': 149}
2013
+ {'a': 100, 'b': 126, 'c': 440, 'd': 117}
2014
+ {'a': 114, 'b': 120, 'c': 100, 'd': 148}
1893
2015
  ```
1894
2016
 
1895
2017
  ## PintUregQuantity
@@ -4,7 +4,7 @@ pypipr/PintUreg.py,sha256=_jmHZhUn8AcgFkXvZ6OTsWnjtp-CYcXUJ-dG_QdcARY,222
4
4
  pypipr/PintUregQuantity.py,sha256=ErSZKB-GHShi1zKac30XgFdBwAUrxMo80IQzIjQ2HVc,118
5
5
  pypipr/RunParallel.py,sha256=3H6sVSeUSATQQsWBcDGTtaXuc-12Yc0XmDyVtsg3PMA,5992
6
6
  pypipr/WINDOWS.py,sha256=NMW-94lzdqwfEWv2lF_i2GcSHJFDwWjccFufpymg4-E,83
7
- pypipr/__init__.py,sha256=qmZSMlW57rXz82raQFW_TDPvbrdY7mbauYFkHh4Y5CY,3105
7
+ pypipr/__init__.py,sha256=jdz6g-iArAnaOh7xRoTFvfxMmB4_5SNzs142wN5KeS8,3177
8
8
  pypipr/__terminal__.py,sha256=N_NEXa0V5QLb-dkP1Vp_fYKNjE4jGTqkiYNwPPOXZtw,1412
9
9
  pypipr/auto_reload.py,sha256=FGchFBjQs_eT7CmOMLNYoch-17q7ySFOnPx5z1kbH3E,918
10
10
  pypipr/avg.py,sha256=wUtX3x8dgLoODhQLyMB-HRMVo8Ha2yz3cp7lgcUNbr0,218
@@ -26,15 +26,16 @@ pypipr/dirname.py,sha256=rG3Y7EdOiY4gQo-BoYE_0C4XFKz3U9A1Ly4D28YaMDY,229
26
26
  pypipr/exit_if_empty.py,sha256=2qUqmYPSkr1NtKPqIN7BAc-WGtcmPPAw8AdO8HirOv8,321
27
27
  pypipr/filter_empty.py,sha256=yLGsStM7SLcCZOKO-gKzhVckzYtmhrhJoaa9R6LuNLc,573
28
28
  pypipr/get_by_index.py,sha256=wCJa8su5QZyZPA4UfEvR2nSEir0NfXcU0pxx2Lzpux8,335
29
- pypipr/get_class_method.py,sha256=RThCReUbF0uAlU-n5u0ELuP5yUbFqcKFfShswh7mgqc,639
29
+ pypipr/get_class_method.py,sha256=o6PBmQ58fW4vqsHWFO5NOQBOaHpxKFX6EuleD0KlGLE,745
30
30
  pypipr/get_filemtime.py,sha256=e8Glf4p9PJcL2yU8ZbrKOHYB-puaSNQsTS6Qhgp9F9s,227
31
31
  pypipr/get_filesize.py,sha256=2RCjrdZvaBDCdessFj-h7gLi13rPe6IXJXZcAoywWIA,196
32
32
  pypipr/github_init.py,sha256=Q3WbDqobE3zJiOQa7IgUPwk8JLxawelLd4SVt7gZb8Q,959
33
- pypipr/github_pull.py,sha256=RLECOHA0Ki1wy5FJ9wWeyOGxwPc9nKKuY4R06d1o70E,186
34
- pypipr/github_push.py,sha256=LO60-QwiT3F__bQ3Foz1Znn6wy0reDck4Rf36r62OCg,874
33
+ pypipr/github_pull.py,sha256=sYrIBILNZAkrtFyOorWyn_zrtlZP4AAB5WX-FeuDNvQ,174
34
+ pypipr/github_push.py,sha256=TeP0DROa4EfEFJYcJ4d9svxVovN8HuSbPvNjua7QGSA,673
35
35
  pypipr/github_user.py,sha256=fnds19Hlab3B94ORIYO9RiETF6p7dO-T3d1q_3XR-aw,483
36
36
  pypipr/hex_to_int.py,sha256=fqHnoPBZFqxbcyaJt-UbjzRJ8cjNXIuqH3UoSzUVMSs,197
37
37
  pypipr/iargv.py,sha256=rRKSTecPLZtso7Zm-1wrsgsYvAGx-o0IWHaQ167OlTE,468
38
+ pypipr/idir.py,sha256=4G7eEWfbYw0M8zW4s1HdswR-a3ocSzgpAU8lokLqTEE,345
38
39
  pypipr/idumps.py,sha256=-YMI6aZmRAMaiQOYXYDvuQLmJMCc4Z4tREEuuoVmFR4,748
39
40
  pypipr/idumps_html.py,sha256=IdDLF3YB7fKvoCjeQC4pLhrVdeWFpVupnSDeI_TsqEY,1428
40
41
  pypipr/ienumerate.py,sha256=7JBtPt5LVa7lTzbAx0WMoML6pgkx50Qpw9PLgUpp9sc,411
@@ -73,10 +74,11 @@ pypipr/random_bool.py,sha256=OkvQqpusHGc5mt2nHCycA7-s2I0gbN6UxI7opMOFppE,352
73
74
  pypipr/restart.py,sha256=jUhsjZACAAcItYzCuiULHLFikoVyYDJWj16hCLARmAw,272
74
75
  pypipr/set_timeout.py,sha256=heg1J3jSArgG5_75BNLrujjh7I9meTyAzHpuAY_4IBc,698
75
76
  pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
77
+ pypipr/sqlite_all_tables.py,sha256=5sq9BH0-TSodjQh_-8x2yoKRCxCvvpofhDv7B7E4M0o,308
76
78
  pypipr/str_cmp.py,sha256=2kavWiT4VTddXcBotF1CxDOWSygk5rFrbllKxBjw9dc,377
77
79
  pypipr/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
78
80
  pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
79
- pypipr-1.0.129.dist-info/METADATA,sha256=GMLPW34JklFvbUeI0v1F1G1ubtEF6IsgyxvF6IrY2MA,52681
80
- pypipr-1.0.129.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
81
- pypipr-1.0.129.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
82
- pypipr-1.0.129.dist-info/RECORD,,
81
+ pypipr-1.0.131.dist-info/METADATA,sha256=2Y8kUQlI2zzVTizZbkv_ELk36V6gpTOSbxmuLxMzjcQ,54599
82
+ pypipr-1.0.131.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
83
+ pypipr-1.0.131.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
84
+ pypipr-1.0.131.dist-info/RECORD,,