pypipr 1.0.122__py3-none-any.whl → 1.0.123__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.
@@ -61,7 +61,7 @@ class ComparePerformance:
61
61
 
62
62
  def calculate_average(self, d: dict):
63
63
  r1 = {i: avg(v) for i, v in d.items()}
64
- min_value = min(r1.values()) * 100
64
+ min_value = min(r1.values()) / 100
65
65
  r2 = {i: int(v / min_value) for i, v in r1.items()}
66
66
  return r2
67
67
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.122
3
+ Version: 1.0.123
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 0x74bf0c4440>
252
- <generator object int_range at 0x74bf0c4440>
251
+ <generator object int_range at 0x7b05a58440>
252
+ <generator object int_range at 0x7b05a58440>
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 0x74bf0b8280>
284
+ <generator object batchmaker at 0x7b05a50280>
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 0x74bf037010>
338
+ <generator object batch_calculate at 0x7b059cb010>
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
 
@@ -458,7 +458,7 @@ print(list(chunk_array(arr, 5)))
458
458
 
459
459
  Output:
460
460
  ```py
461
- <generator object chunk_array at 0x74bf0c4440>
461
+ <generator object chunk_array at 0x7b05a58440>
462
462
  [[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
463
463
  ```
464
464
 
@@ -509,9 +509,9 @@ print(datetime_now("Etc/GMT+7"))
509
509
 
510
510
  Output:
511
511
  ```py
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
512
+ 2024-05-05 22:19:00.834179+07:00
513
+ 2024-05-05 15:19:00.837046+00:00
514
+ 2024-05-05 08:19:00.842776-07:00
515
515
  ```
516
516
 
517
517
  ## dict_first
@@ -617,7 +617,7 @@ iprint(filter_empty(var))
617
617
 
618
618
  Output:
619
619
  ```py
620
- <generator object filter_empty at 0x74bf0355d0>
620
+ <generator object filter_empty at 0x7b059c95d0>
621
621
  [1, '0', True, {}, ['eee']]
622
622
  ```
623
623
 
@@ -647,8 +647,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
647
647
 
648
648
  Output:
649
649
  ```py
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>]
650
+ <generator object get_class_method at 0x7b059cb2e0>
651
+ [<function ExampleGetClassMethod.a at 0x7b05a68e00>, <function ExampleGetClassMethod.b at 0x7b05a69120>, <function ExampleGetClassMethod.c at 0x7b05a68fe0>, <function ExampleGetClassMethod.d at 0x7b05a691c0>]
652
652
  ```
653
653
 
654
654
  ## get_filesize
@@ -918,7 +918,7 @@ Output:
918
918
 
919
919
  ## ienumerate
920
920
 
921
- `ienumerate(iterator, start=0, key=<function int_to_int at 0x74c3b8d9e0>)`
921
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x7b0a90d9e0>)`
922
922
 
923
923
  meningkatkan fungsi enumerate() pada python
924
924
  untuk key menggunakan huruf dan basis angka lainnya.
@@ -931,7 +931,7 @@ iprint(ienumerate(it, key=int_to_chr))
931
931
 
932
932
  Output:
933
933
  ```py
934
- <generator object ienumerate at 0x74bf0373d0>
934
+ <generator object ienumerate at 0x7b059cb3d0>
935
935
  [('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
936
936
  ```
937
937
 
@@ -998,7 +998,7 @@ print(ijoin(10, ' '))
998
998
 
999
999
  Output:
1000
1000
  ```py
1001
- weq, asd, dfs, qweqw
1001
+ weq, qweqw, asd, dfs
1002
1002
  ,ini,path,seperti,url,
1003
1003
  ini,path,seperti,url
1004
1004
  <li>satu</li>
@@ -1087,7 +1087,7 @@ Output:
1087
1087
  ['Ounce\xa0(oz)', '2.302,57 (+2,84)', '16.202,00', '37.306.239'],
1088
1088
  ['Gram\xa0(gr)', '74,03', '16.202,00', '1.199.423 (+1.479)'],
1089
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 '
1090
+ ['Update harga emas :05 Mei 2024, pukul 22:18Update kurs :05 Mei 2024, pukul '
1091
1091
  '13:10']],
1092
1092
  [['Gram', 'UBS Gold 99.99%'],
1093
1093
  ['Jual', 'Beli'],
@@ -1138,7 +1138,7 @@ Output:
1138
1138
  ['USD', '74,03↓', '%'],
1139
1139
  ['KURS', '15.968,70↓', '%'],
1140
1140
  ['IDR', '1.182.152,40↓', '%'],
1141
- ['Minggu, 05 Mei 2024 13:05']],
1141
+ ['Minggu, 05 Mei 2024 22:18']],
1142
1142
  [[''],
1143
1143
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1144
1144
  'Hari Ini',
@@ -1291,7 +1291,7 @@ Output:
1291
1291
  ```py
1292
1292
  8
1293
1293
  ['mana', 'aja']
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>]
1294
+ [<Element a at 0x7b05a62b20>, <Element a at 0x7b05aa0fa0>, <Element a at 0x7b05aa1040>, <Element a at 0x7b05aa1090>, <Element a at 0x7b05aa10e0>, <Element a at 0x7b05aa1130>, <Element a at 0x7b05aa1180>, <Element a at 0x7b05aa11d0>, <Element a at 0x7b05aa1220>, <Element a at 0x7b05aa1270>, <Element a at 0x7b05aa12c0>, <Element a at 0x7b05aa1310>, <Element a at 0x7b05aa1360>, <Element a at 0x7b05aa13b0>, <Element a at 0x7b05aa1400>, <Element a at 0x7b05aa1450>, <Element a at 0x7b05aa14a0>, <Element a at 0x7b05aa14f0>]
1295
1295
  False
1296
1296
  ```
1297
1297
 
@@ -1353,7 +1353,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1353
1353
 
1354
1354
  Output:
1355
1355
  ```py
1356
- <generator object iscandir at 0x74bf0c4740>
1356
+ <generator object iscandir at 0x7b05a58740>
1357
1357
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1358
1358
  ```
1359
1359
 
@@ -1390,76 +1390,76 @@ Output:
1390
1390
  'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1391
1391
  'PintUregQuantity': <class 'pint.Quantity'>,
1392
1392
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
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>},
1393
+ 'function': {'avg': <function avg at 0x7b0db66700>,
1394
+ 'get_filemtime': <function get_filemtime at 0x7b0aa0ede0>,
1395
+ 'print_colorize': <function print_colorize at 0x7b0aa0efc0>,
1396
+ 'print_log': <function print_log at 0x7b0aacab60>,
1397
+ 'console_run': <function console_run at 0x7b0aa0ee80>,
1398
+ 'auto_reload': <function auto_reload at 0x7b0a9f7ec0>,
1399
+ 'basename': <function basename at 0x7b0aa0ed40>,
1400
+ 'chr_to_int': <function chr_to_int at 0x7b0aa0f560>,
1401
+ 'int_to_chr': <function int_to_chr at 0x7b0aa0f600>,
1402
+ 'irange': <function irange at 0x7b0aa0f880>,
1403
+ 'batchmaker': <function batchmaker at 0x7b0aa0f240>,
1404
+ 'calculate': <function calculate at 0x7b0aa0f380>,
1405
+ 'batch_calculate': <function batch_calculate at 0x7b0aa0f100>,
1406
+ 'bin_to_int': <function bin_to_int at 0x7b0aa0f1a0>,
1407
+ 'is_empty': <function is_empty at 0x7b0a834040>,
1408
+ 'exit_if_empty': <function exit_if_empty at 0x7b0aa0fec0>,
1409
+ 'input_char': <function input_char at 0x7b0aa0ff60>,
1410
+ 'get_by_index': <function get_by_index at 0x7b0a8340e0>,
1411
+ 'choices': <function choices at 0x7b0a8342c0>,
1412
+ 'chunk_array': <function chunk_array at 0x7b0a834360>,
1413
+ 'create_folder': <function create_folder at 0x7b0a834400>,
1414
+ 'datetime_from_string': <function datetime_from_string at 0x7b0a8344a0>,
1415
+ 'datetime_now': <function datetime_now at 0x7b0a834540>,
1416
+ 'dict_first': <function dict_first at 0x7b0a8345e0>,
1417
+ 'dirname': <function dirname at 0x7b0a834680>,
1418
+ 'is_iterable': <function is_iterable at 0x7b0a834860>,
1419
+ 'to_str': <function to_str at 0x7b0a834900>,
1420
+ 'filter_empty': <function filter_empty at 0x7b0a834720>,
1421
+ 'get_class_method': <function get_class_method at 0x7b0a8347c0>,
1422
+ 'get_filesize': <function get_filesize at 0x7b0a834a40>,
1423
+ 'github_pull': <function github_pull at 0x7b0a834ae0>,
1424
+ 'github_push': <function github_push at 0x7b0a834c20>,
1425
+ 'github_user': <function github_user at 0x7b0a834cc0>,
1426
+ 'hex_to_int': <function hex_to_int at 0x7b0a834d60>,
1427
+ 'iargv': <function iargv at 0x7b0a834e00>,
1428
+ 'idumps_html': <function idumps_html at 0x7b0a835080>,
1429
+ 'idumps': <function idumps at 0x7b0a834f40>,
1430
+ 'int_to_int': <function int_to_int at 0x7b0a90d9e0>,
1431
+ 'ienumerate': <function ienumerate at 0x7b0a835580>,
1432
+ 'ienv': <function ienv at 0x7b0a90d8a0>,
1433
+ 'iexec': <function iexec at 0x7b0a90da80>,
1434
+ 'ijoin': <function ijoin at 0x7b0a90dbc0>,
1435
+ 'iloads_html': <function iloads_html at 0x7b0a90dda0>,
1436
+ 'iloads': <function iloads at 0x7b0a90db20>,
1437
+ 'int_to_bin': <function int_to_bin at 0x7b0a90dd00>,
1438
+ 'int_to_hex': <function int_to_hex at 0x7b0a90de40>,
1439
+ 'int_to_oct': <function int_to_oct at 0x7b0a90dee0>,
1440
+ 'is_valid_url': <function is_valid_url at 0x7b0a90e0c0>,
1441
+ 'iopen': <function iopen at 0x7b0a726520>,
1442
+ 'iprint': <function iprint at 0x7b0a90e020>,
1443
+ 'ireplace': <function ireplace at 0x7b0a90e3e0>,
1444
+ 'iscandir': <function iscandir at 0x7b0a7ddc60>,
1445
+ 'isplit': <function isplit at 0x7b0a7ddd00>,
1446
+ 'ivars': <function ivars at 0x7b0a7ddda0>,
1447
+ 'log': <function log at 0x7b0a7dde40>,
1448
+ 'oct_to_int': <function oct_to_int at 0x7b0a7ddee0>,
1449
+ 'password_generator': <function password_generator at 0x7b0a7ddf80>,
1450
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7b0a7de0c0>,
1451
+ 'poetry_publish': <function poetry_publish at 0x7b0a7de160>,
1452
+ 'poetry_update_version': <function poetry_update_version at 0x7b0a7de2a0>,
1453
+ 'print_dir': <function print_dir at 0x7b0a7de480>,
1454
+ 'print_to_last_line': <function print_to_last_line at 0x7b0a7de520>,
1455
+ 'random_bool': <function random_bool at 0x7b0a7de5c0>,
1456
+ 'restart': <function restart at 0x7b0a7de660>,
1457
+ 'set_timeout': <function set_timeout at 0x7b0a7de700>,
1458
+ 'sets_ordered': <function sets_ordered at 0x7b0a7de7a0>,
1459
+ 'str_cmp': <function str_cmp at 0x7b0a7de840>,
1460
+ 'text_colorize': <function text_colorize at 0x7b0a7de8e0>},
1461
1461
  'variable': {'LINUX': True,
1462
- 'PintUreg': <pint.registry.UnitRegistry object at 0x74c8aac490>,
1462
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x7b0db68950>,
1463
1463
  'WINDOWS': False},
1464
1464
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
1465
1465
  'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
@@ -1549,7 +1549,7 @@ print(password_generator())
1549
1549
 
1550
1550
  Output:
1551
1551
  ```py
1552
- 1+~jj|px
1552
+ kT~|*@9(
1553
1553
  ```
1554
1554
 
1555
1555
  ## pip_freeze_without_version
@@ -1607,7 +1607,7 @@ Output:
1607
1607
  __enter__ : https:/www.google.com
1608
1608
  __fspath__ : https:/www.google.com
1609
1609
  __getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1610
- __hash__ : -336407794228580667
1610
+ __hash__ : 4371941438919300075
1611
1611
  __init__ : None
1612
1612
  __init_subclass__ : None
1613
1613
  __module__ : pathlib
@@ -1620,8 +1620,8 @@ Output:
1620
1620
  _cached_cparts : ['https:', 'www.google.com']
1621
1621
  _cparts : ['https:', 'www.google.com']
1622
1622
  _drv :
1623
- _flavour : <pathlib._PosixFlavour object at 0x74cfb2cc50>
1624
- _hash : -336407794228580667
1623
+ _flavour : <pathlib._PosixFlavour object at 0x7b14328d10>
1624
+ _hash : 4371941438919300075
1625
1625
  _parts : ['https:', 'www.google.com']
1626
1626
  _root :
1627
1627
  _str : https:/www.google.com
@@ -1643,7 +1643,7 @@ Output:
1643
1643
  is_reserved : False
1644
1644
  is_socket : False
1645
1645
  is_symlink : False
1646
- iterdir : <generator object Path.iterdir at 0x74bf0b2960>
1646
+ iterdir : <generator object Path.iterdir at 0x7b05a4a960>
1647
1647
  joinpath : https:/www.google.com
1648
1648
  name : www.google.com
1649
1649
  parent : https:
@@ -1683,7 +1683,7 @@ print(random_bool())
1683
1683
 
1684
1684
  Output:
1685
1685
  ```py
1686
- False
1686
+ True
1687
1687
  ```
1688
1688
 
1689
1689
  ## restart
@@ -1717,7 +1717,7 @@ x.cancel()
1717
1717
 
1718
1718
  Output:
1719
1719
  ```py
1720
- <Timer(Thread-2, started 501396593904)>
1720
+ <Timer(Thread-2, started 528345971952)>
1721
1721
  menghentikan timeout 7
1722
1722
  ```
1723
1723
 
@@ -1735,7 +1735,7 @@ print(list(sets_ordered(array)))
1735
1735
 
1736
1736
  Output:
1737
1737
  ```py
1738
- <generator object sets_ordered at 0x74bf0e4fb0>
1738
+ <generator object sets_ordered at 0x7b05a7cfb0>
1739
1739
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
1740
1740
  ```
1741
1741
 
@@ -1829,15 +1829,15 @@ print(ExampleComparePerformance().compare_performance())
1829
1829
 
1830
1830
  Output:
1831
1831
  ```py
1832
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x74bf0e4ad0>,
1832
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7b05a7cad0>,
1833
1833
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
1834
1834
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
1835
1835
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
1836
- {'a': 0, 'b': 0, 'c': 0, 'd': 0}
1837
- {'a': 0, 'b': 0, 'c': 0, 'd': 0}
1838
- {'a': 0, 'b': 0, 'c': 0, 'd': 0}
1839
- {'a': 0, 'b': 0, 'c': 0, 'd': 0}
1840
- {'a': 0, 'b': 0, 'c': 0, 'd': 0}
1836
+ {'a': 165, 'b': 138, 'c': 100, 'd': 164}
1837
+ {'a': 148, 'b': 141, 'c': 100, 'd': 124}
1838
+ {'a': 105, 'b': 517, 'c': 100, 'd': 107}
1839
+ {'a': 134, 'b': 132, 'c': 100, 'd': 131}
1840
+ {'a': 134, 'b': 133, 'c': 100, 'd': 130}
1841
1841
  ```
1842
1842
 
1843
1843
  ## PintUregQuantity
@@ -1,5 +1,5 @@
1
1
  pypipr/APIMixinView.py,sha256=3qarMHPSBtLp19JMHv6nfl2XRMbyK9zOygpy3L3uEeQ,1275
2
- pypipr/ComparePerformance.py,sha256=fCATdlDgmgiz7QkQNLDMF9VweicesjOaTtfQeBRr64U,2229
2
+ pypipr/ComparePerformance.py,sha256=PeeBF1agcUN1P-4j8djrmtQWga8wr5QosJ6yaeoJOzI,2229
3
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
@@ -76,7 +76,7 @@ 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.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,,
79
+ pypipr-1.0.123.dist-info/METADATA,sha256=bYGOuJgibhcC43eN06CHAgm_aA1oRwG28JNLGAzaTz0,52266
80
+ pypipr-1.0.123.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
81
+ pypipr-1.0.123.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
82
+ pypipr-1.0.123.dist-info/RECORD,,