pypipr 1.0.151__py3-none-any.whl → 1.0.152__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,4 +22,7 @@ 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
- return subprocess.run(command, **param)
25
+ if isinstance(command, str):
26
+ command = [command]
27
+
28
+ return subprocess.run(*command, **param)
pypipr/repath.py CHANGED
@@ -15,29 +15,29 @@ def repath(
15
15
  ):
16
16
  # Handle the directory (folder) part
17
17
  parent = path.parent
18
- if folder_name:
18
+ if folder_name is not None:
19
19
  parent = Path(folder_name)
20
- if prepand_folder:
20
+ if prepand_folder is not None:
21
21
  parent = Path(prepand_folder) / parent
22
- if append_folder:
22
+ if append_folder is not None:
23
23
  parent = parent / append_folder
24
24
 
25
25
  # Handle the file name part
26
26
  name = path.stem # Gets the file name without the extension
27
- if file_name:
27
+ if file_name is not None:
28
28
  name = file_name
29
- if prepand_filename:
29
+ if prepand_filename is not None:
30
30
  name = prepand_filename + name
31
- if append_filename:
31
+ if append_filename is not None:
32
32
  name = name + append_filename
33
33
 
34
34
  # Handle the extension part
35
35
  ext = path.suffix # Gets the file extension (including the dot)
36
- if extension:
36
+ if extension is not None:
37
37
  ext = extension
38
- if prepand_extension:
38
+ if prepand_extension is not None:
39
39
  ext = prepand_extension + ext
40
- if append_extension:
40
+ if append_extension is not None:
41
41
  ext = ext + append_extension
42
42
 
43
43
  # Combine everything into a new path
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.151
3
+ Version: 1.0.152
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 0x733e4d2c40>
252
- <generator object int_range at 0x733e4d2c40>
251
+ <generator object int_range at 0x6f3862ec40>
252
+ <generator object int_range at 0x6f3862ec40>
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 0x733e43ed40>
284
+ <generator object batchmaker at 0x6f38596d40>
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 0x733e1906d0>
338
+ <generator object batch_calculate at 0x6f382fc7c0>
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 0x733e4d2d40>
444
+ <generator object chunk_array at 0x6f3862ed40>
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 10:56:25.827105+07:00
496
- 2024-08-10 03:56:25.827921+00:00
497
- 2024-08-09 20:56:25.830766-07:00
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
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 0x733e190400>
607
+ <generator object filter_empty at 0x6f382fc4f0>
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 0x733e1909a0>
655
- [<function ExampleGetClassMethod.a at 0x733e1aa700>, <function ExampleGetClassMethod.b at 0x733e1aa7a0>, <function ExampleGetClassMethod.c at 0x733e1a8680>, <function ExampleGetClassMethod.d at 0x733e1aa980>]
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>]
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 0x73411ceb60>)`
1075
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x6f398b6c00>)`
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 0x733e190a90>
1088
+ <generator object ienumerate at 0x6f382fcb80>
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
- qweqw, dfs, weq, asd
1155
+ weq, asd, qweqw, 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 10:56Update kurs :09 Agustus '
1277
+ ['Update harga emas :10 Agustus 2024, pukul 23:21Update 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 10:56']],
1344
+ ['Sabtu, 10 Agustus 2024 23:21']],
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 0x733e1b2170>, <Element a at 0x733e2018b0>, <Element a at 0x733e201950>, <Element a at 0x733e2019a0>, <Element a at 0x733e2019f0>, <Element a at 0x733e201a40>, <Element a at 0x733e201a90>, <Element a at 0x733e201ae0>, <Element a at 0x733e201b30>, <Element a at 0x733e201b80>, <Element a at 0x733e201bd0>, <Element a at 0x733e201c20>, <Element a at 0x733e201c70>, <Element a at 0x733e201cc0>, <Element a at 0x733e201d10>, <Element a at 0x733e201d60>, <Element a at 0x733e201db0>, <Element a at 0x733e201e00>, <Element a at 0x733e201e50>, <Element a at 0x733e201ea0>]
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>]
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 0x733e4d3140>
1559
+ <generator object iscandir at 0x6f3862f140>
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 0x73471e0040>,
1593
- 'get_filemtime': <function get_filemtime at 0x7341119d00>,
1594
- 'print_colorize': <function print_colorize at 0x7341119ee0>,
1595
- 'print_log': <function print_log at 0x7341119da0>,
1596
- 'console_run': <function console_run at 0x7341119e40>,
1597
- 'auto_reload': <function auto_reload at 0x7341119620>,
1598
- 'basename': <function basename at 0x7341119c60>,
1599
- 'chr_to_int': <function chr_to_int at 0x734111a480>,
1600
- 'int_to_chr': <function int_to_chr at 0x734111a520>,
1601
- 'irange': <function irange at 0x734111a7a0>,
1602
- 'batchmaker': <function batchmaker at 0x734111a160>,
1603
- 'calculate': <function calculate at 0x734111a2a0>,
1604
- 'batch_calculate': <function batch_calculate at 0x734111a020>,
1605
- 'bin_to_int': <function bin_to_int at 0x734111a0c0>,
1606
- 'is_empty': <function is_empty at 0x734111af20>,
1607
- 'exit_if_empty': <function exit_if_empty at 0x734111ade0>,
1608
- 'input_char': <function input_char at 0x734111a3e0>,
1609
- 'choices': <function choices at 0x734111b1a0>,
1610
- 'chunk_array': <function chunk_array at 0x734111b240>,
1611
- 'create_folder': <function create_folder at 0x734111b380>,
1612
- 'datetime_from_string': <function datetime_from_string at 0x734111b420>,
1613
- 'datetime_now': <function datetime_now at 0x734111b4c0>,
1614
- 'dict_first': <function dict_first at 0x73411396c0>,
1615
- 'dirname': <function dirname at 0x7341139760>,
1616
- 'django_runserver': <function django_runserver at 0x7341139a80>,
1617
- 'is_iterable': <function is_iterable at 0x7341139e40>,
1618
- 'to_str': <function to_str at 0x7341139ee0>,
1619
- 'filter_empty': <function filter_empty at 0x7341139d00>,
1620
- 'get_by_index': <function get_by_index at 0x7341139da0>,
1621
- 'get_class_method': <function get_class_method at 0x7341139f80>,
1622
- 'get_filesize': <function get_filesize at 0x734113a0c0>,
1623
- 'github_init': <function github_init at 0x734113a160>,
1624
- 'github_pull': <function github_pull at 0x734113a200>,
1625
- 'github_push': <function github_push at 0x734113a340>,
1626
- 'github_user': <function github_user at 0x734113a3e0>,
1627
- 'hex_to_int': <function hex_to_int at 0x734113a480>,
1628
- 'iargv': <function iargv at 0x734113a520>,
1629
- 'idir': <function idir at 0x734113a5c0>,
1630
- 'idumps_html': <function idumps_html at 0x734113aca0>,
1631
- 'idumps': <function idumps at 0x734113a700>,
1632
- 'int_to_int': <function int_to_int at 0x73411ceb60>,
1633
- 'ienumerate': <function ienumerate at 0x734113ac00>,
1634
- 'ienv': <function ienv at 0x73411b5080>,
1635
- 'iexec': <function iexec at 0x73411cec00>,
1636
- 'ijoin': <function ijoin at 0x73411ced40>,
1637
- 'iloads_html': <function iloads_html at 0x73411cef20>,
1638
- 'iloads': <function iloads at 0x7347b7e020>,
1639
- 'int_to_bin': <function int_to_bin at 0x73411ceca0>,
1640
- 'int_to_hex': <function int_to_hex at 0x73411cee80>,
1641
- 'int_to_oct': <function int_to_oct at 0x73411cefc0>,
1642
- 'is_valid_url': <function is_valid_url at 0x7340f9ed40>,
1643
- 'iopen': <function iopen at 0x73411cf1a0>,
1644
- 'iprint': <function iprint at 0x7340f9e840>,
1645
- 'ireplace': <function ireplace at 0x7340f9e980>,
1646
- 'iscandir': <function iscandir at 0x733ea1bb00>,
1647
- 'isplit': <function isplit at 0x733ea1bba0>,
1648
- 'ivars': <function ivars at 0x733ea1bc40>,
1649
- 'log': <function log at 0x733ea1bce0>,
1650
- 'oct_to_int': <function oct_to_int at 0x733ea1bd80>,
1651
- 'password_generator': <function password_generator at 0x733ea1be20>,
1652
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x733ea1bf60>,
1653
- 'pip_update_pypipr': <function pip_update_pypipr at 0x733ea24040>,
1654
- 'poetry_publish': <function poetry_publish at 0x733ea240e0>,
1655
- 'poetry_update_version': <function poetry_update_version at 0x733ea24220>,
1656
- 'print_dir': <function print_dir at 0x733ea24400>,
1657
- 'print_to_last_line': <function print_to_last_line at 0x733ea244a0>,
1658
- 'random_bool': <function random_bool at 0x733ea24540>,
1659
- 'repath': <function repath at 0x733ea24680>,
1660
- 'restart': <function restart at 0x733ea24720>,
1661
- 'set_timeout': <function set_timeout at 0x733ea24860>,
1662
- 'sets_ordered': <function sets_ordered at 0x733ea24900>,
1663
- 'sqlite_delete_table': <function sqlite_delete_table at 0x733ea249a0>,
1664
- 'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x733ea24b80>,
1665
- 'sqlite_get_data_table': <function sqlite_get_data_table at 0x733ea25300>,
1666
- 'str_cmp': <function str_cmp at 0x733ea253a0>,
1667
- 'text_colorize': <function text_colorize at 0x733ea25440>,
1668
- 'traceback_filename': <function traceback_filename at 0x733ea254e0>,
1669
- 'traceback_framename': <function traceback_framename at 0x733ea25580>},
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>},
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 0x7345220c90>,
1675
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x6f3e9ef4d0>,
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
- .Bi?EoL;
1766
+ $yz0M`.Z
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__ : -5001937873928961749
1828
+ __hash__ : 3036266806374847663
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 0x7346f1d890>
1842
- _hash : -5001937873928961749
1841
+ _flavour : <pathlib._PosixFlavour object at 0x6f3e815790>
1842
+ _hash : 3036266806374847663
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 0x733e1ae5e0>
1864
+ iterdir : <generator object Path.iterdir at 0x6f3831a5e0>
1865
1865
  joinpath : https:/www.google.com
1866
1866
  name : www.google.com
1867
1867
  parent : https:
@@ -1912,7 +1912,7 @@ print(random_bool())
1912
1912
 
1913
1913
  Output:
1914
1914
  ```py
1915
- False
1915
+ True
1916
1916
  ```
1917
1917
 
1918
1918
  ## repath
@@ -1950,7 +1950,7 @@ x.cancel()
1950
1950
 
1951
1951
  Output:
1952
1952
  ```py
1953
- <Timer(Thread-2, started 494936243440)>
1953
+ <Timer(Thread-2, started 477661547760)>
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 0x733e1ccd40>
1971
+ <generator object sets_ordered at 0x6f3833cd40>
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 0x733e1cc930>,
2085
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x6f3833c930>,
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': 120, 'b': 147, 'c': 100, 'd': 188}
2090
- {'a': 120, 'b': 118, 'c': 100, 'd': 176}
2091
- {'a': 123, 'b': 128, 'c': 100, 'd': 176}
2092
- {'a': 108, 'b': 122, 'c': 100, 'd': 146}
2093
- {'a': 113, 'b': 126, 'c': 100, 'd': 151}
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}
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=vCJqDa1rExisqaFLNeWM-hnuXHfUfiYcyNAOJjldOHs,525
20
+ pypipr/console_run.py,sha256=LUVMMYq7vyZRxeMtY0Ma5gjZlVB7cv0Bx9ntepPrE0k,588
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
@@ -73,7 +73,7 @@ pypipr/print_dir.py,sha256=kO-YruOQ_gCaN7gsSXfcTbufWqAqtRemW8KrUqIijC8,919
73
73
  pypipr/print_log.py,sha256=Oct2xfcMv_8iK2ySioQYrtlTYou6Cd671PqgPL9IGUE,282
74
74
  pypipr/print_to_last_line.py,sha256=ym25h5MbjIaexcczDEGjNbr3dciS6_Vq8hFyMWo73PE,915
75
75
  pypipr/random_bool.py,sha256=OkvQqpusHGc5mt2nHCycA7-s2I0gbN6UxI7opMOFppE,352
76
- pypipr/repath.py,sha256=R-Jc1esxV_LmNqy1AXhfxVUmaLB6X3hiqHCwb81aPC0,1167
76
+ pypipr/repath.py,sha256=2_q8MayLZGtGvMUMe3DpdsJfosOXW5oj3-edyZa2mSQ,1275
77
77
  pypipr/restart.py,sha256=jUhsjZACAAcItYzCuiULHLFikoVyYDJWj16hCLARmAw,272
78
78
  pypipr/set_timeout.py,sha256=heg1J3jSArgG5_75BNLrujjh7I9meTyAzHpuAY_4IBc,698
79
79
  pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
@@ -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.151.dist-info/METADATA,sha256=QhW0DPpvqIAt4R0AXW6xJhrYe40v1_pE0rx7qBhfVVE,57013
89
- pypipr-1.0.151.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
90
- pypipr-1.0.151.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
91
- pypipr-1.0.151.dist-info/RECORD,,
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,,