pypipr 1.0.130__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
@@ -71,6 +71,7 @@ from .random_bool import random_bool
71
71
  from .restart import restart
72
72
  from .set_timeout import set_timeout
73
73
  from .sets_ordered import sets_ordered
74
+ from .sqlite_all_tables import sqlite_all_tables
74
75
  from .str_cmp import str_cmp
75
76
  from .text_colorize import text_colorize
76
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")
@@ -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.130
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 0x776445f840>
252
- <generator object int_range at 0x776445f840>
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 0x7764169c60>
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 0x7764176020>
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 0x776445f940>
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 22:51:25.970341+07:00
496
- 2024-05-07 15:51:25.971347+00:00
497
- 2024-05-07 08:51:25.974497-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 0x7764175d50>
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 0x77641762f0>
651
- [<function ExampleGetClassMethod.a at 0x77641c1bc0>, <function ExampleGetClassMethod.b at 0x77641c1b20>, <function ExampleGetClassMethod.c at 0x77641c1d00>, <function ExampleGetClassMethod.d at 0x77641c1da0>]
652
- ```
653
-
654
648
  ## get_filesize
655
649
 
656
650
  `get_filesize(filename)`
@@ -854,6 +848,7 @@ Output:
854
848
  'restart',
855
849
  'set_timeout',
856
850
  'sets_ordered',
851
+ 'sqlite_all_tables',
857
852
  'str_cmp',
858
853
  'string',
859
854
  'subprocess',
@@ -1058,7 +1053,7 @@ Output:
1058
1053
 
1059
1054
  ## ienumerate
1060
1055
 
1061
- `ienumerate(iterator, start=0, key=<function int_to_int at 0x776957d1c0>)`
1056
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x721227f9c0>)`
1062
1057
 
1063
1058
  meningkatkan fungsi enumerate() pada python
1064
1059
  untuk key menggunakan huruf dan basis angka lainnya.
@@ -1071,7 +1066,7 @@ iprint(ienumerate(it, key=int_to_chr))
1071
1066
 
1072
1067
  Output:
1073
1068
  ```py
1074
- <generator object ienumerate at 0x77641763e0>
1069
+ <generator object ienumerate at 0x72071ce4d0>
1075
1070
  [('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
1076
1071
  ```
1077
1072
 
@@ -1138,7 +1133,7 @@ print(ijoin(10, ' '))
1138
1133
 
1139
1134
  Output:
1140
1135
  ```py
1141
- qweqw, dfs, asd, weq
1136
+ dfs, weq, qweqw, asd
1142
1137
  ,ini,path,seperti,url,
1143
1138
  ini,path,seperti,url
1144
1139
  <li>satu</li>
@@ -1183,119 +1178,119 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
1183
1178
  Output:
1184
1179
  ```py
1185
1180
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1186
- [['Harga Emas Hari Ini - Selasa, 07 Mei 2024'],
1187
- ['Spot Emas USD2.315,16 (-8,49) / oz',
1188
- 'Kurs IDR16.025,01 (-68,99) / USD',
1189
- 'Emas IDR1.192.808 (-9.528) / gr'],
1190
- ['LM Antam (Jual)↑1.318.000 (+8.000) / gr',
1191
- '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']],
1192
1187
  [['Harga Emas Hari Ini'],
1193
1188
  ['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
1194
1189
  ['per Gram (Rp)', 'per Batangan (Rp)', 'per Gram (Rp)', 'per Batangan (Rp)'],
1195
1190
  ['1000',
1196
- '1.259 (+8)',
1197
- '1.258.600 (+8.000)',
1191
+ '1.273 (+8)',
1192
+ '1.272.600 (+8.000)',
1198
1193
  '1.043.040 (+8.200)',
1199
1194
  '1.043.040.000 (+8.200.000)'],
1200
1195
  ['500',
1201
- '2.517 (+16)',
1202
- '1.258.640 (+8.000)',
1196
+ '2.545 (+16)',
1197
+ '1.272.640 (+8.000)',
1203
1198
  '1.043.082 (+8.200)',
1204
1199
  '521.541.000 (+4.100.000)'],
1205
1200
  ['250',
1206
- '5.036 (+32)',
1207
- '1.259.060 (+8.000)',
1201
+ '5.092 (+32)',
1202
+ '1.273.060 (+8.000)',
1208
1203
  '1.043.512 (+8.200)',
1209
1204
  '260.878.000 (+2.050.000)'],
1210
1205
  ['100',
1211
- '12.601 (+80)',
1212
- '1.260.120 (+8.000)',
1206
+ '12.741 (+80)',
1207
+ '1.274.120 (+8.000)',
1213
1208
  '1.044.600 (+8.200)',
1214
1209
  '104.460.000 (+820.000)'],
1215
1210
  ['50',
1216
- '25.218 (+160)',
1217
- '1.260.900 (+8.000)',
1211
+ '25.498 (+160)',
1212
+ '1.274.900 (+8.000)',
1218
1213
  '1.045.400 (+8.200)',
1219
1214
  '52.270.000 (+410.000)'],
1220
1215
  ['25',
1221
- '50.499 (+320)',
1222
- '1.262.480 (+8.000)',
1216
+ '51.059 (+320)',
1217
+ '1.276.480 (+8.000)',
1223
1218
  '1.047.040 (+8.200)',
1224
1219
  '26.176.000 (+205.000)'],
1225
1220
  ['10',
1226
- '126.750 (+800)',
1227
- '1.267.500 (+8.000)',
1221
+ '128.150 (+800)',
1222
+ '1.281.500 (+8.000)',
1228
1223
  '1.052.200 (+8.200)',
1229
1224
  '10.522.000 (+82.000)'],
1230
1225
  ['5',
1231
- '254.600 (+1.600)',
1232
- '1.273.000 (+8.000)',
1226
+ '257.400 (+1.600)',
1227
+ '1.287.000 (+8.000)',
1233
1228
  '1.057.800 (+8.200)',
1234
1229
  '5.289.000 (+41.000)'],
1235
1230
  ['3',
1236
- '426.556 (+2.667)',
1237
- '1.279.667 (+8.000)',
1231
+ '431.222 (+2.667)',
1232
+ '1.293.667 (+8.000)',
1238
1233
  '1.064.667 (+8.000)',
1239
1234
  '3.194.000 (+24.000)'],
1240
1235
  ['2',
1241
- '644.000 (+4.000)',
1242
- '1.288.000 (+8.000)',
1236
+ '651.000 (+4.000)',
1237
+ '1.302.000 (+8.000)',
1243
1238
  '1.073.500 (+8.500)',
1244
1239
  '2.147.000 (+17.000)'],
1245
1240
  ['1',
1246
- '1.318.000 (+8.000)',
1247
- '1.318.000 (+8.000)',
1241
+ '1.332.000 (+8.000)',
1242
+ '1.332.000 (+8.000)',
1248
1243
  '1.104.000 (+8.000)',
1249
1244
  '1.104.000 (+8.000)'],
1250
1245
  ['0.5',
1251
- '2.836.000 (+16.000)',
1252
- '1.418.000 (+8.000)',
1246
+ '2.864.000 (+16.000)',
1247
+ '1.432.000 (+8.000)',
1253
1248
  '1.208.000 (+8.000)',
1254
1249
  '604.000 (+4.000)'],
1255
- ['Update harga LM Antam :07 Mei 2024, pukul 08:23Harga pembelian kembali '
1256
- ':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)',
1257
1252
  'Update harga LM Pegadaian :31 Agustus 2023']],
1258
1253
  [['Spot Harga Emas Hari Ini (Market Open)'],
1259
1254
  ['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
1260
- ['Ounce\xa0(oz)', '2.315,16 (-8,49)', '16.025,01 (-68,99)', '37.100.462'],
1261
- ['Gram\xa0(gr)', '74,43', '16.025,01', '1.192.808 (-9.528)'],
1262
- ['Kilogram\xa0(kg)', '74.434,12', '16.025,01', '1.192.807.557'],
1263
- ['Update harga emas :07 Mei 2024, pukul 22:51Update 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 '
1264
1259
  '13:10']],
1265
1260
  [['Gram', 'UBS Gold 99.99%'],
1266
1261
  ['Jual', 'Beli'],
1267
1262
  ['/ Batang', '/ Gram', '/ Batang', '/ Gram'],
1268
1263
  ['100',
1269
- '126.000.000 (+1.200.000)',
1270
- '1.260.000 (+12.000)',
1271
- '123.135.000 (+450.000)',
1272
- '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)'],
1273
1268
  ['50',
1274
- '62.900.000 (+400.000)',
1275
- '1.258.000 (+8.000)',
1276
- '61.620.000 (+225.000)',
1277
- '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)'],
1278
1273
  ['25',
1279
- '31.500.000 (+200.000)',
1280
- '1.260.000 (+8.000)',
1281
- '30.912.500 (+112.500)',
1282
- '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)'],
1283
1278
  ['10',
1284
- '12.650.000 (+80.000)',
1285
- '1.265.000 (+8.000)',
1286
- '12.415.000 (+45.000)',
1287
- '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)'],
1288
1283
  ['5',
1289
- '6.350.000 (+40.000)',
1290
- '1.270.000 (+8.000)',
1291
- '6.259.500 (+22.500)',
1292
- '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)'],
1293
1288
  ['1',
1294
- '1.315.000 (+5.000)',
1295
- '1.315.000 (+5.000)',
1296
- '1.284.500 (+4.500)',
1297
- '1.284.500 (+4.500)'],
1298
- ['', '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']],
1299
1294
  [['Konversi Satuan'],
1300
1295
  ['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
1301
1296
  ['Ounce\xa0(oz)', '1', '31,1034767696', '0,0311034768'],
@@ -1305,37 +1300,37 @@ Output:
1305
1300
  ['Waktu', 'Emas'],
1306
1301
  ['Unit', 'USD', 'IDR'],
1307
1302
  ['Angka', '+/-', 'Angka', '+/-'],
1308
- ['Hari Ini', 'Kurs', '', '', '16.094', '-69-0,43%'],
1309
- ['oz', '2.323,65', '-8,49-0,37%', '37.396.823', '-296.361-0,79%'],
1310
- ['gr', '74,71', '-0,27-0,37%', '1.202.336', '-9.528-0,79%'],
1311
- ['30 Hari', 'Kurs', '', '', '15.907', '+118+0,74%'],
1312
- ['oz', '2.329,93', '-14,77-0,63%', '37.062.197', '+38.266+0,10%'],
1313
- ['gr', '74,91', '-0,47-0,63%', '1.191.577', '+1.230+0,10%'],
1314
- ['2 Bulan', 'Kurs', '', '', '15.658', '+367+2,34%'],
1315
- ['oz', '2.179,67', '+135,49+6,22%', '34.129.273', '+2.971.189+8,71%'],
1316
- ['gr', '70,08', '+4,36+6,22', '1.097.282', '+95.526+8,71%'],
1317
- ['6 Bulan', 'Kurs', '', '', '15.629', '+396+2,53%'],
1318
- ['oz', '1.960,90', '+354,26+18,07%', '30.646.906', '+6.453.556+21,06%'],
1319
- ['gr', '63,04', '+11,39+18,07%', '985.321', '+207.487+21,06%'],
1320
- ['1 Tahun', 'Kurs', '', '', '15.731', '+294+1,87%'],
1321
- ['oz', '1.823,86', '+491,30+26,94%', '28.691.142', '+8.409.320+29,31%'],
1322
- ['gr', '58,64', '+15,80+26,94%', '922.442', '+270.366+29,31%'],
1323
- ['2 Tahun', 'Kurs', '', '', '14.418', '+1.607+11,15%'],
1324
- ['oz', '1.883,86', '+431,30+22,89%', '27.161.493', '+9.938.969+36,59%'],
1325
- ['gr', '60,57', '+13,87+22,89%', '873.262', '+319.545+36,59%'],
1326
- ['3 Tahun', 'Kurs', '', '', '14.364', '+1.661+11,56%'],
1327
- ['oz', '1.831,43', '+483,73+26,41%', '26.306.661', '+10.793.802+41,03%'],
1328
- ['gr', '58,88', '+15,55+26,41%', '845.779', '+347.029+41,03%'],
1329
- ['5 Tahun', 'Kurs', '', '', '14.338', '+1.687+11,77%'],
1330
- ['oz', '1.284,03', '+1.031,13+80,30%', '18.410.422', '+18.690.040+101,52%'],
1331
- ['gr', '41,28', '+33,15+80,30%', '591.909', '+600.899+101,52%']])
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%']])
1332
1327
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1333
1328
  [[''],
1334
1329
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1335
- ['USD', '74,43↓', '-0,28-0,37%'],
1336
- ['KURS', '16.056,00', '+12,10+0,08%'],
1337
- ['IDR', '1.195.114,27↓', '-3.478,69-0,29%'],
1338
- ['Selasa, 07 Mei 2024 22:51']],
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']],
1339
1334
  [[''],
1340
1335
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1341
1336
  'Hari Ini',
@@ -1346,19 +1341,19 @@ Output:
1346
1341
  '']],
1347
1342
  [['Pergerakkan Harga Emas 1 Gram'],
1348
1343
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1349
- ['USD', '74,71', '74,43 - 74,71', '74,57'],
1350
- ['KURS', '16.043,90', '16.043,90 - 16.056,00', '16.049,95'],
1351
- ['IDR', '1.198.592,96', '1.195.114,27 - 1.198.592,96', '1.196.853,62'],
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'],
1352
1347
  [''],
1353
1348
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1354
- ['USD', '66,32', '64,07 - 77,14', '+8,11 (12,23%)'],
1355
- ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+665,90 (4,33%)'],
1356
- ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+174.384,74 (17,08%)'],
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%)'],
1357
1352
  [''],
1358
1353
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1359
- ['USD', '64,84', '58,43 - 77,14', '+9,59 (14,79%)'],
1360
- ['KURS', '14.674,80', '14.674,80 - 16.307,80', '+1.381,20 (9,41%)'],
1361
- ['IDR', '951.570,92', '912.925,68 - 1.256.829,06', '+243.543,35 (25,59%)']])
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%)']])
1362
1357
  ```
1363
1358
 
1364
1359
  ## iloads
@@ -1488,7 +1483,7 @@ Output:
1488
1483
  ```py
1489
1484
  8
1490
1485
  ['mana', 'aja']
1491
- [<Element a at 0x77697600a0>, <Element a at 0x77641b6f80>, <Element a at 0x77642063f0>, <Element a at 0x7764206490>, <Element a at 0x77642064e0>, <Element a at 0x7764206530>, <Element a at 0x7764206580>, <Element a at 0x77642065d0>, <Element a at 0x7764206620>, <Element a at 0x7764206670>, <Element a at 0x77642066c0>, <Element a at 0x7764206710>, <Element a at 0x7764206760>, <Element a at 0x77642067b0>, <Element a at 0x7764206800>, <Element a at 0x7764206850>, <Element a at 0x77642068a0>, <Element a at 0x77642068f0>]
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>]
1492
1487
  False
1493
1488
  ```
1494
1489
 
@@ -1550,7 +1545,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1550
1545
 
1551
1546
  Output:
1552
1547
  ```py
1553
- <generator object iscandir at 0x776445fb40>
1548
+ <generator object iscandir at 0x720713fa40>
1554
1549
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1555
1550
  ```
1556
1551
 
@@ -1583,112 +1578,113 @@ iprint(ivars(__import__('pypipr')))
1583
1578
 
1584
1579
  Output:
1585
1580
  ```py
1586
- {'function': {'avg': <function avg at 0x7775317b00>,
1587
- 'get_filemtime': <function get_filemtime at 0x776974fd80>,
1588
- 'print_colorize': <function print_colorize at 0x776974ff60>,
1589
- 'print_log': <function print_log at 0x776974fe20>,
1590
- 'console_run': <function console_run at 0x776974fec0>,
1591
- 'auto_reload': <function auto_reload at 0x7769c1b2e0>,
1592
- 'basename': <function basename at 0x776974fce0>,
1593
- 'chr_to_int': <function chr_to_int at 0x7769754540>,
1594
- 'int_to_chr': <function int_to_chr at 0x77697545e0>,
1595
- 'irange': <function irange at 0x7769754860>,
1596
- 'batchmaker': <function batchmaker at 0x7769754220>,
1597
- 'calculate': <function calculate at 0x7769754360>,
1598
- 'batch_calculate': <function batch_calculate at 0x77697540e0>,
1599
- 'bin_to_int': <function bin_to_int at 0x7769754180>,
1600
- 'is_empty': <function is_empty at 0x7769754fe0>,
1601
- 'exit_if_empty': <function exit_if_empty at 0x7769754ea0>,
1602
- 'input_char': <function input_char at 0x77697544a0>,
1603
- 'choices': <function choices at 0x7769755260>,
1604
- 'chunk_array': <function chunk_array at 0x7769755300>,
1605
- 'create_folder': <function create_folder at 0x77697553a0>,
1606
- 'datetime_from_string': <function datetime_from_string at 0x7769755440>,
1607
- 'datetime_now': <function datetime_now at 0x77697554e0>,
1608
- 'dict_first': <function dict_first at 0x77697576a0>,
1609
- 'dirname': <function dirname at 0x7769757740>,
1610
- 'is_iterable': <function is_iterable at 0x7769757920>,
1611
- 'to_str': <function to_str at 0x77697579c0>,
1612
- 'filter_empty': <function filter_empty at 0x77697577e0>,
1613
- 'get_by_index': <function get_by_index at 0x7769755620>,
1614
- 'get_class_method': <function get_class_method at 0x7769757a60>,
1615
- 'get_filesize': <function get_filesize at 0x7769757ba0>,
1616
- 'github_init': <function github_init at 0x7769757c40>,
1617
- 'github_pull': <function github_pull at 0x7769757ce0>,
1618
- 'github_push': <function github_push at 0x7769757e20>,
1619
- 'github_user': <function github_user at 0x7769757ec0>,
1620
- 'hex_to_int': <function hex_to_int at 0x7769757f60>,
1621
- 'iargv': <function iargv at 0x776950c040>,
1622
- 'idir': <function idir at 0x776950c180>,
1623
- 'idumps_html': <function idumps_html at 0x776950c360>,
1624
- 'idumps': <function idumps at 0x776950c0e0>,
1625
- 'int_to_int': <function int_to_int at 0x776957d1c0>,
1626
- 'ienumerate': <function ienumerate at 0x776950c860>,
1627
- 'ienv': <function ienv at 0x776957d080>,
1628
- 'iexec': <function iexec at 0x776957d260>,
1629
- 'ijoin': <function ijoin at 0x776957d3a0>,
1630
- 'iloads_html': <function iloads_html at 0x776957d580>,
1631
- 'iloads': <function iloads at 0x77756a2660>,
1632
- 'int_to_bin': <function int_to_bin at 0x776957d300>,
1633
- 'int_to_hex': <function int_to_hex at 0x776957d4e0>,
1634
- 'int_to_oct': <function int_to_oct at 0x776957d620>,
1635
- 'is_valid_url': <function is_valid_url at 0x776957d800>,
1636
- 'iopen': <function iopen at 0x77695e4fe0>,
1637
- 'iprint': <function iprint at 0x776957d760>,
1638
- 'ireplace': <function ireplace at 0x776957db20>,
1639
- 'iscandir': <function iscandir at 0x7769486340>,
1640
- 'isplit': <function isplit at 0x77694863e0>,
1641
- 'ivars': <function ivars at 0x7769486480>,
1642
- 'log': <function log at 0x7769486520>,
1643
- 'oct_to_int': <function oct_to_int at 0x77694865c0>,
1644
- 'password_generator': <function password_generator at 0x7769486660>,
1645
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x77694867a0>,
1646
- 'poetry_publish': <function poetry_publish at 0x7769486840>,
1647
- 'poetry_update_version': <function poetry_update_version at 0x7769486980>,
1648
- 'print_dir': <function print_dir at 0x7769486b60>,
1649
- 'print_to_last_line': <function print_to_last_line at 0x7769486c00>,
1650
- 'random_bool': <function random_bool at 0x7769486ca0>,
1651
- 'restart': <function restart at 0x7769486d40>,
1652
- 'set_timeout': <function set_timeout at 0x7769486de0>,
1653
- 'sets_ordered': <function sets_ordered at 0x7769486e80>,
1654
- 'str_cmp': <function str_cmp at 0x7769486f20>,
1655
- 'text_colorize': <function text_colorize at 0x7769486fc0>},
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>},
1656
1652
  'class': {'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1657
1653
  'PintUregQuantity': <class 'pint.Quantity'>,
1658
1654
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
1659
1655
  'variable': {'LINUX': True,
1660
- 'PintUreg': <pint.registry.UnitRegistry object at 0x776f19a010>,
1656
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x7217be6ed0>,
1661
1657
  'WINDOWS': False},
1662
1658
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
1663
- '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'>,
1664
1660
  'csv': <module 'csv' from '/data/data/com.termux/files/usr/lib/python3.11/csv.py'>,
1665
1661
  'datetime': <module 'datetime' from '/data/data/com.termux/files/usr/lib/python3.11/datetime.py'>,
1666
1662
  'functools': <module 'functools' from '/data/data/com.termux/files/usr/lib/python3.11/functools.py'>,
1667
1663
  'inspect': <module 'inspect' from '/data/data/com.termux/files/usr/lib/python3.11/inspect.py'>,
1668
1664
  'io': <module 'io' (frozen)>,
1669
1665
  'json': <module 'json' from '/data/data/com.termux/files/usr/lib/python3.11/json/__init__.py'>,
1670
- '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'>,
1671
1667
  'math': <module 'math' from '/data/data/com.termux/files/usr/lib/python3.11/lib-dynload/math.cpython-311.so'>,
1672
1668
  'multiprocessing': <module 'multiprocessing' from '/data/data/com.termux/files/usr/lib/python3.11/multiprocessing/__init__.py'>,
1673
1669
  'operator': <module 'operator' from '/data/data/com.termux/files/usr/lib/python3.11/operator.py'>,
1674
1670
  'os': <module 'os' (frozen)>,
1675
1671
  'pathlib': <module 'pathlib' from '/data/data/com.termux/files/usr/lib/python3.11/pathlib.py'>,
1676
- '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'>,
1677
1673
  'pprint': <module 'pprint' from '/data/data/com.termux/files/usr/lib/python3.11/pprint.py'>,
1678
1674
  'queue': <module 'queue' from '/data/data/com.termux/files/usr/lib/python3.11/queue.py'>,
1679
1675
  'random': <module 'random' from '/data/data/com.termux/files/usr/lib/python3.11/random.py'>,
1680
1676
  're': <module 're' from '/data/data/com.termux/files/usr/lib/python3.11/re/__init__.py'>,
1681
- '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'>,
1682
1678
  'string': <module 'string' from '/data/data/com.termux/files/usr/lib/python3.11/string.py'>,
1683
1679
  'subprocess': <module 'subprocess' from '/data/data/com.termux/files/usr/lib/python3.11/subprocess.py'>,
1684
1680
  'sys': <module 'sys' (built-in)>,
1685
1681
  'textwrap': <module 'textwrap' from '/data/data/com.termux/files/usr/lib/python3.11/textwrap.py'>,
1686
1682
  'threading': <module 'threading' from '/data/data/com.termux/files/usr/lib/python3.11/threading.py'>,
1687
1683
  'time': <module 'time' (built-in)>,
1688
- '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'>,
1689
1685
  'uuid': <module 'uuid' from '/data/data/com.termux/files/usr/lib/python3.11/uuid.py'>,
1690
1686
  'webbrowser': <module 'webbrowser' from '/data/data/com.termux/files/usr/lib/python3.11/webbrowser.py'>,
1691
- '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'>,
1692
1688
  'zoneinfo': <module 'zoneinfo' from '/data/data/com.termux/files/usr/lib/python3.11/zoneinfo/__init__.py'>}}
1693
1689
  ```
1694
1690
 
@@ -1747,7 +1743,7 @@ print(password_generator())
1747
1743
 
1748
1744
  Output:
1749
1745
  ```py
1750
- HyS#E|Re
1746
+ Iq%*yxms
1751
1747
  ```
1752
1748
 
1753
1749
  ## pip_freeze_without_version
@@ -1805,7 +1801,7 @@ Output:
1805
1801
  __enter__ : https:/www.google.com
1806
1802
  __fspath__ : https:/www.google.com
1807
1803
  __getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1808
- __hash__ : -3853630965287151803
1804
+ __hash__ : 5044247693933644654
1809
1805
  __init__ : None
1810
1806
  __init_subclass__ : None
1811
1807
  __module__ : pathlib
@@ -1818,8 +1814,8 @@ Output:
1818
1814
  _cached_cparts : ['https:', 'www.google.com']
1819
1815
  _cparts : ['https:', 'www.google.com']
1820
1816
  _drv :
1821
- _flavour : <pathlib._PosixFlavour object at 0x7774aa9150>
1822
- _hash : -3853630965287151803
1817
+ _flavour : <pathlib._PosixFlavour object at 0x7217a215d0>
1818
+ _hash : 5044247693933644654
1823
1819
  _parts : ['https:', 'www.google.com']
1824
1820
  _root :
1825
1821
  _str : https:/www.google.com
@@ -1841,7 +1837,7 @@ Output:
1841
1837
  is_reserved : False
1842
1838
  is_socket : False
1843
1839
  is_symlink : False
1844
- iterdir : <generator object Path.iterdir at 0x77641d1b60>
1840
+ iterdir : <generator object Path.iterdir at 0x72071bef80>
1845
1841
  joinpath : https:/www.google.com
1846
1842
  name : www.google.com
1847
1843
  parent : https:
@@ -1881,7 +1877,7 @@ print(random_bool())
1881
1877
 
1882
1878
  Output:
1883
1879
  ```py
1884
- False
1880
+ True
1885
1881
  ```
1886
1882
 
1887
1883
  ## restart
@@ -1915,7 +1911,7 @@ x.cancel()
1915
1911
 
1916
1912
  Output:
1917
1913
  ```py
1918
- <Timer(Thread-2, started 512761875696)>
1914
+ <Timer(Thread-2, started 489726119152)>
1919
1915
  menghentikan timeout 7
1920
1916
  ```
1921
1917
 
@@ -1933,10 +1929,14 @@ print(list(sets_ordered(array)))
1933
1929
 
1934
1930
  Output:
1935
1931
  ```py
1936
- <generator object sets_ordered at 0x7769bed700>
1932
+ <generator object sets_ordered at 0x72072257d0>
1937
1933
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
1938
1934
  ```
1939
1935
 
1936
+ ## sqlite_all_tables
1937
+
1938
+ `sqlite_all_tables()`
1939
+
1940
1940
  ## str_cmp
1941
1941
 
1942
1942
  `str_cmp(t1, t2)`
@@ -2003,15 +2003,15 @@ print(ExampleComparePerformance().compare_performance())
2003
2003
 
2004
2004
  Output:
2005
2005
  ```py
2006
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7769bed630>,
2006
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7207224860>,
2007
2007
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
2008
2008
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
2009
2009
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
2010
- {'a': 163, 'b': 117, 'c': 100, 'd': 157}
2011
- {'a': 140, 'b': 112, 'c': 100, 'd': 113}
2012
- {'a': 129, 'b': 116, 'c': 100, 'd': 115}
2013
- {'a': 119, 'b': 121, 'c': 100, 'd': 124}
2014
- {'a': 117, 'b': 113, 'c': 100, 'd': 116}
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}
2015
2015
  ```
2016
2016
 
2017
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=ocqRXoVkiGk0bWsexB3KQLIPTiOssw6Q76ZHNno4088,3128
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,12 +26,12 @@ 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
@@ -74,10 +74,11 @@ pypipr/random_bool.py,sha256=OkvQqpusHGc5mt2nHCycA7-s2I0gbN6UxI7opMOFppE,352
74
74
  pypipr/restart.py,sha256=jUhsjZACAAcItYzCuiULHLFikoVyYDJWj16hCLARmAw,272
75
75
  pypipr/set_timeout.py,sha256=heg1J3jSArgG5_75BNLrujjh7I9meTyAzHpuAY_4IBc,698
76
76
  pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
77
+ pypipr/sqlite_all_tables.py,sha256=5sq9BH0-TSodjQh_-8x2yoKRCxCvvpofhDv7B7E4M0o,308
77
78
  pypipr/str_cmp.py,sha256=2kavWiT4VTddXcBotF1CxDOWSygk5rFrbllKxBjw9dc,377
78
79
  pypipr/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
79
80
  pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
80
- pypipr-1.0.130.dist-info/METADATA,sha256=RWBI-EpfjQSO46yRVeAslql8DsGJyW_KznuSCDJapF4,54411
81
- pypipr-1.0.130.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
82
- pypipr-1.0.130.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
83
- pypipr-1.0.130.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,,