pypipr 1.0.152__py3-none-any.whl → 1.0.153__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/console_run.py CHANGED
@@ -22,7 +22,4 @@ def console_run(info, command=None, print_info=True, capture_output=False):
22
22
  if capture_output:
23
23
  param |= dict(capture_output=True, text=True)
24
24
 
25
- if isinstance(command, str):
26
- command = [command]
27
-
28
- return subprocess.run(*command, **param)
25
+ return subprocess.run(command, **param)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.152
3
+ Version: 1.0.153
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 0x6f3862ec40>
252
- <generator object int_range at 0x6f3862ec40>
251
+ <generator object int_range at 0x7183fdec40>
252
+ <generator object int_range at 0x7183fdec40>
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 0x6f38596d40>
284
+ <generator object batchmaker at 0x7183f42d40>
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 0x6f382fc7c0>
338
+ <generator object batch_calculate at 0x71808087c0>
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 0x6f3862ed40>
444
+ <generator object chunk_array at 0x7183fded40>
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-08-10 23:21:16.894790+07:00
496
- 2024-08-10 16:21:16.896377+00:00
497
- 2024-08-10 09:21:16.899012-07:00
495
+ 2024-08-10 23:36:04.585048+07:00
496
+ 2024-08-10 16:36:04.586549+00:00
497
+ 2024-08-10 09:36:04.587986-07:00
498
498
  ```
499
499
 
500
500
  ## dict_first
@@ -604,7 +604,7 @@ iprint(filter_empty(var))
604
604
 
605
605
  Output:
606
606
  ```py
607
- <generator object filter_empty at 0x6f382fc4f0>
607
+ <generator object filter_empty at 0x71808084f0>
608
608
  [1, '0', True, {}, ['eee']]
609
609
  ```
610
610
 
@@ -651,8 +651,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
651
651
 
652
652
  Output:
653
653
  ```py
654
- <generator object get_class_method at 0x6f382fca90>
655
- [<function ExampleGetClassMethod.a at 0x6f383167a0>, <function ExampleGetClassMethod.b at 0x6f38316840>, <function ExampleGetClassMethod.c at 0x6f38314720>, <function ExampleGetClassMethod.d at 0x6f38316a20>]
654
+ <generator object get_class_method at 0x7180808a90>
655
+ [<function ExampleGetClassMethod.a at 0x718081e700>, <function ExampleGetClassMethod.b at 0x718081e7a0>, <function ExampleGetClassMethod.c at 0x718081c680>, <function ExampleGetClassMethod.d at 0x718081e980>]
656
656
  ```
657
657
 
658
658
  ## get_filesize
@@ -1072,7 +1072,7 @@ Output:
1072
1072
 
1073
1073
  ## ienumerate
1074
1074
 
1075
- `ienumerate(iterator, start=0, key=<function int_to_int at 0x6f398b6c00>)`
1075
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x718b58ab60>)`
1076
1076
 
1077
1077
  meningkatkan fungsi enumerate() pada python
1078
1078
  untuk key menggunakan huruf dan basis angka lainnya.
@@ -1085,7 +1085,7 @@ iprint(ienumerate(it, key=int_to_chr))
1085
1085
 
1086
1086
  Output:
1087
1087
  ```py
1088
- <generator object ienumerate at 0x6f382fcb80>
1088
+ <generator object ienumerate at 0x7180808b80>
1089
1089
  [('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
1090
1090
  ```
1091
1091
 
@@ -1152,7 +1152,7 @@ print(ijoin(10, ' '))
1152
1152
 
1153
1153
  Output:
1154
1154
  ```py
1155
- weq, asd, qweqw, dfs
1155
+ weq, qweqw, asd, dfs
1156
1156
  ,ini,path,seperti,url,
1157
1157
  ini,path,seperti,url
1158
1158
  <li>satu</li>
@@ -1274,7 +1274,7 @@ Output:
1274
1274
  ['Ounce\xa0(oz)', '2.431,10 (-2,66)', '15.952,00', '38.780.907'],
1275
1275
  ['Gram\xa0(gr)', '78,16', '15.952,00', '1.246.835 (-1.364)'],
1276
1276
  ['Kilogram\xa0(kg)', '78.161,68', '15.952,00', '1.246.835.120'],
1277
- ['Update harga emas :10 Agustus 2024, pukul 23:21Update kurs :10 Agustus '
1277
+ ['Update harga emas :10 Agustus 2024, pukul 23:34Update kurs :10 Agustus '
1278
1278
  '2024, pukul 13:10']],
1279
1279
  [['Gram', 'UBS Gold 99.99%'],
1280
1280
  ['Jual', 'Beli'],
@@ -1341,7 +1341,7 @@ Output:
1341
1341
  ['USD', '78,16↓', '-0,09-0,12%'],
1342
1342
  ['KURS', '15.949,90↑', '+7,15+0,04%'],
1343
1343
  ['IDR', '1.246.670,98↓', '-804,58-0,06%'],
1344
- ['Sabtu, 10 Agustus 2024 23:21']],
1344
+ ['Sabtu, 10 Agustus 2024 23:35']],
1345
1345
  [[''],
1346
1346
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1347
1347
  'Hari Ini',
@@ -1494,7 +1494,7 @@ Output:
1494
1494
  ```py
1495
1495
  8
1496
1496
  ['mana', 'aja']
1497
- [<Element a at 0x6f3831db80>, <Element a at 0x6f383716d0>, <Element a at 0x6f38371770>, <Element a at 0x6f383717c0>, <Element a at 0x6f38371810>, <Element a at 0x6f38371860>, <Element a at 0x6f383718b0>, <Element a at 0x6f38371900>, <Element a at 0x6f38371950>, <Element a at 0x6f383719a0>, <Element a at 0x6f383719f0>, <Element a at 0x6f38371a40>, <Element a at 0x6f38371a90>, <Element a at 0x6f38371ae0>, <Element a at 0x6f38371b30>, <Element a at 0x6f38371b80>, <Element a at 0x6f38371bd0>, <Element a at 0x6f38371c20>, <Element a at 0x6f38371c70>, <Element a at 0x6f38371cc0>]
1497
+ [<Element a at 0x718082b250>, <Element a at 0x7180879900>, <Element a at 0x71808799a0>, <Element a at 0x71808799f0>, <Element a at 0x7180879a40>, <Element a at 0x7180879a90>, <Element a at 0x7180879ae0>, <Element a at 0x7180879b30>, <Element a at 0x7180879b80>, <Element a at 0x7180879bd0>, <Element a at 0x7180879c20>, <Element a at 0x7180879c70>, <Element a at 0x7180879cc0>, <Element a at 0x7180879d10>, <Element a at 0x7180879d60>, <Element a at 0x7180879db0>, <Element a at 0x7180879e00>, <Element a at 0x7180879e50>, <Element a at 0x7180879ea0>, <Element a at 0x7180879ef0>]
1498
1498
  False
1499
1499
  ```
1500
1500
 
@@ -1556,7 +1556,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1556
1556
 
1557
1557
  Output:
1558
1558
  ```py
1559
- <generator object iscandir at 0x6f3862f140>
1559
+ <generator object iscandir at 0x7183fdf140>
1560
1560
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1561
1561
  ```
1562
1562
 
@@ -1589,90 +1589,90 @@ iprint(ivars(__import__('pypipr')))
1589
1589
 
1590
1590
  Output:
1591
1591
  ```py
1592
- {'function': {'avg': <function avg at 0x6f3e9e0040>,
1593
- 'get_filemtime': <function get_filemtime at 0x6f397f9d00>,
1594
- 'print_colorize': <function print_colorize at 0x6f397f9ee0>,
1595
- 'print_log': <function print_log at 0x6f397f9da0>,
1596
- 'console_run': <function console_run at 0x6f397f9f80>,
1597
- 'auto_reload': <function auto_reload at 0x6f397f9620>,
1598
- 'basename': <function basename at 0x6f397f9e40>,
1599
- 'chr_to_int': <function chr_to_int at 0x6f397fa520>,
1600
- 'int_to_chr': <function int_to_chr at 0x6f397fa5c0>,
1601
- 'irange': <function irange at 0x6f397fa840>,
1602
- 'batchmaker': <function batchmaker at 0x6f397fa200>,
1603
- 'calculate': <function calculate at 0x6f397fa340>,
1604
- 'batch_calculate': <function batch_calculate at 0x6f397fa0c0>,
1605
- 'bin_to_int': <function bin_to_int at 0x6f397fa160>,
1606
- 'is_empty': <function is_empty at 0x6f397fafc0>,
1607
- 'exit_if_empty': <function exit_if_empty at 0x6f397fae80>,
1608
- 'input_char': <function input_char at 0x6f397fa480>,
1609
- 'choices': <function choices at 0x6f397fb240>,
1610
- 'chunk_array': <function chunk_array at 0x6f397fb2e0>,
1611
- 'create_folder': <function create_folder at 0x6f397fb420>,
1612
- 'datetime_from_string': <function datetime_from_string at 0x6f397fb4c0>,
1613
- 'datetime_now': <function datetime_now at 0x6f397fb560>,
1614
- 'dict_first': <function dict_first at 0x6f39821760>,
1615
- 'dirname': <function dirname at 0x6f39821800>,
1616
- 'django_runserver': <function django_runserver at 0x6f39821b20>,
1617
- 'is_iterable': <function is_iterable at 0x6f39821ee0>,
1618
- 'to_str': <function to_str at 0x6f39821f80>,
1619
- 'filter_empty': <function filter_empty at 0x6f39821da0>,
1620
- 'get_by_index': <function get_by_index at 0x6f39821e40>,
1621
- 'get_class_method': <function get_class_method at 0x6f39822020>,
1622
- 'get_filesize': <function get_filesize at 0x6f39822160>,
1623
- 'github_init': <function github_init at 0x6f39822200>,
1624
- 'github_pull': <function github_pull at 0x6f398222a0>,
1625
- 'github_push': <function github_push at 0x6f398223e0>,
1626
- 'github_user': <function github_user at 0x6f39822480>,
1627
- 'hex_to_int': <function hex_to_int at 0x6f39822520>,
1628
- 'iargv': <function iargv at 0x6f398225c0>,
1629
- 'idir': <function idir at 0x6f39822660>,
1630
- 'idumps_html': <function idumps_html at 0x6f39822d40>,
1631
- 'idumps': <function idumps at 0x6f398227a0>,
1632
- 'int_to_int': <function int_to_int at 0x6f398b6c00>,
1633
- 'ienumerate': <function ienumerate at 0x6f39822ca0>,
1634
- 'ienv': <function ienv at 0x6f398a1120>,
1635
- 'iexec': <function iexec at 0x6f398b6ca0>,
1636
- 'ijoin': <function ijoin at 0x6f398b6de0>,
1637
- 'iloads_html': <function iloads_html at 0x6f398b6fc0>,
1638
- 'iloads': <function iloads at 0x6f3f3e2020>,
1639
- 'int_to_bin': <function int_to_bin at 0x6f398b6d40>,
1640
- 'int_to_hex': <function int_to_hex at 0x6f398b6f20>,
1641
- 'int_to_oct': <function int_to_oct at 0x6f398b7060>,
1642
- 'is_valid_url': <function is_valid_url at 0x6f396a2de0>,
1643
- 'iopen': <function iopen at 0x6f398b7240>,
1644
- 'iprint': <function iprint at 0x6f396a28e0>,
1645
- 'ireplace': <function ireplace at 0x6f396a2a20>,
1646
- 'iscandir': <function iscandir at 0x6f38b83ba0>,
1647
- 'isplit': <function isplit at 0x6f38b83c40>,
1648
- 'ivars': <function ivars at 0x6f38b83ce0>,
1649
- 'log': <function log at 0x6f38b83d80>,
1650
- 'oct_to_int': <function oct_to_int at 0x6f38b83e20>,
1651
- 'password_generator': <function password_generator at 0x6f38b83ec0>,
1652
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x6f38b84040>,
1653
- 'pip_update_pypipr': <function pip_update_pypipr at 0x6f38b840e0>,
1654
- 'poetry_publish': <function poetry_publish at 0x6f38b84180>,
1655
- 'poetry_update_version': <function poetry_update_version at 0x6f38b842c0>,
1656
- 'print_dir': <function print_dir at 0x6f38b844a0>,
1657
- 'print_to_last_line': <function print_to_last_line at 0x6f38b84540>,
1658
- 'random_bool': <function random_bool at 0x6f38b845e0>,
1659
- 'repath': <function repath at 0x6f38b84720>,
1660
- 'restart': <function restart at 0x6f38b847c0>,
1661
- 'set_timeout': <function set_timeout at 0x6f38b84860>,
1662
- 'sets_ordered': <function sets_ordered at 0x6f38b84900>,
1663
- 'sqlite_delete_table': <function sqlite_delete_table at 0x6f38b849a0>,
1664
- 'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x6f38b84b80>,
1665
- 'sqlite_get_data_table': <function sqlite_get_data_table at 0x6f38b85300>,
1666
- 'str_cmp': <function str_cmp at 0x6f38b853a0>,
1667
- 'text_colorize': <function text_colorize at 0x6f38b85440>,
1668
- 'traceback_filename': <function traceback_filename at 0x6f38b854e0>,
1669
- 'traceback_framename': <function traceback_framename at 0x6f38b85580>},
1592
+ {'function': {'avg': <function avg at 0x71919d8040>,
1593
+ 'get_filemtime': <function get_filemtime at 0x718b4d1d00>,
1594
+ 'print_colorize': <function print_colorize at 0x718b4d1ee0>,
1595
+ 'print_log': <function print_log at 0x718b4d1da0>,
1596
+ 'console_run': <function console_run at 0x718b4d1e40>,
1597
+ 'auto_reload': <function auto_reload at 0x718b4d1620>,
1598
+ 'basename': <function basename at 0x718b4d1c60>,
1599
+ 'chr_to_int': <function chr_to_int at 0x718b4d2480>,
1600
+ 'int_to_chr': <function int_to_chr at 0x718b4d2520>,
1601
+ 'irange': <function irange at 0x718b4d27a0>,
1602
+ 'batchmaker': <function batchmaker at 0x718b4d2160>,
1603
+ 'calculate': <function calculate at 0x718b4d22a0>,
1604
+ 'batch_calculate': <function batch_calculate at 0x718b4d2020>,
1605
+ 'bin_to_int': <function bin_to_int at 0x718b4d20c0>,
1606
+ 'is_empty': <function is_empty at 0x718b4d2f20>,
1607
+ 'exit_if_empty': <function exit_if_empty at 0x718b4d2de0>,
1608
+ 'input_char': <function input_char at 0x718b4d23e0>,
1609
+ 'choices': <function choices at 0x718b4d31a0>,
1610
+ 'chunk_array': <function chunk_array at 0x718b4d3240>,
1611
+ 'create_folder': <function create_folder at 0x718b4d3380>,
1612
+ 'datetime_from_string': <function datetime_from_string at 0x718b4d3420>,
1613
+ 'datetime_now': <function datetime_now at 0x718b4d34c0>,
1614
+ 'dict_first': <function dict_first at 0x718b4f56c0>,
1615
+ 'dirname': <function dirname at 0x718b4f5760>,
1616
+ 'django_runserver': <function django_runserver at 0x718b4f5a80>,
1617
+ 'is_iterable': <function is_iterable at 0x718b4f5e40>,
1618
+ 'to_str': <function to_str at 0x718b4f5ee0>,
1619
+ 'filter_empty': <function filter_empty at 0x718b4f5d00>,
1620
+ 'get_by_index': <function get_by_index at 0x718b4f5da0>,
1621
+ 'get_class_method': <function get_class_method at 0x718b4f5f80>,
1622
+ 'get_filesize': <function get_filesize at 0x718b4f60c0>,
1623
+ 'github_init': <function github_init at 0x718b4f6160>,
1624
+ 'github_pull': <function github_pull at 0x718b4f6200>,
1625
+ 'github_push': <function github_push at 0x718b4f6340>,
1626
+ 'github_user': <function github_user at 0x718b4f63e0>,
1627
+ 'hex_to_int': <function hex_to_int at 0x718b4f6480>,
1628
+ 'iargv': <function iargv at 0x718b4f6520>,
1629
+ 'idir': <function idir at 0x718b4f65c0>,
1630
+ 'idumps_html': <function idumps_html at 0x718b4f6ca0>,
1631
+ 'idumps': <function idumps at 0x718b4f6700>,
1632
+ 'int_to_int': <function int_to_int at 0x718b58ab60>,
1633
+ 'ienumerate': <function ienumerate at 0x718b4f6c00>,
1634
+ 'ienv': <function ienv at 0x718b579080>,
1635
+ 'iexec': <function iexec at 0x718b58ac00>,
1636
+ 'ijoin': <function ijoin at 0x718b58ad40>,
1637
+ 'iloads_html': <function iloads_html at 0x718b58af20>,
1638
+ 'iloads': <function iloads at 0x71923da020>,
1639
+ 'int_to_bin': <function int_to_bin at 0x718b58aca0>,
1640
+ 'int_to_hex': <function int_to_hex at 0x718b58ae80>,
1641
+ 'int_to_oct': <function int_to_oct at 0x718b58afc0>,
1642
+ 'is_valid_url': <function is_valid_url at 0x718b346d40>,
1643
+ 'iopen': <function iopen at 0x718b58b1a0>,
1644
+ 'iprint': <function iprint at 0x718b346840>,
1645
+ 'ireplace': <function ireplace at 0x718b346980>,
1646
+ 'iscandir': <function iscandir at 0x7184547b00>,
1647
+ 'isplit': <function isplit at 0x7184547ba0>,
1648
+ 'ivars': <function ivars at 0x7184547c40>,
1649
+ 'log': <function log at 0x7184547ce0>,
1650
+ 'oct_to_int': <function oct_to_int at 0x7184547d80>,
1651
+ 'password_generator': <function password_generator at 0x7184547e20>,
1652
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7184547f60>,
1653
+ 'pip_update_pypipr': <function pip_update_pypipr at 0x718454c040>,
1654
+ 'poetry_publish': <function poetry_publish at 0x718454c0e0>,
1655
+ 'poetry_update_version': <function poetry_update_version at 0x718454c220>,
1656
+ 'print_dir': <function print_dir at 0x718454c400>,
1657
+ 'print_to_last_line': <function print_to_last_line at 0x718454c4a0>,
1658
+ 'random_bool': <function random_bool at 0x718454c540>,
1659
+ 'repath': <function repath at 0x718454c680>,
1660
+ 'restart': <function restart at 0x718454c720>,
1661
+ 'set_timeout': <function set_timeout at 0x718454c7c0>,
1662
+ 'sets_ordered': <function sets_ordered at 0x718454c860>,
1663
+ 'sqlite_delete_table': <function sqlite_delete_table at 0x718454c900>,
1664
+ 'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x718454cae0>,
1665
+ 'sqlite_get_data_table': <function sqlite_get_data_table at 0x718454d260>,
1666
+ 'str_cmp': <function str_cmp at 0x718454d300>,
1667
+ 'text_colorize': <function text_colorize at 0x718454d3a0>,
1668
+ 'traceback_filename': <function traceback_filename at 0x718454d440>,
1669
+ 'traceback_framename': <function traceback_framename at 0x718454d4e0>},
1670
1670
  'class': {'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1671
1671
  'PintUregQuantity': <class 'pint.Quantity'>,
1672
1672
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>,
1673
1673
  'TextCase': <class 'pypipr.TextCase.TextCase'>},
1674
1674
  'variable': {'LINUX': True,
1675
- 'PintUreg': <pint.registry.UnitRegistry object at 0x6f3e9ef4d0>,
1675
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x71919e73d0>,
1676
1676
  'WINDOWS': False},
1677
1677
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
1678
1678
  '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'>,
@@ -1763,7 +1763,7 @@ print(password_generator())
1763
1763
 
1764
1764
  Output:
1765
1765
  ```py
1766
- $yz0M`.Z
1766
+ vaq=BQ67
1767
1767
  ```
1768
1768
 
1769
1769
  ## pip_freeze_without_version
@@ -1825,7 +1825,7 @@ Output:
1825
1825
  __enter__ : https:/www.google.com
1826
1826
  __fspath__ : https:/www.google.com
1827
1827
  __getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1828
- __hash__ : 3036266806374847663
1828
+ __hash__ : 872741787607326607
1829
1829
  __init__ : None
1830
1830
  __init_subclass__ : None
1831
1831
  __module__ : pathlib
@@ -1838,8 +1838,8 @@ Output:
1838
1838
  _cached_cparts : ['https:', 'www.google.com']
1839
1839
  _cparts : ['https:', 'www.google.com']
1840
1840
  _drv :
1841
- _flavour : <pathlib._PosixFlavour object at 0x6f3e815790>
1842
- _hash : 3036266806374847663
1841
+ _flavour : <pathlib._PosixFlavour object at 0x7191831550>
1842
+ _hash : 872741787607326607
1843
1843
  _parts : ['https:', 'www.google.com']
1844
1844
  _root :
1845
1845
  _str : https:/www.google.com
@@ -1861,7 +1861,7 @@ Output:
1861
1861
  is_reserved : False
1862
1862
  is_socket : False
1863
1863
  is_symlink : False
1864
- iterdir : <generator object Path.iterdir at 0x6f3831a5e0>
1864
+ iterdir : <generator object Path.iterdir at 0x71808225e0>
1865
1865
  joinpath : https:/www.google.com
1866
1866
  name : www.google.com
1867
1867
  parent : https:
@@ -1950,7 +1950,7 @@ x.cancel()
1950
1950
 
1951
1951
  Output:
1952
1952
  ```py
1953
- <Timer(Thread-2, started 477661547760)>
1953
+ <Timer(Thread-2, started 487459896560)>
1954
1954
  menghentikan timeout 7
1955
1955
  ```
1956
1956
 
@@ -1968,7 +1968,7 @@ print(list(sets_ordered(array)))
1968
1968
 
1969
1969
  Output:
1970
1970
  ```py
1971
- <generator object sets_ordered at 0x6f3833cd40>
1971
+ <generator object sets_ordered at 0x7180848d40>
1972
1972
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
1973
1973
  ```
1974
1974
 
@@ -2082,15 +2082,15 @@ print(ExampleComparePerformance().compare_performance())
2082
2082
 
2083
2083
  Output:
2084
2084
  ```py
2085
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x6f3833c930>,
2085
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7180848930>,
2086
2086
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
2087
2087
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
2088
2088
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
2089
- {'a': 131, 'b': 173, 'c': 100, 'd': 237}
2090
- {'a': 125, 'b': 129, 'c': 100, 'd': 198}
2091
- {'a': 120, 'b': 125, 'c': 100, 'd': 149}
2092
- {'a': 103, 'b': 123, 'c': 100, 'd': 146}
2093
- {'a': 113, 'b': 133, 'c': 100, 'd': 143}
2089
+ {'a': 189, 'b': 145, 'c': 100, 'd': 157}
2090
+ {'a': 159, 'b': 142, 'c': 100, 'd': 124}
2091
+ {'a': 133, 'b': 133, 'c': 100, 'd': 126}
2092
+ {'a': 121, 'b': 130, 'c': 100, 'd': 127}
2093
+ {'a': 128, 'b': 136, 'c': 100, 'd': 126}
2094
2094
  ```
2095
2095
 
2096
2096
  ## PintUregQuantity
@@ -17,7 +17,7 @@ pypipr/calculate.py,sha256=uSmDH43_x4ifdHN23PLdWKqjx023--1ZE6mf5A2hqg4,696
17
17
  pypipr/choices.py,sha256=qhRdquHqPWUKVdYwi7KDDf1_CYJi9i5E52hs2mMxCWs,1473
18
18
  pypipr/chr_to_int.py,sha256=5ETJZag1eM8wa2ceIGsmNP-jNufC5bCScghTLcwGEAI,459
19
19
  pypipr/chunk_array.py,sha256=aodjp-daihl-Xd8kPqcpHZICZub7Jx0QBqyoF0bd0dY,385
20
- pypipr/console_run.py,sha256=LUVMMYq7vyZRxeMtY0Ma5gjZlVB7cv0Bx9ntepPrE0k,588
20
+ pypipr/console_run.py,sha256=vCJqDa1rExisqaFLNeWM-hnuXHfUfiYcyNAOJjldOHs,525
21
21
  pypipr/create_folder.py,sha256=YgK3Rhg-v8314VNSgUvq7LgyLHlpHGBYXaa1RgRsbxo,523
22
22
  pypipr/datetime_from_string.py,sha256=-GJ_QHD1feUMX0o8nwCPHGflDPXr84ovN4Awnk1T9r8,466
23
23
  pypipr/datetime_now.py,sha256=YEaatUOp0KBWYRhOFnxnVW0X7C1XEx3dpdBEn5Vwy9w,379
@@ -85,7 +85,7 @@ pypipr/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
85
85
  pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
86
86
  pypipr/traceback_filename.py,sha256=4o85J0N8clI0cM6NTGcKZ4zxR9yS7W2NS_bz3J2_PnY,288
87
87
  pypipr/traceback_framename.py,sha256=_mullrAZzMhBFEFVCgdsmkYQmYUkd58o-J-HuMntKyc,291
88
- pypipr-1.0.152.dist-info/METADATA,sha256=BBEicSDYs4ow49cHsXDv2q-lOhlwfcFdtDRVm5fNs08,57010
89
- pypipr-1.0.152.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
90
- pypipr-1.0.152.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
91
- pypipr-1.0.152.dist-info/RECORD,,
88
+ pypipr-1.0.153.dist-info/METADATA,sha256=X-ybignjM7GBuzXCX2L0TpYVCZR2LeDFIV8hWWlMzpE,57008
89
+ pypipr-1.0.153.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
90
+ pypipr-1.0.153.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
91
+ pypipr-1.0.153.dist-info/RECORD,,